tycho-execution 0.302.5

Provides tools for encoding and executing swaps against Tycho router and protocol executors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.26;

/**
 * @title FeeStructs
 * @notice Shared fee-related data structures used across the protocol
 */

struct FeeRecipient {
    address recipient;
    uint256 feeAmount;
}