Socket
Socket
Sign inDemoInstall

handle-sdk

Package Overview
Dependencies
Maintainers
1
Versions
447
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

handle-sdk

handle.fi sdk


Version published
Weekly downloads
54
decreased by-93.63%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 09 Dec 2021

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc