Skip to content

@abstract-money/core

VanillaJS library for interacting with Abstract Apps.

The Abstract Core is a VanillaJS library for interacting with Abstract Apps. It allows you to interact with Abstract Apps in Node.JS, or to create your own React library on top of it if you're not willing to use our React package.

Installation

npm
npm i @abstract-money/core

Usage

import { createApiClient } from '@abstract-money/core'
 
const client = createApiClient({ apiUrl: 'https://api.abstract.money' })
 
const accounts = await client.getAccountsByOwnerFromApi({
  owner: '...',
  chains: ['osmosis'],
})
 
console.log(accounts)