# Redemption Delegate

**Specifications**

A contract can become a treasury redemption delegate by adhering to ISnowconeRedemptionDelegate3\_1\_1:

```javascript
interface ISnowconeRedemptionDelegate3_1_1 is IERC165 {
  function didRedeem(SnowconeDidRedeemData3_1_1 calldata data) external payable;
}

```

When extending the redemption functionality with a delegate, the protocol will pass a SnowconeDidRedeemData3\_1\_1 to the `didRedeem(...)` function:

```javascript
struct SnowconeDidRedeemData3_1_1 {
    address holder;
    uint256 projectId;
    uint256 currentFundingCycleConfiguration;
    uint256 projectTokenCount;
    SnowconeTokenAmount reclaimedAmount;
    SnowconeTokenAmount forwardedAmount;
    address payable beneficiary;
    string memo;
    bytes dataSourceMetadata;
    bytes redeemerMetadata;
}

struct SnowconeTokenAmount {
  address token;
  uint256 value;
  uint256 decimals;
  uint256 currency;
}

```

The `msg.sender` to the delegate will be the payment terminal that facilitated the redemption.

In payment terminals based on the SnowconePayoutRedemptionPaymentTerminal3\_1\_1, such as SnowconeETHPaymentTerminal3\_1\_1's and SnowconeERC20PaymentTerminal3\_1\_1's, the redemption delegate hook gets called before the reclaimed amount is sent to the redemption beneficiary, but after all internal accounting has been updated. View the docs.

Ensure to only allow trusted contracts to access the `didRedeem(...)` transaction.

**Attaching**

New delegate contracts should be deployed independently. Once deployed, its address can be returned from a data source hook.
