Burve Protocol
Burve Protocol
Burve Protocol
  • ๐Ÿ”ฎBurve Labs
  • ๐Ÿ˜ˆBurve Protocol
    • ๐Ÿง™LaunchDex
      • ๐ŸŒ‹Intra-Ecosystem Definitions
      • ๐Ÿ—๏ธKey Features
      • ๐ŸŒ“Token Launch
        • ๐ŸŒค๏ธHODL
          • Parameters for Exponential Curve
        • ๐ŸŒฅ๏ธLOL
      • ๐ŸŒ—Token Trading
        • ๐ŸŒœTrading Taxes [HODL only]
      • ๐ŸŒ•Typical Use Cases
    • โ™พ๏ธBurve BLP
    • ๐ŸชฉBSR Bot
    • โ˜ฎ๏ธBurve SDK
    • โš›๏ธBurve Appchain
  • Learn More
    • AMM
    • Bonding Curve
    • Whitepaper
    • Contracts
    • API
      • API Examples
      • Scalars
      • Objects
      • Inputs
      • Enums
      • Query
  • Burve Referral Program
    • ๐ŸƒBurve Blazers NFT
  • Security Audit
  • Roadmap
  • Token Economy
  • Links
Powered by GitBook
On this page
  • Query FactoryProxy contract address
  • Query number of launch tokens
  • Query multiple entities at once
  1. Learn More
  2. API

API Examples

๐Ÿง™โ€ Some plain and simple examples

Query FactoryProxy contract address

Try Online

query QueryFactoryProxyAddress {
  platformEntities {
    addr
  }
}

Query number of launch tokens

Try Online

query QueryLaunchCount {
  counterEntities(where: {type_contains: "DaoCount"}) {
    count
  }
}

Query multiple entities at once

Try Online

query QueryPlatformInfo {
  platformEntities {
    addr
  }
  counterEntities(where: {type_contains: "DaoCount"}) {
    count
  }
}
PreviousAPINextScalars

Last updated 1 year ago