Raw decoded method information Contains the decoded function call data for raw input

DecodedMethodRaw

interface DecodedMethodRaw {
    contract?: string;
    input: string;
    decodedData: string;
    error?: string;
}

Properties

contract?: string

Contract address the method was called on

input: string

Raw input data to decode

decodedData: string

Human-readable decoded function call data

error?: string

Error message if decoding failed