Interface AppliedCreateClaimedAccountOperation

Applied operation.

interface AppliedCreateClaimedAccountOperation {
    block: number;
    op: {
        type: "create_claimed_account_operation";
        value: {
            active: AuthorityType;
            creator: string;
            extensions: any[];
            json_metadata: string;
            memo_key: string | PublicKey;
            new_account_name: string;
            owner: AuthorityType;
            posting: AuthorityType;
        };
    };
    op_in_trx: number;
    timestamp: string;
    trx_id: string;
    trx_in_block: number;
    virtual_op: number;
}

Hierarchy (view full)

Properties

block: number
op: {
    type: "create_claimed_account_operation";
    value: {
        active: AuthorityType;
        creator: string;
        extensions: any[];
        json_metadata: string;
        memo_key: string | PublicKey;
        new_account_name: string;
        owner: AuthorityType;
        posting: AuthorityType;
    };
}

Type declaration

  • type: "create_claimed_account_operation"
  • value: {
        active: AuthorityType;
        creator: string;
        extensions: any[];
        json_metadata: string;
        memo_key: string | PublicKey;
        new_account_name: string;
        owner: AuthorityType;
        posting: AuthorityType;
    }
op_in_trx: number
timestamp: string
trx_id: string
trx_in_block: number
virtual_op: number