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

goswap-data

v0.0.10

Published

This is a collection of utilities to query SushiSwap data from Ethereum. This data has been indexed by the Graph via the subgraph the SushiSwap team maintains.

Downloads

4

Readme

sushi-data

This is a collection of utilities to query SushiSwap data from Ethereum. This data has been indexed by the Graph via the subgraph the SushiSwap team maintains.

Supported Queries

The below all return a Promise that resolves with the requested results.

  1. weth.price() Gets current USDC price of WETH.
  2. sushi.info(block) Get sushi ETH price and total supply.
    Optional: can use block number to fetch data at a specific block.
  3. masterchef.info() Get MasterChef Contract Info.
  4. masterchef.pools(identifier) Get all pool info for pools in MasterChef.
    Optional: can use identifier as argument - either pool id or pair address.
  5. masterchef.stakedValue() Get pricing info for MasterChef pools.
  6. timelock.queuedTxs() Get all queued Timelock txs.
  7. timelock.canceledTxs() Get all canceled Timelock txs.
  8. timelock.executedTxs() Get all executed Timelock txs.
  9. timelock.txs() Get all queued/executed/canceled Timelock txs.
  10. bar.info() Get all SushiBar contract info.
  11. bar.user({ user: "address"}) Get sushi bar data for specific address.
  12. maker.info() Get SushiMaker contract info
  13. maker.servings() Get all past servings to the bar.
  14. maker.servers() Get all addresses that have served sushi to the bar.
  15. maker.pendingServings() Get all data on all of the servings that are ready to be served to the bar.
  16. exchange.tokens(token_address) Get data for all tokens under the SushiSwap factory.
    Optional: can use token address to fetch data for specific token.
  17. exchange.pairs(pair_address) Get data for all pairs under the SushiSwap factory.
    Optional: can use pair address to fetch data for specific pair.
  18. exchange.ethPrice() Get current ETH price in USD.
  19. exchange.factory() Get all data for the SushiSwap factory.
  20. exchange.dayData(days) Get all data for the SushiSwap factory broken down by day.
    Optional: can use number of days to fetch data for a specific number of days (1 for today's data only, 2 for today and yesterday).

Supported Subscriptions

The below all return an Observable that when subscribed to with an object.

  1. exchanges.observeTokens(token_address) Get an observable to subscribe to that will next all token data updates in real time.
    Optional: can use token address to observe data for specific token.

Example

const sushiData = require('@sushiswap/sushi-data'); // common js
// or
import sushiData from '@sushiswap/sushi-data'; // es modules

// query and log resolved results
sushiData.masterchef
  .Pools()
  .then(pools => console.log(pools))

sushiData.masterchef
  .TimeLocks()
  .then(timelocks => console.log(timelocks))

sushiData.bar
  .User({user: '0x6684977bbed67e101bb80fc07fccfba655c0a64f'})
  .then(user => console.log(user))