handle-sdk-react
TypeScript icon, indicating that this package has built-in type declarations

0.0.56 • Public • Published

handle.fi SDK

Read the docs here.
Please note that this SDK is a work in progress until version 1.0.0. The handle.fi protocol is deployed on Arbitrum One.

Getting started

Install the package with yarn or NPM:

npm install --save handle-sdk
yarn add handle-sdk

Initialise the SDK with an ethers Signer or Provider:

signer = new ethers.Wallet(
  process.env.PRIVATE_KEY,
  new ethers.providers.InfuraWebSocketProvider("kovan", process.env.INFURA_KEY)
);
// Load the SDK.
const handleSDK = await SDK.from(signer);
// Load user vaults.
await handleSDK.loadVaults();

Mint some fxAUD using Ether as collateral:

const vault = handleSDK.vaults.find((x) => x.token.symbol === "fxAUD");
await vault.mintWithEth(
  ethers.utils.parseEther("0.01"), // 1 cent of fxAUD
  ethers.utils.parseEther("0.0003") // approximately 1 AUD in Ether
);

Readme

Keywords

none

Package Sidebar

Install

npm i handle-sdk-react

Weekly Downloads

58

Version

0.0.56

License

BUSL-1.1

Unpacked Size

3.09 MB

Total Files

288

Last publish

Collaborators

  • handle.fi