USD values for both amounts in query

Hi,
Is it possible to adjust this query to give usd values.

{
ethereum {
smartContractEvents(
smartContractAddress: {is: “0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc”}
smartContractEvent: {is: “Burn”}
options: {desc: “block.height”}
) {
block {
height
}
arguments {
value
argument
}
smartContract {
currency {
symbol
}
}
}
}
}

Not possible … sorry…

1 Like

Can you get token/usdt value for each currency as an alternative?
{
ethereum {
dexTrades(
exchangeName: {is: “Uniswap”},
options: {limitBy: {each: “baseCurrency.address”,limit:1}
}
) {
baseCurrency{
address
name
symbol
}

}

}
}

Check this thread.

1 Like

Thanks a lot and I hope you successfully in the future jobs…