Interface ResetAccountOperation

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

interface ResetAccountOperation {
    0: "reset_account";
    1: {
        account_to_reset: string;
        new_owner_authority: AuthorityType;
        reset_account: string;
    };
}

Hierarchy (view full)

Properties

0 1

Properties

0
1: {
    account_to_reset: string;
    new_owner_authority: AuthorityType;
    reset_account: string;
}