@wharfkit/session - v4.0.1
    Preparing search index...

    Interface ABISerializableObject

    Interface that should be implemented by ABI serializable objects.

    interface ABISerializableObject {
        equals(other: any): boolean;
        toABI?(encoder: ABIEncoder): void;
        toJSON(): any;
    }

    Implemented by

    Index
    • Return true if the object equals the other object passed.

      Parameters

      • other: any

      Returns boolean

    • Called when encoding to binary abi format.

      Parameters

      Returns void

    • Called when encoding to json abi format.

      Returns any