I’m executing a request https://deep-index.moralis.io/api/v2/nft/transfers?chain=eth&from_block=14174061&to_block=14174061&format=decimal
and getting the following result (some transfers omitted):
{
"total": 38,
"page": 0,
"page_size": 500,
"cursor": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJvcmRlciI6IkRFU0MiLCJvZmZzZXQiOjUwMCwibGltaXQiOjUwMCwidG9fYmxvY2siOiIxNDE3NDA2MSIsImZyb21fYmxvY2siOiIxNDE3NDA2MSIsInBhZ2UiOjEsIndoZXJlIjp7fSwia2V5IjoiMTQxNzQwNjEuNjUuNDMuMCIsImlhdCI6MTY0NDQ5OTY1MX0.fx-aiG-REi0YtVQJPtWq4OLvl00QcQ6h9IsA5GWvO6g",
"result": [
...,
{
"block_number": "14174061",
"block_timestamp": null,
"block_hash": null,
"transaction_hash": "0xf09310b60bc38182ae82136378aaf226c3c75ef51e1753940b6bc697f066ba76",
"transaction_index": null,
"log_index": 421,
"value": null,
"contract_type": null,
"transaction_type": null,
"token_address": "0x495f947276749ce646f68ac8c248420045cb7b5e",
"token_id": "78083991066764150106631345140100786147934004219397043481983325211996119367690",
"from_address": null,
"to_address": null,
"amount": null,
"verified": 1,
"operator": null
},
...
],
"block_exists": true
}
The issue with the result is "value": null
, however if you go on the transaction page, you see that this transaction has value 0.19eth
.
I expected this value to not be null in the response.
Am I missing something? Is it an expected behavior?