Chuỗi

BNB Smart Chain

Dễ dàng xây dựng các dApp Web3

BNB Beacon Chain

Sunset soon

Lớp quản trị & stake của hệ sinh thái BNB Chain

Tài liệuGitHubFaucetStake BNBBscScanBSCTraceDev ToolsLearn more about FusionTài liệuTrình khám phá Beacon ChainStake BNBTài liệuGitHubFaucetCầu nốiGreenfieldScanDCellarDev ToolsTài liệuGitHubFaucetCầu nốiopBNBScanDev ToolsTài liệuGitHubFaucetBridgezkBNBScanThị trường giao dịch

Nhà phát triển

Nhà phát triển

Bắt đầu xây dựng trên BNB Chain

Bắt đầu xây dựng
Nhà phát triển
BNB Smart ChainBNB Beacon ChainBNB GreenfieldopBNBzkBNBDAU Incentive ProgramTVL Incentive ProgramKhởi độngChương trình tăng tốc MVBTrợ Cấp Cho Nhà Phát TriểnSpace BMEME Innovation ProgramXem tất cả các chương trình
Liên hệ ngayBắt đầu xây dựng
Liên hệ ngayBắt đầu xây dựng

BUILD Program Update- How to Query Smart Contract Gas Usage

2020.10.20  •  2 min read
Blog post image.

Binance Smart Chain BUIDL Reward Program

To further encourage the development of the dApp ecosystem on Binance Smart Chain, Binance.com has announced a new Binance Smart Chain BUIDL Reward Program. This reward program is part of the $100 million DeFi accelerator fund: up to $5 million worth of BNB will be paid back to developers in proportion to the gas used for their contracts.

HOW TO REGISTER TO BUIDL PROGRAM

GraphQL API Support

Binance smart chain(BSC) is an EVM compatible blockchain to create Dapps and digital assets. Now developers can create smart contracts and build decentralized applications atop BSC. Since day one, Bitquery.io support query any Dapp data from Binance smart chain mainnet and testnet using its GraphQL APIs.

To read more about how to investigate Binance Smart Chain transactions, click here:

Querying Binance Smart Chain (BSC) | Bitquery
This article shows how to query your Dapp data from Binance smart chain mainnet and testnet using our GraphQL APIs.

How to Track Your Smart Contract Gas Usage

Step1:

Go to https://explorer.bitquery.io/graphql

Step2:

Copy and paste the following query code into GraphQL panel.

query ($network: EthereumNetwork!, $limit: Int!, $offset: Int!, $addr: String, $from: ISO8601DateTime, $till: ISO8601DateTime) {
  ethereum(network: $network) {
    smartContractCalls(smartContractAddress: {is: $addr}, options: {desc: "gasValue", limit: $limit, offset: $offset}, date: {since: $from, till: $till}, external: true) {
      smartContract {
        address {
          address
          annotation
        }
      }
      gasValue
      average: gasValue(calculate: average)
      count
    }
  }
}

Replace the following addr into your contract address and the from date, then paste it into the Query Variable Panel.

{"addr":"0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c","from":"2020-08-01","till":null, "limit":10,"offset":0,"network":"bsc","dateFormat":"%Y-%m-%d"}

Step3:

Click on the query button, then you will see the result:

What’s next

A developer leaderboard will be available soon.

You might also be interested in:

Share