Quick Start

What to know: This library is under construction and updating on Github repository. Click here to get start your own contribution.

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

You can generate an API key from your Dashboard at any time.

Install the library

Here is example command to install multichain-wallet-sdk via NPM and yarn.

# Install via NPM
npm install --save multichain-wallet-sdk

Import and usage

const { EthereumWallet } = require('multichain-wallet-sdk'); //ES5
import { EthereumWallet } from 'multichain-wallet-sdk'; //ES6 +

Last updated