0.1.2 • Published 10 months ago

lq-provider v0.1.2

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

:package: paraspace-provider

A simple api for interacting with paraspace protocol

🌟 Features

  1. 🪐 internal integration of typechain and paraspace-core addresses
  2. 🤖️ multicall integration
  3. 🍵 ethers based rpc provider

:sparkles: Usage

npm i lq-provider

:beers: Example

// In this case, we are connecting to the test network of paraspace in goerli
// NOTE: provider.init() should be done before use

import { Provider, ParaSpaceEthMM as MM, Environment, NetworkName, RPCProviderType } from "paraspace-provider"

const rpcs = [
    {
        endpoint: "https://goerli.infura.io/v3/<your-api-key>",
        type: RPCProviderType.ArchiveRPC,
    },
    {
        endpoint: "https://eth-goerli.g.alchemy.com/v2/<your-api-key>",
        type: RPCProviderType.ArchiveRPC,
    }
    // and more ...
]

const provider = new Provider(Environment.DEVELOPMENT, NetworkName.goerli, rpcs)
await provider.init()

const reserves = await provider.connectAndSendTx(
    MM.ProtocolDataProvider,
    "getAllReservesTokens",
    []
)
const USDC = reserves.find({ symbol } => symbol === "USDC")
console.log(USDC)

:bookmark: see release for CHANGELOG

0.1.2

10 months ago

0.1.1

10 months ago

0.1.0

10 months ago