Skip to main content

_beforeTransferTo

Contract: JBPayoutRedemptionPaymentTerminal​‌

Logic to be triggered before transferring tokens from this terminal.

Definition

function _beforeTransferTo(address, uint256) internal override { ...}
  • Arguments:
    • _to is the address to which the transfer is going.
    • _amount is the amount of the transfer, as a fixed point number with the same number of decimals as this terminal.
  • The resulting function is internal to this contract and its inheriters.
  • The resulting function overrides a function definition from the IJBPayoutRedemptionPaymentTerminal interface.

Body

  1. Before transferring tokens to another address, approve that address to pull the specified amount of tokens from this contract.

    IERC20(token).safeApprove(_to, _amount);

    External references: