Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 782 Bytes

eth-connect.solidityevent.decode.md

File metadata and controls

28 lines (18 loc) · 782 Bytes

Home > eth-connect > SolidityEvent > decode

SolidityEvent.decode() method

Should be used to decode indexed params and options

Signature:

decode(data: LogObject): LogObject & {
        event: string;
        address: string;
        args: Record<string, any>;
    };

Parameters

Parameter Type Description
data LogObject

Returns:

LogObject & { event: string; address: string; args: Record<string, any>; }