Quick Start
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