How do I get ENS domain transfers using Alchemy Transfers API (alchemy_getAssetTransfers)?
I'm using the Transfers API (Tx History) -- Internal Eth Transfers, but i cant get ENS txns in its response.
Here is the json rpc request I'm making:
```
{
"jsonrpc": "2.0",
"id": 0,
"method": "alchemy_getAssetTransfers",
"params": [
{
"fromAddress": "0xDce63CBee5E3f5d30729b777a11385B58b711a3c",
"excludeZeroValue": true,
"withMetadata": true,
"category": [
"internal",
"erc20",
"erc721",
"erc1155",
"specialnft"
]
}
]
}
```
I expect the ENS domain transfer that shows up in this transaction hash (`0xc97431eec5791405982b3d1873ed38062e5ea2542997aad9468efb28075bc88f`) to appear in the api call response, but it isn't there.
How can I debug this?
Posted by Aniket 8 months ago