👾
Multichain Wallet SDK Documentation
  • Overview
  • Quick Start
  • Reference
    • SDK Reference
      • Ethereum
      • Solana
Powered by GitBook
On this page
  • Install the library
  • Import and usage

Quick Start

PreviousOverviewNextSDK Reference

Last updated 1 year ago

What to know: This library is under construction and updating on . Click 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
# Install via yarn
yarn add multichain-wallet-sdk

Import and usage

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