Interface AppliedAccountUpdateOperation

Account Update.

interface AppliedAccountUpdateOperation {
    block: number;
    op: {
        type: "account_update_operation";
        value: {
            account: string;
            active?: AuthorityType;
            extensions: any[];
            json_metadata: string;
            memo_key?: string | PublicKey;
            owner?: AuthorityType;
            posting?: AuthorityType;
            posting_json_metadata: 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: "account_update_operation";
    value: {
        account: string;
        active?: AuthorityType;
        extensions: any[];
        json_metadata: string;
        memo_key?: string | PublicKey;
        owner?: AuthorityType;
        posting?: AuthorityType;
        posting_json_metadata: string;
    };
}
op_in_trx: number
timestamp: string
trx_id: string
trx_in_block: number
virtual_op: number