Socket
Socket
Sign inDemoInstall

handle-sdk

Package Overview
Dependencies
65
Maintainers
1
Versions
417
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    handle-sdk

handle.fi sdk


Version published
Maintainers
1
Created

Readme

Source

handle.fi SDK

Read the docs here.
Please note that this SDK is still a work in progress.
Currently, only the Kovan testnet is supported.

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 26 Jul 2021

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