Get Transaction Input Data
GET/api/v1/transactions/:transactionHash/input-data
Free [3 Credits]
Retrieve the input data of a transaction.
Request
Path Parameters
transactionHash stringrequired
transaction hash
Responses
- 200
OK
- */*
- Schema
- Example (from schema)
Schema
Array [
]
originalValue Original Value (string)required
decodedValue
object
signature Function Name (string)required
methodId Method ID (string)required
parameters
object[]
required
type Parameter Type (string)required
name Parameter Name (If ABI Exists) (string)
value Parameter Value (string)required
utf8Value UTF-8 Value (string)required
{
"originalValue": "string",
"decodedValue": {
"signature": "string",
"methodId": "string",
"parameters": [
{
"type": "string",
"name": "string",
"value": "string"
}
]
},
"utf8Value": "string"
}
Loading...