GraphQl Bitquery create a custom query that takes a variable
Budget: $30 – $250 USD
I am looking for someone to build a custom graph ql query to get this data on binance smart chain tokens based on an inputed token address. I need this ASAP within hours if possible.
The query should be made using this builder: https://graphql.bitquery.io/ide#
Information I need:
Token Name
Token Symbol
Token Price
24 hour change in price via PancakeSwap v1 + v2
24 hour trade Volume on PancakeSwap v1 + v2
Total Supply of the token
Total Circulating Supply of token (Token Supply - BalanceOf(BurnAddress)
Marketcap in USD
If possible (I will be using coinGecko if not avaiable):
Link to token Logo
SocialLinks
My graphql code so far:
query ($address: String!) {
ethereum(network: bsc) {
dexTrades(
options: {desc: ["block.height", "tradeIndex"], limit: 1}
exchangeName: {in: ["Pancake", "Pancake v2"]}
quoteCurrency: {is: "0xe9e7cea3dedca5984780bafc599bd69add087d56"}
date: {after: "2021-04-28"}
baseCurrency: {is: $address}
) {
tradeIndex
block {
height
}
quotePrice
}
address(address: {is: $address}) {
smartContract {
currency {
symbol
name
}
}
}
}
}
The query should be made using this builder: https://graphql.bitquery.io/ide#
Information I need:
Token Name
Token Symbol
Token Price
24 hour change in price via PancakeSwap v1 + v2
24 hour trade Volume on PancakeSwap v1 + v2
Total Supply of the token
Total Circulating Supply of token (Token Supply - BalanceOf(BurnAddress)
Marketcap in USD
If possible (I will be using coinGecko if not avaiable):
Link to token Logo
SocialLinks
My graphql code so far:
query ($address: String!) {
ethereum(network: bsc) {
dexTrades(
options: {desc: ["block.height", "tradeIndex"], limit: 1}
exchangeName: {in: ["Pancake", "Pancake v2"]}
quoteCurrency: {is: "0xe9e7cea3dedca5984780bafc599bd69add087d56"}
date: {after: "2021-04-28"}
baseCurrency: {is: $address}
) {
tradeIndex
block {
height
}
quotePrice
}
address(address: {is: $address}) {
smartContract {
currency {
symbol
name
}
}
}
}
}