Interface AppliedClaimAccountOperation

Applied operation.

interface AppliedClaimAccountOperation {
    block: number;
    op: {
        type: "claim_account_operation";
        value: {
            creator: string;
            extensions: any[];
            fee: {
                amount: string;
                nai: string;
                precision: number;
            };
        };
    };
    op_in_trx: number;
    timestamp: string;
    trx_id: string;
    trx_in_block: number;
    virtual_op: number;
}

Hierarchy (view full)

Properties

block: number
op: {
    type: "claim_account_operation";
    value: {
        creator: string;
        extensions: any[];
        fee: {
            amount: string;
            nai: string;
            precision: number;
        };
    };
}

Type declaration

  • type: "claim_account_operation"
  • value: {
        creator: string;
        extensions: any[];
        fee: {
            amount: string;
            nai: string;
            precision: number;
        };
    }
    • creator: string
    • extensions: any[]

      Extensions. Not currently used.

    • fee: {
          amount: string;
          nai: string;
          precision: number;
      }
      • amount: string
      • nai: string
      • precision: number
op_in_trx: number
timestamp: string
trx_id: string
trx_in_block: number
virtual_op: number