Interface AppliedAccountCreateOperation

Account Create.

interface AppliedAccountCreateOperation {
    block: number;
    op: {
        type: "account_create_operation";
        value: {
            active: AuthorityType;
            creator: string;
            fee: {
                amount: string;
                nai: string;
                precision: number;
            };
            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: "account_create_operation";
    value: {
        active: AuthorityType;
        creator: string;
        fee: {
            amount: string;
            nai: string;
            precision: number;
        };
        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