Interface AppliedCustomJsonOperation

Applied operation.

interface AppliedCustomJsonOperation {
    block: number;
    op: {
        type: "custom_json_operation";
        value: {
            id: string;
            json: string;
            required_auths: string[];
            required_posting_auths: string[];
        };
    };
    op_in_trx: number;
    timestamp: string;
    trx_id: string;
    trx_in_block: number;
    virtual_op: number;
}

Hierarchy (view full)

Properties

block: number
op: {
    type: "custom_json_operation";
    value: {
        id: string;
        json: string;
        required_auths: string[];
        required_posting_auths: string[];
    };
}

Type declaration

  • type: "custom_json_operation"
  • value: {
        id: string;
        json: string;
        required_auths: string[];
        required_posting_auths: string[];
    }
    • id: string

      ID string, must be less than 32 characters long.

    • json: string

      JSON encoded string, must be valid JSON.

    • required_auths: string[]
    • required_posting_auths: string[]
op_in_trx: number
timestamp: string
trx_id: string
trx_in_block: number
virtual_op: number