Type Alias DecodedStruct<B, T>

DecodedStruct<B, T>: B & {
    data_decoded: T;
    type_arguments: string[];
}

Type Parameters

  • B
  • T

Type declaration

  • data_decoded: T

    decoded data using ABI, undefined if there is decoding error, usually because the ABI/data mismatch

  • type_arguments: string[]