synthetix-data
This is a collection of utilities to query Synthetix data from Ethereum. This data has been indexed by The Graph via the various subgraphs the Synthetix team maintains (the subgraph code repo).
Supported queries
The below all return a Promise that resolves with the requested results.
depot.userActions({ user })
Get all depot deposit (sUSD
) actions for the given user - deposit
, withdrawl
, unaccepted
, removed
.depot.clearedDeposits({ fromAddress, toAddress })
Get all cleared synth deposits (payments of ETH
for sUSD
) either from a given fromAddress
or (and as well as) to a given toAddress
depot.exchanges({ from })
Get all depot exchanges (buying sUSD with ETH) for a given from
address.exchanges.total()
Get the total exchange volume, total fees and total number of unique exchange addresses.exchanges.rebates({ minTimestamp = 1 day ago })
Get the last N
exchange rebates since the given minTimestamp
in seconds. Ordered in reverse chronological order.exchanges.reclaims({ minTimestamp = 1 day ago })
Get the last N
exchange reclaims since the given minTimestamp
in seconds. Ordered in reverse chronological order.exchanges.since({ minTimestamp = 1 day ago })
Get the last N
exchanges since the given minTimestamp
(in seconds, so one hour ago is 3600
). These are ordered in reverse chronological order.rate.updates
Get all rate updates for synths in reverse chronological ordersynths.issuers
Get all wallets that have invoked Issue
on sUSD
(other synths to come)synths.transfers
Get synth transfers in reverse chronological ordersynths.holders
Get all potential synth holderssnx.holders
Get the list of wallets that have ever sent or received SNX
.snx.rewards
Get the list of reward escrow holders and their latest balance at vesting entry add or vest.snx.total
Get the total count of unique issuers
and snxHolders
snx.transfers
Get SNX transfers in reverse chronological ordersnx.issued
Get the Issued
events in reverse chronological order.snx.burned
Get the Burned
events in reverse chronological order.snx.feesClaimed
Get the FeesClaimed
events in reverse chronological order, showing fees in sUSD and rewards in SNX.snx.debtSnapshot
Get the historical debt balance for any wallet address.binaryOptions.markets
Get all the binary options markets created.binaryOptions.optionTransactions
Get all the Bid and Refund transactions made to the binary options markets.binaryOptions.historicalOptionPrice
Get historical records of every option price for every market.etherCollateral.loans
Get the list of all EtherCollateral loans opened.exchanger.exchangeEntriesSettled({ max, from })
Get the list of all settled exchanges.exchanges.aggregate({ max, timeSeries })
Get the total amount of exchanges aggregated across various time series.rate.snxAggregate({ max, timeSeries })
Get the price of snx aggregated across various time series.snx.aggregateActiveStakers({ max, timeSeries })
Get the number of active stakers across various time series.snx.totalActiveStakers()
Get the current number of active stakers.rate.dailyRateChange({ synths })
get the rate change over the past 24 hours for any synth. Can pass in a list to retrieve multiple synths.
Supported subscriptions
The below all return an Observable that when subscribed to with an object.
exchanges.observe()
Get an observable to subscribe
to that will next
the latest exchanges in real time (replays the most recent exchange immediately).rate.observe()
Get an observable to subscribe
to that will next
the latest rates in real time (replays the most recent exchange immediately).
Use this as a node or webpack dependency
const snxData = require('synthetix-data');
import snxData from 'synthetix-data';
snxData.exchanges
.since({
minTimestamp: Math.floor(Date.now() / 1e3) - 3600 * 24,
})
.then(exchanges => console.log(exchanges));
snxData.exchanges.observe().subscribe({
next(val) {
console.log(val);
},
error: console.error,
complete() {
console.log('done');
},
});
Use in a browser
<script src="//cdn.jsdelivr.net/npm/synthetix-data/browser.js"></script>
<script>
window.snxData.exchanges
.since({
minTimestamp: Math.floor(Date.now() / 1e3) - 3600 * 24,
})
.then(console.log);
window.snxData.exchanges.observe().subscribe({ next: console.log });
</script>
How to query via the npm library (CLI)
npx synthetix-data exchanges.since
npx synthetix-data exchanges.subscribe