Interface AppliedSetWithdrawVestingRouteOperation

Allows an account to setup a vesting withdraw but with the additional request for the funds to be transferred directly to another account's balance rather than the withdrawing account. In addition, those funds can be immediately vested again, circumventing the conversion from vests to blurt and back, guaranteeing they maintain their value.

interface AppliedSetWithdrawVestingRouteOperation {
    block: number;
    op: {
        type: "set_withdraw_vesting_route_operation";
        value: {
            auto_vest: boolean;
            from_account: string;
            percent: number;
            to_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: "set_withdraw_vesting_route_operation";
    value: {
        auto_vest: boolean;
        from_account: string;
        percent: number;
        to_account: string;
    };
}
op_in_trx: number
timestamp: string
trx_id: string
trx_in_block: number
virtual_op: number