Interface CustomJsonOperation

Generic operation.

interface CustomJsonOperation {
    0: "custom_json";
    1: {
        id: string;
        json: string;
        required_auths: string[];
        required_posting_auths: string[];
    };
}

Hierarchy (view full)

Properties

0 1

Properties

0
1: {
    id: string;
    json: string;
    required_auths: string[];
    required_posting_auths: string[];
}

Type declaration

  • 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[]