OBJECT

EthDecodedMethodData

link GraphQL Schema definition

  • type EthDecodedMethodData {
  • # The keccak hash of method signature in hex string
  • # 4 bytes for decodedInput ("0x" + 8 hex strings)
  • # 32 bytes for decodedEvents ("0x" + 64 hex strings)
  • id: String!
  • # The signature of the method the transaction invoked (i.e. transfer(address to,
  • # uint256 amount))
  • signature: String!
  • # The decoded parameters of the method
  • params: [EthDecodedParameter!]!
  • }