Socket
Socket
Sign inDemoInstall

handle-sdk-react

Package Overview
Dependencies
218
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    handle-sdk-react

handle.fi sdk


Version published
Weekly downloads
5
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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
);

FAQs

Last updated on 14 Apr 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc