Get all transactions of an address, receipt_contract_address when is not null/None

Hi
Get all transactions of an address (python)=> result => ‘receipt_contract_address’: None
Should be contract address.
Can you help ?

Thank you

Can you give a contrite example?

Example from tutorial :

params = {
    "address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045", 
    "chain": "eth", 
    "limit": 10, 
}
result = evm_api.transaction.get_wallet_transactions(
    api_key=api_key,
    params=params,
)
print(result)

from what I know receipt_contract_address will be the address of the contract only when a transaction created a contract, and in that case to_address will be null

Ok
So where I find token contract or name in transaction , which result field ?

I find solution this is another function : evm_api.token.get_wallet_token_transfers()

Thank you where trying to help

1 Like