Quick Start
Get started with OpenOcean SDK
You can install the SDK by npm.n
npm i @openocean.finance/openocean-sdk
Or, if you use yarn as your module management tool.
yarn add @openocean.finance/openocean-sdk
Or, if you want to build up a jwallet and contract object by yourself, you will need web3 and bignumber.js.
npm install bignumber.js
npm install web3va
import { OpenoceanSdk } from '@openocean.finance/openocean-sdk'
const openoceanSdk = new OpenoceanSdk()
const { api, swapSdk, config } = openoceanSdk
You can then use all the functions explored by the SDK (API and swapSdk).
Last modified 2d ago