Deposit Assets

Aarc SDK provides different functions and supports various smart contract providers to ease the developers' work and improve smart transactions in web3.

Start with the Core Package

  1. Install the package and other dependencies.

npm i @aarc-xyz/core ethers@6.9.2
  1. Import the package.

const ethers = require("ethers");
import { AarcCore } from "@aarc-xyz/core";
  1. Get the API KEY

Learn how to get the Aarc API Key from here.

  1. Initialise Aarc SDK

let aarcSDK = new AarcCore(
    "YOU_AARC_API_KEY"
);

Now go ahead and bring better UX in web3!

Last updated