Interface AppliedResetAccountOperation

This operation allows recovery_account to change account_to_reset's owner authority to new_owner_authority after 60 days of inactivity.

interface AppliedResetAccountOperation {
    block: number;
    op: {
        type: "reset_account_operation";
        value: {
            account_to_reset: string;
            new_owner_authority: AuthorityType;
            reset_account: 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: "reset_account_operation";
    value: {
        account_to_reset: string;
        new_owner_authority: AuthorityType;
        reset_account: string;
    };
}
op_in_trx: number
timestamp: string
trx_id: string
trx_in_block: number
virtual_op: number