I am trying to understand how a web application using web3 is pulling the data and how I can inspect it.
Example:
https://charts.bogged.finance/?token=0xD2602dBB063627B80D5ae671007900F558c49E35
If you look at the network tab, it will contain requests such as:
{
"id": 19,
"jsonrpc": "2.0",
"method": "eth_call",
"params": [
{
"data": "0x0eb22982000000000000000000000000d2602dbb06362000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c",
"to": "0x0bd91f45fca6428680c02a79a2496d6f97bdf24a"
},
"latest"
]
}
and responses such as:
{
"id": 19,
"jsonrpc": "2.0",
"result": "0x000000000000000000000000000000000000000000000000b0020ad7e5d55dc9"
}
Neither is particularly useful.
As far as I understand, to
is the contract address.