Scout Chart Creator
  • Overview
  • Get Started
    • Tutorial 1: NMR Daily Transaction Count
    • Tutorial 2: LPT Weekly Volume (USD)
    • Tutorial 3: NMR vs LPT Daily comparison
  • Pipeline
    • Filter
    • Project
    • Group
      • Accumulators
    • Sort
    • Unwind
    • Custom
  • Data Source
    • Transactions
    • States
    • Contracts
    • Aragon
    • Livepeer
    • dYdX
    • Set
    • Token holders
  • Operators
    • Math operators
    • Logic operators
    • Function operators
    • Array operators
    • String operators
  • Config
  • Protocols
    • Dodo
      • 24H trade volume
      • Deposit & Withdraw
    • Livepeer
    • dYdX
      • Making sense of the trade data
    • MakerDao
    • Pickle Finance
      • Example: Daily deposit and withdraw of jar 0.88
      • Example: Listing all borrows of a strategy
  • FAQ
    • Dealing with "logs" field in "Transaction"
    • How to handle "Query Timeout" error?
    • How to use a variable in a Pipeline
  • Research
    • The circulating supply of DODO tokens
    • How are bitcoins doing on Ethereum? (as of Jan 20th 2021)
Powered by GitBook
On this page
  • 1. Set Protocol Sets History
  • 2. Vault Daily Balance
  • 3. Daily Transactions

Was this helpful?

  1. Data Source

Set

Customized data sources for Set protocol

1. Set Protocol Sets History

Listing the history of the creation and rebalance of all the sets.

  • blockNumber and blockTimestamp: The block number and the time when this transaction happened.

  • setTokenAddress: The address of the set token.

  • category: Either "robo" or "tradingSocial".

  • components: The underlying tokens of the set. The composition changes when rebalance happens.

    • address: Address of the underlying token.

    • name: Name of the underlying token.

    • decimals: Decimals of the underlying token.

    • quantityPerSet: How much underlying token is included in this set.

  • setToken: More metadata about this set token.

    • address: The address of the set, value is same as setTokenAddress

    • name: Name of the set token.

    • symbol: Symbol of the set token.

    • naturalUnit: The natural unit of the set token.

  • initialized: boolean. Value is set to "true" as soon as the set has been traded through SetIssued or SetRedeemed

2. Vault Daily Balance

Daily token balance of the vault contract of Set.

  • _id: Unix epoch timestamp of the day

  • sets: Array of set tokens

    • address: Address of the set token

    • category: Either "robo" or "socialTrading"

    • totalSupply: Total supply of the set token.

    • marketCap: Market cap of the set token.

  • totalUSD: Sum of token values in USD

  • assets: Array of assets

    • symbol: Symbol of the asset token.

    • balance: Token balance

    • balanceUSD: Token balance converted to USD.

3. Daily Transactions

Listing daily aggregation of sets' buy/sell/rebalance transactions volume

  • _id: Unix epoch timestamp of the day

  • actions: Daily transaction volume breakdown by txs action

    • action: One of ["buy", "sell", "rebalance"]

    • bySetCategory: Available if action is "buy" or "sell"

      • category: Either "robo" or "socialTrading"

      • volumeUSD: Daily transaction amount in USD

      • cumulativeVolumeUSD: Cumulative amount since Set Protocol launched.

    • byTag: Available if action is "rebalance"

      • tag: If action is "rebalance", txs are tagged by market pair, like "USDC-WETH", "LINK-USDC", etc

      • volumeUSD: Daily transaction amount in USD

      • cumulativeVolumeUSD: Cumulative amount since Set Protocol launched.

  • volumeUSD: Daily total transaction amount in USD

  • cumulativeVolumeUSD: Cumulative amount since Set Protocol launched.

PreviousdYdXNextToken holders

Last updated 4 years ago

Was this helpful?