Cha11enger / yearn-sdk

🦧 SDK for the yearn.finance platform. WIP

Home Page:https://npm.im/@yfi/sdk

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Yearn SDK

CI Styled With Prettier

Getting Started

Installation

npm i @yfi/sdk

Configuration/Usage

To use the SDK, you will need to instantiate a Yearn object with your desired configuration;

import { Yearn } from "@yfi/sdk";
import { JsonRpcProvider } from "@ethersproject/providers";

// Ethereum mainnet
const chainId = 1;

// It is recommended to use Alchemy for your Web3 provider when using the Yearn SDK.
const rpcUrl = "https://eth-mainnet.alchemyapi.io/v2/secret-id-here";

const yearn = new Yearn(chainId, {
  provider: new JsonRpcProvider(rpcUrl)
});

Documentation

Autogenerated documentation can be found here.

Helpful links

Contributing

Releasing the SDK to npmjs

Debug the website with a local copy of the sdk

About

🦧 SDK for the yearn.finance platform. WIP

https://npm.im/@yfi/sdk

License:MIT License


Languages

Language:TypeScript 99.6%Language:JavaScript 0.4%