Interface RecoverAccountOperation

Generic operation.

interface RecoverAccountOperation {
    0: "recover_account";
    1: {
        account_to_recover: string;
        extensions: any[];
        new_owner_authority: AuthorityType;
        recent_owner_authority: AuthorityType;
    };
}

Hierarchy (view full)

Properties

0 1

Properties

0
1: {
    account_to_recover: string;
    extensions: any[];
    new_owner_authority: AuthorityType;
    recent_owner_authority: AuthorityType;
}

Type declaration

  • account_to_recover: string

    The account to be recovered.

  • extensions: any[]

    Extensions. Not currently used.

  • new_owner_authority: AuthorityType

    The new owner authority as specified in the request account recovery operation.

  • recent_owner_authority: AuthorityType

    A previous owner authority that the account holder will use to prove past ownership of the account to be recovered.