Interface AppliedChangeRecoveryAccountOperation

Applied operation.

interface AppliedChangeRecoveryAccountOperation {
    block: number;
    op: {
        type: "change_recovery_account_operation";
        value: {
            account_to_recover: string;
            extensions: any[];
            new_recovery_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: "change_recovery_account_operation";
    value: {
        account_to_recover: string;
        extensions: any[];
        new_recovery_account: string;
    };
}

Type declaration

  • type: "change_recovery_account_operation"
  • value: {
        account_to_recover: string;
        extensions: any[];
        new_recovery_account: string;
    }
    • account_to_recover: string

      The account that would be recovered in case of compromise.

    • extensions: any[]

      Extensions. Not currently used.

    • new_recovery_account: string

      The account that creates the recover request.

op_in_trx: number
timestamp: string
trx_id: string
trx_in_block: number
virtual_op: number