npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@rholabs/rho-sdk

v0.2.24

Published

Rho Protocol SDK

Downloads

402

Readme

Rho Protocol SDK

Installation

npm install @rholabs/rho-sdk

Getting Started

Create Rho SDK with testnet configuration:

import RhoSDK from '@rholabs/rho-sdk';

const rhoSDK = new RhoSDK({ network: 'testnet' });

RhoSDKParams: Object (optional)

export type RhoSDKNetwork = 'mainnet' | 'testnet' | 'custom'

export interface RhoSDKParams {
  network?: RhoSDKNetwork
  routerAddress?: string
  viewAddress?: string
  quoterAddress?: string
  rpcUrl?: string
  oracleServiceUrl?: string
  privateKey?: string
  provider?: JsonRpcProvider | BrowserProvider
  signer?: JsonRpcSigner
}

API Reference

getActiveMarketIds(offset, limit)

Get active market ids

Parameters

  1. offset - Number (optional)
  2. limit - Number (optional)

Returns

String[]


getActiveMarkets({ oraclePackages, offset, limit })

Get active markets

Parameters

  1. oraclePackages - OraclePackages[] (optional)
  2. offset - Number (optional)
  3. limit - Number (optional)

Returns

MarketInfo[]


getPortfolio({ userAddress, oraclePackages, offset, limit })

Get user portfolio

Parameters

  1. userAddress - String
  2. oraclePackages - OraclePackages[] (optional)
  3. offset - Number (optional)
  4. limit - Number (optional)

Returns

MarketPortfolio[]


getTradeQuote({ marketId, futureId, notional, userAddress, oraclePackages? })

Get trade quote

Parameters

  1. marketId - String
  2. futureId - String
  3. notional - BigInt
  4. userAddress - String
  5. oraclePackages - OraclePackages[] (optional)

Returns

TradeQuote


getLiquidityProvisionQuote({ marketId, futureId, notional, operation, lowerBound, upperBound, userAddress, oraclePackages? })

Get liquidity provision quote

Parameters

  1. marketId - String
  2. futureId - String
  3. notional - BigInt
  4. operation - LiquidityOperation
  5. lowerBound - String
  6. upperBound - String
  7. userAddress - String
  8. oraclePackages - OraclePackages[] (optional)

Returns

LiquidityQuote


executeTrade({ marketId, futureId, notional, riskDirection, futureRateLimit, collateral, deadlineTimestamp, settleMaturedPositions?, oraclePackages? })

Execute trade

Parameters

  1. marketId - String
  2. futureId - String
  3. notional - BigInt
  4. riskDirection - RiskDirection
  5. futureRateLimit - BigInt
  6. collateral - BigInt
  7. deadline - Number (optional, Date.now() + 5 _ 60 _ 1000)
  8. settleMaturedPositions - Boolean (optional, true)
  9. oraclePackages - OraclePackages[] (optional)

Returns

TransactionReceipt


deposit({ marketId, recipientAddress, amount, settleMaturedPositions?, oraclePackages? })

Deposit

Parameters

  1. marketId - String
  2. recipientAddress - String
  3. amount - BigInt
  4. settleMaturedPositions - Boolean (optional)
  5. oraclePackages - OraclePackages[] (optional)

Returns

TransactionReceipt


withdraw({ marketId, amount, settleMaturedPositions?, oraclePackages? })

Withdraw

Parameters

  1. marketId - String
  2. amount - BigInt
  3. settleMaturedPositions - Boolean (optional, true)
  4. oraclePackages - OraclePackages[] (optional)

Returns

TransactionReceipt


provideLiquidity({ marketId, futureId, notional, collateral, lowerBound, upperBound, deadlineTimestamp?, settleMaturedPositions?, oraclePackages? })

Provide liquidity

Parameters

  1. marketId - String
  2. futureId - String
  3. notional - BigInt
  4. collateral - BigInt
  5. lowerBound - String
  6. upperBound - String
  7. deadline - Number (optional, Date.now() + 5 _ 60 _ 1000)
  8. settleMaturedPositions - Boolean (optional, true)
  9. oraclePackages - OraclePackages[] (optional)

Returns

TransactionReceipt


removeLiquidity({ marketId, futureId, notional, collateral, lowerBound, upperBound, deadlineTimestamp?, settleMaturedPositions?, oraclePackages? })

Remove liquidity

Parameters

  1. marketId - String
  2. futureId - String
  3. notional - BigInt
  4. collateral - BigInt
  5. lowerBound - String
  6. upperBound - String
  7. deadline - Number
  8. settleMaturedPositions - Boolean (optional, Date.now() + 5 _ 60 _ 1000)
  9. oraclePackages - OraclePackages[] (optional)

Returns

TransactionReceipt


Using in browser / Node.Js

Basic configuration (read only)

import RhoSDK from '@rholabs/rho-sdk';

const rhoSDK = new RhoSDK({ network: 'testnet' })

Node.JS

import RhoSDK from '@rholabs/rho-sdk';

const rhoSDK = new RhoSDK({
  network: 'testnet',
  privateKey: '<PRIVATE_KEY>'
})

Using with Metamask

if (window.ethereum) {
      const provider = new ethers.BrowserProvider(window.ethereum)
      await provider.send("eth_requestAccounts", [])
      const signer = await provider.getSigner()

      const sdk = new RhoSDK({ network: 'testnet', signer })
      const markets = await sdk.getActiveMarkets()
}

Testing

Create .env file:

TEST_PRIVATE_KEY=12345

and run the tests:

yarn test

Publishing

npm login
  1. Bump version in package.json
  2. Build package
yarn build
  1. Publish
npm publish --access public