Query input data of a transaction

Hello. Is is possible to query the input data of ethereum transactions. I would like to watch the arguments of methods.
For example 0x09169947d8b799a824205c80b136ede7d5b0770b54c4e024882cad9fca0f175e in BSC

1 Like

try this

1 Like

I can’t find the input data for the address 0xf7c7be061edf0e24ea8fe3aca2c580c62bc1546b3d05cfa74a40fbffd7f9f690. I am using the following query.

{
  ethereum(network: bsc) {
    smartContractCalls(
      txHash: {is: "0xf7c7be061edf0e24ea8fe3aca2c580c62bc1546b3d05cfa74a40fbffd7f9f690"}
    ) {
      smartContract {
        address {
          address
          annotation
        }
        contractType
        protocolType
      }
   arguments {
        value
        argument
        argumentType
        index
      }
      smartContractMethod {
        name
        signatureHash
      }
      address: caller {
        address
        annotation
      }

      callDepth
    }
  }
}

When I am using the argument method, I am getting errors. I want the input data for the same. It is showing in BSCSCAN though.

The input data in the below image has to be returned, but it is giving errors.

Can you please help me out here? @gaurav

1 Like

We do not have ABI to parse arguments, and do not record hex data for inputs

2 Likes

Provide us ABI …we will add it.

We do pull ABIs from BscScan.