Interface CustomOperation

Generic operation.

interface CustomOperation {
    0: "custom";
    1: {
        data: number[] | Buffer | HexBuffer;
        id: number;
        required_auths: string[];
    };
}

Hierarchy (view full)

Properties

0 1

Properties

0
1: {
    data: number[] | Buffer | HexBuffer;
    id: number;
    required_auths: string[];
}