// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.0;
/// @title A user's agent contract created by the router
/// @notice A proxy for delegating calls to the immutable agent implementation contract
contract Agent {
address internal immutable _implementation;
/// @dev Create an initialized agent
constructor(address implementation) {
_implementation = implementation;
(bool ok, ) = implementation.delegatecall(abi.encodeWithSignature('initialize()'));
require(ok);
}
receive() external payable {}
/// @notice Delegate all function calls to `_implementation`
fallback() external payable {
_delegate(_implementation);
}
/// @notice Delegate the call to `_implementation`
/// @dev Referenced from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.8.1/contracts/proxy/Proxy.sol#L22
/// @param implementation The address of the implementation contract that this agent delegates calls to
function _delegate(address implementation) internal {
assembly {
// Copy msg.data. We take full control of memory in this inline assembly
// block because it will not return to Solidity code. We overwrite the
// Solidity scratch pad at memory position 0.
calldatacopy(0, 0, calldatasize())
// Call the implementation.
// out and outsize are 0 because we don't know the size yet.
let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)
// Copy the returned data.
returndatacopy(0, 0, returndatasize())
switch result
// delegatecall returns 0 on error.
case 0 {
revert(0, returndatasize())
}
default {
return(0, returndatasize())
}
}
}
}
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.0;
import {SafeCast} from 'lib/openzeppelin-contracts/contracts/utils/math/SafeCast.sol';
import {SafeERC20, IERC20, Address} from 'lib/openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol';
import {ERC721Holder} from 'lib/openzeppelin-contracts/contracts/token/ERC721/utils/ERC721Holder.sol';
import {ERC1155Holder} from 'lib/openzeppelin-contracts/contracts/token/ERC1155/utils/ERC1155Holder.sol';
import {IAllowanceTransfer} from 'lib/permit2/src/interfaces/IAllowanceTransfer.sol';
import {IAgent} from './interfaces/IAgent.sol';
import {DataType} from './libraries/DataType.sol';
import {IRouter} from './interfaces/IRouter.sol';
import {IWrappedNative} from './interfaces/IWrappedNative.sol';
import {ApproveHelper} from './libraries/ApproveHelper.sol';
import {FeeLibrary} from './libraries/FeeLibrary.sol';
import {CallbackLibrary} from './libraries/CallbackLibrary.sol';
/// @title Agent implementation contract
/// @notice Delegated by all users' agents
contract AgentImplementation is IAgent, ERC721Holder, ERC1155Holder {
using SafeCast for uint256;
using SafeERC20 for IERC20;
using Address for address;
using Address for address payable;
using FeeLibrary for DataType.Fee;
using CallbackLibrary for bytes32;
/// @dev Flag for identifying the fee source used only for event
bytes32 internal constant _PERMIT_FEE_META_DATA = bytes32(bytes('permit2:pull-token'));
bytes32 internal constant _NATIVE_FEE_META_DATA = bytes32(bytes('native-token'));
/// @dev Flag for identifying the native address such as ETH on Ethereum
address internal constant _NATIVE = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
/// @dev Denominator for calculating basis points
uint256 internal constant _BPS_BASE = 10_000;
/// @dev Flag for identifying when basis points calculation is not applied
uint256 internal constant _BPS_NOT_USED = 0;
/// @dev Dust for evaluating token returns
uint256 internal constant _DUST = 10;
/// @dev Flag for identifying no replacement of the amount by setting the most significant bit to 1 (1<<255)
uint256 internal constant _OFFSET_NOT_USED = 0x8000000000000000000000000000000000000000000000000000000000000000;
/// @notice Immutable address for recording the router address
address public immutable router;
/// @notice Immutable address for recording wrapped native address such as WETH on Ethereum
address public immutable wrappedNative;
/// @notice Immutable address for recording permit2 address
address public immutable permit2;
/// @dev Transient packed address and flag for recording a valid callback and a charge fee flag
bytes32 internal _callbackWithCharge;
/// @dev Create the agent implementation contract
constructor(address wrappedNative_, address permit2_) {
router = msg.sender;
wrappedNative = wrappedNative_;
permit2 = permit2_;
}
/// @notice Initialize user's agent and can only be called once.
function initialize() external {
if (_callbackWithCharge.isInitialized()) revert Initialized();
_callbackWithCharge = CallbackLibrary.INIT_CALLBACK_WITH_CHARGE;
}
/// @notice Execute arbitrary logics and is only callable by the router. Charge fee during the execution of
/// msg.value, permit2 and flash loans.
/// @dev The router is designed to prevent reentrancy so additional prevention is not needed here
/// @param permit2Datas Array of datas to be processed through permit2 contract
/// @param logics Array of logics to be executed
/// @param tokensReturn Array of ERC-20 tokens to be returned to the current user
function execute(
bytes[] calldata permit2Datas,
DataType.Logic[] calldata logics,
address[] calldata tokensReturn
) external payable {
if (msg.sender != router) revert NotRouter();
_doPermit2(permit2Datas, true);
_chargeByMsgValue();
_executeLogics(logics, true);
_returnTokens(tokensReturn);
}
/// @notice Execute arbitrary logics and is only callable by the router using a signer's signature
/// @dev The router is designed to prevent reentrancy so additional prevention is not needed here
/// @param logics Array of logics to be executed
/// @param permit2Datas Array of datas to be processed through permit2 contract
/// @param fees Array of fees
/// @param referrals Array of referral to be applied when charging fees
/// @param tokensReturn Array of ERC-20 tokens to be returned to the current user
function executeWithSignerFee(
bytes[] calldata permit2Datas,
DataType.Logic[] calldata logics,
DataType.Fee[] calldata fees,
bytes32[] calldata referrals,
address[] calldata tokensReturn
) external payable {
if (msg.sender != router) revert NotRouter();
_doPermit2(permit2Datas, false);
for (uint256 i; i < referrals.length; ) {
_charge(fees, referrals[i], false);
unchecked {
++i;
}
}
_executeLogics(logics, false);
_returnTokens(tokensReturn);
}
/// @notice Execute arbitrary logics and is only callable by a valid callback.
/// @dev A valid callback address is set during `_executeLogics` and reset here
/// @param logics Array of logics to be executed
function executeByCallback(DataType.Logic[] calldata logics) external payable {
bytes32 callbackWithCharge = _callbackWithCharge;
// Revert if msg.sender is not equal to the callback address
if (!callbackWithCharge.isCallback(msg.sender)) revert NotCallback();
// Reset immediately to prevent reentrancy
// If reentrancy is not blocked, an attacker could manipulate the callback contract to compel agent to execute
// malicious logic, such as transferring funds from agents and users.
_callbackWithCharge = CallbackLibrary.INIT_CALLBACK_WITH_CHARGE;
// Execute logics with the charge fee flag
_executeLogics(logics, callbackWithCharge.isCharging());
}
/// @notice Return current fee charging status when calling
function isCharging() external view returns (bool) {
return _callbackWithCharge.isCharging();
}
function _doPermit2(bytes[] calldata permit2Datas, bool shouldCharge) internal {
for (uint256 i; i < permit2Datas.length; ) {
bytes calldata permit2Data = permit2Datas[i];
bytes4 selector = bytes4(permit2Data[:4]);
if (selector == 0x36c78516) {
// transferFrom(address,address,uint160,address)
permit2.functionCall(permit2Data, 'ERROR_PERMIT2_TF');
if (shouldCharge) {
uint256 feeRate = IRouter(router).feeRate();
(, , uint160 amount, address token) = abi.decode(
permit2Data[4:],
(address, address, uint160, address)
);
DataType.Fee[] memory fees = new DataType.Fee[](1);
fees[0] = FeeLibrary.getFee(token, amount, feeRate, _PERMIT_FEE_META_DATA);
_charge(fees, IRouter(router).defaultReferral(), true);
}
} else if (selector == 0x0d58b1db) {
// transferFrom((address,address,uint160,address)[])
permit2.functionCall(permit2Data, 'ERROR_PERMIT2_TF');
if (shouldCharge) {
uint256 feeRate = IRouter(router).feeRate();
IAllowanceTransfer.AllowanceTransferDetails[] memory details = abi.decode(
permit2Data[4:],
(IAllowanceTransfer.AllowanceTransferDetails[])
);
uint256 detailsLength = details.length;
DataType.Fee[] memory fees = new DataType.Fee[](detailsLength);
for (uint256 j; j < detailsLength; ) {
IAllowanceTransfer.AllowanceTransferDetails memory detail = details[j];
fees[j] = FeeLibrary.getFee(detail.token, detail.amount, feeRate, _PERMIT_FEE_META_DATA);
unchecked {
++j;
}
}
_charge(fees, IRouter(router).defaultReferral(), true);
}
} else if (selector == 0x2b67b570 || selector == 0x2a2d80d1) {
// permit(address,((address,uint160,uint48,uint48),address,uint256),bytes)
// permit(address,((address,uint160,uint48,uint48)[],address,uint256),bytes)
permit2.functionCall(permit2Data, 'ERROR_PERMIT2_P');
} else {
revert InvalidPermit2Data(selector);
}
unchecked {
++i;
}
}
}
function _executeLogics(DataType.Logic[] calldata logics, bool chargeOnCallback) internal {
// Execute each logic
uint256 logicsLength = logics.length;
for (uint256 i; i < logicsLength; ) {
address to = logics[i].to;
bytes memory data = logics[i].data;
DataType.Input[] calldata inputs = logics[i].inputs;
DataType.WrapMode wrapMode = logics[i].wrapMode;
address approveTo = logics[i].approveTo;
// Default `approveTo` is same as `to` unless `approveTo` is set
if (approveTo == address(0)) {
approveTo = to;
}
// Execute each input if need to modify the amount or do approve
uint256 value;
uint256 wrappedAmount;
uint256 inputsLength = inputs.length;
for (uint256 j; j < inputsLength; ) {
address token = inputs[j].token;
uint256 balanceBps = inputs[j].balanceBps;
// Calculate native or token amount
// 1. if balanceBps is `_BPS_NOT_USED`, then `amountOrOffset` is interpreted directly as the amount.
// 2. if balanceBps isn't `_BPS_NOT_USED`, then the amount is calculated by the balance with bps
uint256 amount;
if (balanceBps == _BPS_NOT_USED) {
amount = inputs[j].amountOrOffset;
} else {
if (balanceBps > _BPS_BASE) revert InvalidBps();
if (token == wrappedNative && wrapMode == DataType.WrapMode.WRAP_BEFORE) {
// Use the native balance for amount calculation as wrap will be executed later
amount = (address(this).balance * balanceBps) / _BPS_BASE;
} else {
amount = (_getBalance(token) * balanceBps) / _BPS_BASE;
}
// Check if the calculated amount should replace the data at the offset. For most protocols that use
// `msg.value` to pass the native amount, use `_OFFSET_NOT_USED` to indicate no replacement.
uint256 offset = inputs[j].amountOrOffset;
if (offset != _OFFSET_NOT_USED) {
if (offset + 0x24 > data.length) revert InvalidOffset(); // 0x24 = 0x4(selector) + 0x20(amount)
assembly {
let loc := add(add(data, 0x24), offset) // 0x24 = 0x20(data_length) + 0x4(selector)
mstore(loc, amount)
}
}
emit AmountReplaced(i, j, amount);
}
if (token == wrappedNative && wrapMode == DataType.WrapMode.WRAP_BEFORE) {
// Use += to accumulate amounts with multiple WRAP_BEFORE, although such cases are rare
wrappedAmount += amount;
}
if (token == _NATIVE) {
value += amount;
} else if (token != approveTo) {
ApproveHelper.approveMax(token, approveTo, amount);
}
unchecked {
++j;
}
}
if (wrapMode == DataType.WrapMode.WRAP_BEFORE) {
// Wrap native before the call
IWrappedNative(wrappedNative).deposit{value: wrappedAmount}();
} else if (wrapMode == DataType.WrapMode.UNWRAP_AFTER) {
// Or store the before wrapped native amount for calculation after the call
wrappedAmount = _getBalance(wrappedNative);
}
// Set callback who should enter one-time `executeByCallback`
if (logics[i].callback != address(0)) {
_callbackWithCharge = CallbackLibrary.getFlag(logics[i].callback, chargeOnCallback);
}
// Execute and send native
if (data.length == 0) {
payable(to).sendValue(value);
} else {
to.functionCallWithValue(data, value, 'ERROR_ROUTER_EXECUTE');
}
// Revert if the previous call didn't enter `executeByCallback`
if (!_callbackWithCharge.isReset()) revert UnresetCallbackWithCharge();
// Unwrap to native after the call
if (wrapMode == DataType.WrapMode.UNWRAP_AFTER) {
IWrappedNative(wrappedNative).withdraw(_getBalance(wrappedNative) - wrappedAmount);
}
unchecked {
++i;
}
}
}
function _chargeByMsgValue() internal {
if (msg.value == 0) return;
uint256 feeRate = IRouter(router).feeRate();
bytes32 defaultReferral = IRouter(router).defaultReferral();
DataType.Fee memory fee = FeeLibrary.getFee(_NATIVE, msg.value, feeRate, _NATIVE_FEE_META_DATA);
fee.pay(defaultReferral);
}
function _charge(DataType.Fee[] memory fees, bytes32 referral, bool payFromAgent) internal {
uint256 length = fees.length;
if (length == 0) return;
for (uint256 i; i < length; ) {
address token = fees[i].token;
if (token == _NATIVE || payFromAgent) {
fees[i].pay(referral);
} else {
fees[i].payFrom(IRouter(router).currentUser(), referral, permit2);
}
unchecked {
++i;
}
}
}
function _returnTokens(address[] calldata tokensReturn) internal {
// Return tokens to the current user if any balance
uint256 tokensReturnLength = tokensReturn.length;
if (tokensReturnLength > 0) {
address user = IRouter(router).currentUser();
for (uint256 i; i < tokensReturnLength; ) {
address token = tokensReturn[i];
if (token == _NATIVE) {
if (address(this).balance > 0) {
payable(user).sendValue(address(this).balance);
}
} else {
uint256 balance = IERC20(token).balanceOf(address(this));
if (balance > _DUST) {
IERC20(token).safeTransfer(user, balance);
}
}
unchecked {
++i;
}
}
}
}
function _getBalance(address token) internal view returns (uint256 balance) {
if (token == _NATIVE) {
balance = address(this).balance;
} else {
balance = IERC20(token).balanceOf(address(this));
}
}
}
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.0;
interface IERC20Usdt {
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external;
}
/// @title Approve helper
/// @notice Contains helper methods for interacting with ERC20 tokens that have inconsistent implementation
library ApproveHelper {
function approveMax(address token, address to, uint256 amount) internal {
if (IERC20Usdt(token).allowance(address(this), to) < amount) {
try IERC20Usdt(token).approve(to, type(uint256).max) {} catch {
IERC20Usdt(token).approve(to, 0);
IERC20Usdt(token).approve(to, type(uint256).max);
}
}
}
}
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.0;
library CallbackLibrary {
/// @dev Flag for identifying the initialized state and reducing gas cost when resetting `_callbackWithCharge`
bytes32 internal constant INIT_CALLBACK_WITH_CHARGE = bytes32(bytes20(address(1)));
/// @dev Flag for identifying whether to charge fee determined by the least significant bit of `_callbackWithCharge`
bytes32 internal constant CHARGE_MASK = bytes32(uint256(1));
function isCharging(bytes32 flag) internal pure returns (bool) {
return (flag & CHARGE_MASK) != bytes32(0);
}
function isInitialized(bytes32 flag) internal pure returns (bool) {
return flag != bytes32(0);
}
function isReset(bytes32 flag) internal pure returns (bool) {
return flag == INIT_CALLBACK_WITH_CHARGE;
}
function isCallback(bytes32 flag, address caller) internal pure returns (bool) {
return caller == address(bytes20(flag));
}
function getFlag(address callback, bool charge) internal pure returns (bytes32 flag) {
if (charge) {
flag = bytes32(bytes20(callback)) | CHARGE_MASK;
} else {
flag = bytes32(bytes20(callback));
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.0;
library DataType {
/// @notice The way to handle native during execution
enum WrapMode {
NONE, // No wrapping or unwrapping of native
WRAP_BEFORE, // Wrap native before calling `Logic.to`
UNWRAP_AFTER // Unwrap native after calling `Logic.to`
}
/// @notice A single input for token amount calculation and approval
struct Input {
address token; // Token address
uint256 balanceBps; // Basis points for calculating the amount, set 0 to use amountOrOffset as amount
uint256 amountOrOffset; // Read as amount if balanceBps is 0; otherwise, read as byte offset of amount in `Logic.data` for replacement, or set 1 << 255 for no replacement
}
/// @notice A single action to be executed
struct Logic {
address to; // The target address for the execution
bytes data; // Encoded function calldata
Input[] inputs; // An array of `Input` structs for amount calculation and token approval
WrapMode wrapMode; // Determines if wrap or unwrap native
address approveTo; // The address to approve tokens for if different from `to` such as a spender contract
address callback; // The address allowed to make a one-time call to the agent
}
/// @notice A series of logics to be executed. This data is signed by user when performing a delegated execution by signature.
struct ExecutionDetails {
bytes[] permit2Datas; // An array of databytes to be executed on permit2
Logic[] logics; // An array of `Logic` structs to be executed
address[] tokensReturn; // An array of token addresses to be returned to user
uint256 nonce; // The nonce of the data to be applied in the user signing process
uint256 deadline; // The deadline of the signature
}
/// @notice The fee to be charged
struct Fee {
address token; // The token address
uint256 amount; // The fee amount
bytes32 metadata; // Metadata related to the fee
}
/// @notice A series of logics including fee. This data is signed by signer when applying signer fee.
struct LogicBatch {
Logic[] logics; // An array of `Logic` structs to be executed
Fee[] fees; // An array of `Fee` structs to be charged
bytes32[] referrals; // An array of referrals to be applied when charging fees
uint256 deadline; // The deadline for a signer's signature
}
/// @notice A series of logics including fee to be executed. This data is signed by user when performing a delegated execution by signature.
struct ExecutionBatchDetails {
bytes[] permit2Datas; // An array of databytes to be executed on permit2
LogicBatch logicBatch; // The `LogicBatch` data to be executed
address[] tokensReturn; // An array of token addresses to be returned to user
uint256 nonce; // The nonce of the data to be applied in the user signing process
uint256 deadline; // The deadline of the signature
}
/// @notice Delegation details of a delegatee approval to execute on a user's behalf
struct DelegationDetails {
address delegatee; // The delegatee to be approved
uint128 expiry; // The expiry of the approval
uint128 nonce; // The nonce of the data to be applied in the user signing process
uint256 deadline; // The deadline of the signature
}
/// @notice The delegation information to be saved in storage
struct PackedDelegation {
uint128 expiry; // The expiry of the approval
uint128 nonce; // The nonce of the delegator
}
}
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.0;
import {DataType} from '../libraries/DataType.sol';
library Delegation {
/// @notice Set the expiry and nonce of the delegatee.
function updateAll(DataType.PackedDelegation storage delegated, uint128 expiry, uint128 nonce) internal {
uint256 word;
unchecked {
word = _pack(expiry, nonce + 1);
}
assembly {
sstore(delegated.slot, word)
}
}
function _pack(uint128 expiry, uint128 nonce) private pure returns (uint256 word) {
word = (uint256(nonce) << 128) | expiry;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.0;
import "../Strings.sol";
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV // Deprecated in v4.8
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} else if (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
} else if (error == RecoverError.InvalidSignatureS) {
revert("ECDSA: invalid signature 's' value");
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature` or error string. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
/// @solidity memory-safe-assembly
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else {
return (address(0), RecoverError.InvalidSignatureLength);
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, signature);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*
* _Available since v4.3._
*/
function tryRecover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address, RecoverError) {
bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
uint8 v = uint8((uint256(vs) >> 255) + 27);
return tryRecover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*
* _Available since v4.2._
*/
function recover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, r, vs);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*
* _Available since v4.3._
*/
function tryRecover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address, RecoverError) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature);
}
return (signer, RecoverError.NoError);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, v, r, s);
_throwError(error);
return recovered;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
}
/**
* @dev Returns an Ethereum Signed Message, created from `s`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
}
/**
* @dev Returns an Ethereum Signed Typed Data, created from a
* `domainSeparator` and a `structHash`. This produces hash corresponding
* to the one signed with the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
* JSON-RPC method as part of EIP-712.
*
* See {recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/EIP712.sol)
pragma solidity ^0.8.0;
import "./ECDSA.sol";
/**
* @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
*
* The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
* thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
* they need in their contracts using a combination of `abi.encode` and `keccak256`.
*
* This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
* ({_hashTypedDataV4}).
*
* The implementation of the domain separator was designed to be as efficient as possible while still properly updating
* the chain id to protect against replay attacks on an eventual fork of the chain.
*
* NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
*
* _Available since v3.4._
*/
abstract contract EIP712 {
/* solhint-disable var-name-mixedcase */
// Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
// invalidate the cached domain separator if the chain id changes.
bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
uint256 private immutable _CACHED_CHAIN_ID;
address private immutable _CACHED_THIS;
bytes32 private immutable _HASHED_NAME;
bytes32 private immutable _HASHED_VERSION;
bytes32 private immutable _TYPE_HASH;
/* solhint-enable var-name-mixedcase */
/**
* @dev Initializes the domain separator and parameter caches.
*
* The meaning of `name` and `version` is specified in
* https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
*
* - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
* - `version`: the current major version of the signing domain.
*
* NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
* contract upgrade].
*/
constructor(string memory name, string memory version) {
bytes32 hashedName = keccak256(bytes(name));
bytes32 hashedVersion = keccak256(bytes(version));
bytes32 typeHash = keccak256(
"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
);
_HASHED_NAME = hashedName;
_HASHED_VERSION = hashedVersion;
_CACHED_CHAIN_ID = block.chainid;
_CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
_CACHED_THIS = address(this);
_TYPE_HASH = typeHash;
}
/**
* @dev Returns the domain separator for the current chain.
*/
function _domainSeparatorV4() internal view returns (bytes32) {
if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
return _CACHED_DOMAIN_SEPARATOR;
} else {
return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
}
}
function _buildDomainSeparator(
bytes32 typeHash,
bytes32 nameHash,
bytes32 versionHash
) private view returns (bytes32) {
return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
}
/**
* @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
* function returns the hash of the fully encoded EIP712 message for this domain.
*
* This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
*
* ```solidity
* bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
* keccak256("Mail(address to,string contents)"),
* mailTo,
* keccak256(bytes(mailContents))
* )));
* address signer = ECDSA.recover(digest, signature);
* ```
*/
function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/utils/ERC1155Holder.sol)
pragma solidity ^0.8.0;
import "./ERC1155Receiver.sol";
/**
* Simple implementation of `ERC1155Receiver` that will allow a contract to hold ERC1155 tokens.
*
* IMPORTANT: When inheriting this contract, you must include a way to use the received tokens, otherwise they will be
* stuck.
*
* @dev _Available since v3.1._
*/
contract ERC1155Holder is ERC1155Receiver {
function onERC1155Received(
address,
address,
uint256,
uint256,
bytes memory
) public virtual override returns (bytes4) {
return this.onERC1155Received.selector;
}
function onERC1155BatchReceived(
address,
address,
uint256[] memory,
uint256[] memory,
bytes memory
) public virtual override returns (bytes4) {
return this.onERC1155BatchReceived.selector;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/utils/ERC1155Receiver.sol)
pragma solidity ^0.8.0;
import "../IERC1155Receiver.sol";
import "../../../utils/introspection/ERC165.sol";
/**
* @dev _Available since v3.1._
*/
abstract contract ERC1155Receiver is ERC165, IERC1155Receiver {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/utils/ERC721Holder.sol)
pragma solidity ^0.8.0;
import "../IERC721Receiver.sol";
/**
* @dev Implementation of the {IERC721Receiver} interface.
*
* Accepts all token transfers.
* Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.
*/
contract ERC721Holder is IERC721Receiver {
/**
* @dev See {IERC721Receiver-onERC721Received}.
*
* Always returns `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address,
address,
uint256,
bytes memory
) public virtual override returns (bytes4) {
return this.onERC721Received.selector;
}
}
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.0;
import {SafeCast} from 'lib/openzeppelin-contracts/contracts/utils/math/SafeCast.sol';
import {SafeERC20, IERC20, Address} from 'lib/openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol';
import {IAllowanceTransfer} from 'lib/permit2/src/interfaces/IAllowanceTransfer.sol';
import {DataType} from './DataType.sol';
library FeeLibrary {
using Address for address payable;
using SafeCast for uint256;
using SafeERC20 for IERC20;
address internal constant NATIVE = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
uint256 internal constant BPS_BASE = 10_000;
event Charged(address indexed token, uint256 amount, address indexed collector, bytes32 metadata);
function pay(DataType.Fee memory fee, bytes32 referral) internal {
uint256 amount = fee.amount;
if (amount == 0) return;
address token = fee.token;
(address collector, uint256 rate) = _parse(referral);
if (rate != BPS_BASE) amount = (amount * rate) / BPS_BASE;
if (token == NATIVE) {
payable(collector).sendValue(amount);
} else {
IERC20(token).safeTransfer(collector, amount);
}
emit Charged(token, amount, collector, fee.metadata);
}
function payFrom(DataType.Fee memory fee, address from, bytes32 referral, address permit2) internal {
uint256 amount = fee.amount;
if (amount == 0) return;
address token = fee.token;
(address collector, uint256 rate) = _parse(referral);
if (rate != BPS_BASE) amount = (amount * rate) / BPS_BASE;
IAllowanceTransfer(permit2).transferFrom(from, collector, amount.toUint160(), token);
emit Charged(token, amount, collector, fee.metadata);
}
function getFee(
address token,
uint256 amountWithFee,
uint256 feeRate,
bytes32 metadata
) internal pure returns (DataType.Fee memory) {
return DataType.Fee(token, calcFeeFromAmountWithFee(amountWithFee, feeRate), metadata);
}
function calcFee(
address token,
uint256 amount,
uint256 feeRate,
bytes32 metadata
) internal pure returns (DataType.Fee memory) {
return DataType.Fee(token, calcFeeFromAmount(amount, feeRate), metadata);
}
function calcFeeFromAmountWithFee(uint256 amountWithFee, uint256 feeRate) internal pure returns (uint256) {
return (amountWithFee * feeRate) / (BPS_BASE + feeRate);
}
function calcFeeFromAmount(uint256 amount, uint256 feeRate) internal pure returns (uint256) {
return (amount * feeRate) / (BPS_BASE);
}
function calcAmountWithFee(uint256 amount, uint256 feeRate) internal pure returns (uint256) {
return (amount * (BPS_BASE + feeRate)) / BPS_BASE;
}
function _parse(bytes32 referral) private pure returns (address, uint256) {
return (address(bytes20(referral)), uint256(uint16(uint256(referral))));
}
}
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.0;
import {DataType} from '../libraries/DataType.sol';
interface IAgent {
event AmountReplaced(uint256 i, uint256 j, uint256 amount);
event Charged(address indexed token, uint256 amount, address indexed collector, bytes32 metadata);
error Initialized();
error NotRouter();
error NotCallback();
error InvalidBps();
error InvalidOffset();
error UnresetCallbackWithCharge();
error InvalidPermit2Data(bytes4 selector);
function isCharging() external view returns (bool);
function router() external returns (address);
function wrappedNative() external returns (address);
function permit2() external returns (address);
function initialize() external;
function execute(
bytes[] calldata permit2Datas,
DataType.Logic[] calldata logics,
address[] calldata tokensReturn
) external payable;
function executeWithSignerFee(
bytes[] calldata permit2Datas,
DataType.Logic[] calldata logics,
DataType.Fee[] calldata fees,
bytes32[] calldata referrals,
address[] calldata tokensReturn
) external payable;
function executeByCallback(DataType.Logic[] calldata logics) external payable;
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
/// @title AllowanceTransfer
/// @notice Handles ERC20 token permissions through signature based allowance setting and ERC20 token transfers by checking allowed amounts
/// @dev Requires user's token approval on the Permit2 contract
interface IAllowanceTransfer {
/// @notice Thrown when an allowance on a token has expired.
/// @param deadline The timestamp at which the allowed amount is no longer valid
error AllowanceExpired(uint256 deadline);
/// @notice Thrown when an allowance on a token has been depleted.
/// @param amount The maximum amount allowed
error InsufficientAllowance(uint256 amount);
/// @notice Thrown when too many nonces are invalidated.
error ExcessiveInvalidation();
/// @notice Emits an event when the owner successfully invalidates an ordered nonce.
event NonceInvalidation(
address indexed owner, address indexed token, address indexed spender, uint48 newNonce, uint48 oldNonce
);
/// @notice Emits an event when the owner successfully sets permissions on a token for the spender.
event Approval(
address indexed owner, address indexed token, address indexed spender, uint160 amount, uint48 expiration
);
/// @notice Emits an event when the owner successfully sets permissions using a permit signature on a token for the spender.
event Permit(
address indexed owner,
address indexed token,
address indexed spender,
uint160 amount,
uint48 expiration,
uint48 nonce
);
/// @notice Emits an event when the owner sets the allowance back to 0 with the lockdown function.
event Lockdown(address indexed owner, address token, address spender);
/// @notice The permit data for a token
struct PermitDetails {
// ERC20 token address
address token;
// the maximum amount allowed to spend
uint160 amount;
// timestamp at which a spender's token allowances become invalid
uint48 expiration;
// an incrementing value indexed per owner,token,and spender for each signature
uint48 nonce;
}
/// @notice The permit message signed for a single token allownce
struct PermitSingle {
// the permit data for a single token alownce
PermitDetails details;
// address permissioned on the allowed tokens
address spender;
// deadline on the permit signature
uint256 sigDeadline;
}
/// @notice The permit message signed for multiple token allowances
struct PermitBatch {
// the permit data for multiple token allowances
PermitDetails[] details;
// address permissioned on the allowed tokens
address spender;
// deadline on the permit signature
uint256 sigDeadline;
}
/// @notice The saved permissions
/// @dev This info is saved per owner, per token, per spender and all signed over in the permit message
/// @dev Setting amount to type(uint160).max sets an unlimited approval
struct PackedAllowance {
// amount allowed
uint160 amount;
// permission expiry
uint48 expiration;
// an incrementing value indexed per owner,token,and spender for each signature
uint48 nonce;
}
/// @notice A token spender pair.
struct TokenSpenderPair {
// the token the spender is approved
address token;
// the spender address
address spender;
}
/// @notice Details for a token transfer.
struct AllowanceTransferDetails {
// the owner of the token
address from;
// the recipient of the token
address to;
// the amount of the token
uint160 amount;
// the token to be transferred
address token;
}
/// @notice A mapping from owner address to token address to spender address to PackedAllowance struct, which contains details and conditions of the approval.
/// @notice The mapping is indexed in the above order see: allowance[ownerAddress][tokenAddress][spenderAddress]
/// @dev The packed slot holds the allowed amount, expiration at which the allowed amount is no longer valid, and current nonce thats updated on any signature based approvals.
function allowance(address, address, address) external view returns (uint160, uint48, uint48);
/// @notice Approves the spender to use up to amount of the specified token up until the expiration
/// @param token The token to approve
/// @param spender The spender address to approve
/// @param amount The approved amount of the token
/// @param expiration The timestamp at which the approval is no longer valid
/// @dev The packed allowance also holds a nonce, which will stay unchanged in approve
/// @dev Setting amount to type(uint160).max sets an unlimited approval
function approve(address token, address spender, uint160 amount, uint48 expiration) external;
/// @notice Permit a spender to a given amount of the owners token via the owner's EIP-712 signature
/// @dev May fail if the owner's nonce was invalidated in-flight by invalidateNonce
/// @param owner The owner of the tokens being approved
/// @param permitSingle Data signed over by the owner specifying the terms of approval
/// @param signature The owner's signature over the permit data
function permit(address owner, PermitSingle memory permitSingle, bytes calldata signature) external;
/// @notice Permit a spender to the signed amounts of the owners tokens via the owner's EIP-712 signature
/// @dev May fail if the owner's nonce was invalidated in-flight by invalidateNonce
/// @param owner The owner of the tokens being approved
/// @param permitBatch Data signed over by the owner specifying the terms of approval
/// @param signature The owner's signature over the permit data
function permit(address owner, PermitBatch memory permitBatch, bytes calldata signature) external;
/// @notice Transfer approved tokens from one address to another
/// @param from The address to transfer from
/// @param to The address of the recipient
/// @param amount The amount of the token to transfer
/// @param token The token address to transfer
/// @dev Requires the from address to have approved at least the desired amount
/// of tokens to msg.sender.
function transferFrom(address from, address to, uint160 amount, address token) external;
/// @notice Transfer approved tokens in a batch
/// @param transferDetails Array of owners, recipients, amounts, and tokens for the transfers
/// @dev Requires the from addresses to have approved at least the desired amount
/// of tokens to msg.sender.
function transferFrom(AllowanceTransferDetails[] calldata transferDetails) external;
/// @notice Enables performing a "lockdown" of the sender's Permit2 identity
/// by batch revoking approvals
/// @param approvals Array of approvals to revoke.
function lockdown(TokenSpenderPair[] calldata approvals) external;
/// @notice Invalidate nonces for a given (token, spender) pair
/// @param token The token to invalidate nonces for
/// @param spender The spender to invalidate nonces for
/// @param newNonce The new nonce to set. Invalidates all nonces less than it.
/// @dev Can't invalidate more than 2**16 nonces per transaction.
function invalidateNonces(address token, address spender, uint48 newNonce) external;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev _Available since v3.1._
*/
interface IERC1155Receiver is IERC165 {
/**
* @dev Handles the receipt of a single ERC1155 token type. This function is
* called at the end of a `safeTransferFrom` after the balance has been updated.
*
* NOTE: To accept the transfer, this must return
* `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
* (i.e. 0xf23a6e61, or its own function selector).
*
* @param operator The address which initiated the transfer (i.e. msg.sender)
* @param from The address which previously owned the token
* @param id The ID of the token being transferred
* @param value The amount of tokens being transferred
* @param data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
*/
function onERC1155Received(
address operator,
address from,
uint256 id,
uint256 value,
bytes calldata data
) external returns (bytes4);
/**
* @dev Handles the receipt of a multiple ERC1155 token types. This function
* is called at the end of a `safeBatchTransferFrom` after the balances have
* been updated.
*
* NOTE: To accept the transfer(s), this must return
* `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
* (i.e. 0xbc197c81, or its own function selector).
*
* @param operator The address which initiated the batch transfer (i.e. msg.sender)
* @param from The address which previously owned the token
* @param ids An array containing ids of each token being transferred (order and length must match values array)
* @param values An array containing amounts of each token being transferred (order and length must match ids array)
* @param data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
*/
function onERC1155BatchReceived(
address operator,
address from,
uint256[] calldata ids,
uint256[] calldata values,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC1271.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC1271 standard signature validation method for
* contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].
*
* _Available since v4.1._
*/
interface IERC1271 {
/**
* @dev Should return whether the signature provided is valid for the provided data
* @param hash Hash of the data to be signed
* @param signature Signature byte array associated with _data
*/
function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.0;
import {IAgent} from './IAgent.sol';
import {DataType} from '../libraries/DataType.sol';
interface IRouter {
event SignerAdded(address indexed signer);
event SignerRemoved(address indexed signer);
event Delegated(address indexed delegator, address indexed delegatee, uint128 expiry);
event FeeCollectorSet(address indexed feeCollector_);
event PauserSet(address indexed pauser);
event Paused();
event Unpaused();
event Executed(address indexed user, address indexed agent);
event AgentCreated(address indexed agent, address indexed user);
event DelegationNonceInvalidation(
address indexed user,
address indexed delegatee,
uint128 newNonce,
uint128 oldNonce
);
event ExecutionNonceInvalidation(address indexed user, uint256 newNonce, uint256 oldNonce);
event FeeRateSet(uint256 feeRate_);
error NotReady();
error InvalidPauser();
error AlreadyPaused();
error NotPaused();
error InvalidFeeCollector();
error InvalidNewPauser();
error SignatureExpired(uint256 deadline);
error InvalidSigner(address signer);
error InvalidSignature();
error InvalidDelegatee();
error InvalidNonce();
error InvalidRate();
error AgentAlreadyCreated();
error ExcessiveInvalidation();
function agentImplementation() external view returns (address);
function agents(address user) external view returns (IAgent);
function delegations(address user, address delegatee) external view returns (uint128 expiry, uint128 nonce);
function executionNonces(address user) external view returns (uint256 nonce);
function signers(address signer) external view returns (bool);
function currentUser() external view returns (address);
function defaultReferral() external view returns (bytes32);
function defaultCollector() external view returns (address);
function pauser() external view returns (address);
function owner() external view returns (address);
function domainSeparator() external view returns (bytes32);
function getAgent(address user) external view returns (address);
function getCurrentUserAgent() external view returns (address, address);
function feeRate() external view returns (uint256);
function calcAgent(address user) external view returns (address);
function addSigner(address signer) external;
function removeSigner(address signer) external;
function setFeeRate(uint256 feeRate_) external;
function setFeeCollector(address feeCollector_) external;
function setPauser(address pauser_) external;
function rescue(address token, address receiver, uint256 amount) external;
function pause() external;
function unpause() external;
function execute(
bytes[] calldata permit2Datas,
DataType.Logic[] calldata logics,
address[] calldata tokensReturn
) external payable;
function executeFor(
address user,
bytes[] calldata permit2Datas,
DataType.Logic[] calldata logics,
address[] calldata tokensReturn
) external payable;
function executeBySig(
DataType.ExecutionDetails calldata details,
address user,
bytes calldata signature
) external payable;
function executeWithSignerFee(
bytes[] calldata permit2Datas,
DataType.LogicBatch calldata logicBatch,
address signer,
bytes calldata signature,
address[] calldata tokensReturn
) external payable;
function executeForWithSignerFee(
address user,
bytes[] calldata permit2Datas,
DataType.LogicBatch calldata logicBatch,
address signer,
bytes calldata signature,
address[] calldata tokensReturn
) external payable;
function executeBySigWithSignerFee(
DataType.ExecutionBatchDetails calldata details,
address user,
bytes calldata userSignature,
address signer,
bytes calldata signerSignature
) external payable;
function invalidateExecutionNonces(uint256 newNonce) external;
function newAgent() external returns (address);
function newAgent(address user) external returns (address);
function allow(address delegatee, uint128 expiry) external;
function allowBySig(
DataType.DelegationDetails calldata details,
address delegator,
bytes calldata signature
) external;
function disallow(address delegatee) external;
function invalidateDelegationNonces(address delegatee, uint128 newNonce) external;
}
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.0;
interface IWrappedNative {
function deposit() external payable;
function withdraw(uint256 amount) external;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10**64) {
value /= 10**64;
result += 64;
}
if (value >= 10**32) {
value /= 10**32;
result += 32;
}
if (value >= 10**16) {
value /= 10**16;
result += 16;
}
if (value >= 10**8) {
value /= 10**8;
result += 8;
}
if (value >= 10**4) {
value /= 10**4;
result += 4;
}
if (value >= 10**2) {
value /= 10**2;
result += 2;
}
if (value >= 10**1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.0;
import {Ownable} from 'lib/openzeppelin-contracts/contracts/access/Ownable.sol';
import {SafeERC20, IERC20} from 'lib/openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol';
import {EIP712} from 'lib/openzeppelin-contracts/contracts/utils/cryptography/EIP712.sol';
import {SignatureChecker} from 'lib/openzeppelin-contracts/contracts/utils/cryptography/SignatureChecker.sol';
import {IAgent, AgentImplementation} from './AgentImplementation.sol';
import {Agent} from './Agent.sol';
import {DataType} from './libraries/DataType.sol';
import {IRouter} from './interfaces/IRouter.sol';
import {TypedDataHash} from './libraries/TypedDataHash.sol';
import {Delegation} from './libraries/Delegation.sol';
/// @title Entry point for Protocolink
contract Router is IRouter, Ownable, EIP712 {
using SafeERC20 for IERC20;
using TypedDataHash for DataType.LogicBatch;
using TypedDataHash for DataType.ExecutionDetails;
using TypedDataHash for DataType.ExecutionBatchDetails;
using TypedDataHash for DataType.DelegationDetails;
using Delegation for DataType.PackedDelegation;
using SignatureChecker for address;
/// @dev Flag for identifying the paused state used in `currentUser` for reducing cold read gas cost
address internal constant _PAUSED = address(0);
/// @dev Flag for identifying the initialized state and reducing gas cost when resetting `currentUser`
address internal constant _INIT_CURRENT_USER = address(1);
/// @dev Denominator for calculating basis points
uint256 internal constant _BPS_BASE = 10_000;
/// @notice Immutable implementation contract for all users' agents
address public immutable agentImplementation;
/// @notice Mapping for recording exclusive agent contract to each user
mapping(address user => IAgent agent) public agents;
/// @notice Mapping for user with each delegatee and expiry
mapping(address user => mapping(address delegatee => DataType.PackedDelegation delegation)) public delegations;
/// @notice Mapping for user with execution signature nonce
mapping(address user => uint256 nonce) public executionNonces;
/// @notice Mapping for recording valid signers
mapping(address signer => bool valid) public signers;
/// @notice Transient address for recording `msg.sender` which resets to `_INIT_CURRENT_USER` after each execution
address public currentUser;
/// @notice Address for receiving collected fees
bytes32 public defaultReferral;
/// @notice Address for invoking pause
address public pauser;
/// @notice Fee rate
uint256 public feeRate;
/// @dev Modifier for setting transient `currentUser` address and blocking reentrancy.
modifier whenReady(address user) {
if (currentUser != _INIT_CURRENT_USER) revert NotReady();
currentUser = user;
_;
currentUser = _INIT_CURRENT_USER;
}
/// @dev Modifier for checking if a caller has the privilege to pause/unpause this contract
modifier onlyPauser() {
if (msg.sender != pauser) revert InvalidPauser();
_;
}
/// @dev Create the router with EIP-712 and the agent implementation contracts
constructor(address wrappedNative, address permit2, address deployer) EIP712('Protocolink', '1') {
currentUser = _INIT_CURRENT_USER;
agentImplementation = address(new AgentImplementation(wrappedNative, permit2));
transferOwnership(deployer);
}
///////////////////////////////////////////////////////////////////////////////////////
/// Router related
///////////////////////////////////////////////////////////////////////////////////////
/// @notice Pause `execute` and `executeWithSignerFee` by pauser
function pause() external onlyPauser {
if (currentUser == _PAUSED) revert AlreadyPaused();
currentUser = _PAUSED;
emit Paused();
}
/// @notice Unpause `execute` and `executeWithSignerFee` by pauser
function unpause() external onlyPauser {
if (currentUser != _PAUSED) revert NotPaused();
currentUser = _INIT_CURRENT_USER;
emit Unpaused();
}
/// @notice Rescue ERC-20 tokens in case of stuck tokens by owner
/// @param token The token address
/// @param receiver The receiver address
/// @param amount The amount of tokens to be rescued
function rescue(address token, address receiver, uint256 amount) external onlyOwner {
IERC20(token).safeTransfer(receiver, amount);
}
/// @notice Add a signer whose signature can pass the validation in `executeWithSignerFee` by owner
/// @param signer The signer address to be added
function addSigner(address signer) external onlyOwner {
signers[signer] = true;
emit SignerAdded(signer);
}
/// @notice Remove a signer by owner
/// @param signer The signer address to be removed
function removeSigner(address signer) external onlyOwner {
delete signers[signer];
emit SignerRemoved(signer);
}
/// @notice Set a new fee rate by owner
/// @param feeRate_ The new fee rate in basis points
function setFeeRate(uint256 feeRate_) external onlyOwner {
if (feeRate_ >= _BPS_BASE) revert InvalidRate();
feeRate = feeRate_;
emit FeeRateSet(feeRate_);
}
/// @notice Set the fee collector address that collects fees from each user's agent by owner
/// @param feeCollector_ The fee collector address
function setFeeCollector(address feeCollector_) external onlyOwner {
if (feeCollector_ == address(0)) revert InvalidFeeCollector();
defaultReferral = bytes32(bytes20(feeCollector_)) | bytes32(_BPS_BASE);
emit FeeCollectorSet(feeCollector_);
}
/// @notice Set the pauser address that can pause `execute` and `executeWithSignerFee` by owner
/// @param pauser_ The pauser address
function setPauser(address pauser_) external onlyOwner {
if (pauser_ == address(0)) revert InvalidNewPauser();
pauser = pauser_;
emit PauserSet(pauser_);
}
/// @notice Get domain separator used for EIP-712
/// @return The domain separator of Protocolink
function domainSeparator() external view returns (bytes32) {
return _domainSeparatorV4();
}
/// @notice Get the fee collector address that collects fees from each user's agent
/// @return The fee collector address
function defaultCollector() external view returns (address) {
return address(bytes20(defaultReferral));
}
/// @notice Get owner address
/// @return The owner address
function owner() public view override(IRouter, Ownable) returns (address) {
return super.owner();
}
///////////////////////////////////////////////////////////////////////////////////////
/// Agent related
///////////////////////////////////////////////////////////////////////////////////////
/// @notice Create an agent for `msg.sender`
/// @return The newly created agent address
function newAgent() external returns (address) {
return newAgent(msg.sender);
}
/// @notice Create an agent for the user
/// @param user The user address
/// @return The newly created agent address
function newAgent(address user) public returns (address) {
if (address(agents[user]) != address(0)) {
revert AgentAlreadyCreated();
} else {
return _newAgent(user);
}
}
function _newAgent(address user) internal returns (address) {
IAgent agent = IAgent(address(new Agent{salt: bytes32(bytes20(user))}(agentImplementation)));
agents[user] = agent;
emit AgentCreated(address(agent), user);
return address(agent);
}
/// @notice Get agent address of a user
/// @param user The user address
/// @return The agent address of the user
function getAgent(address user) external view returns (address) {
return address(agents[user]);
}
/// @notice Get user and agent addresses of the current user
/// @return The user address
/// @return The agent address
function getCurrentUserAgent() external view returns (address, address) {
address user = currentUser;
return (user, address(agents[user]));
}
/// @notice Calculate agent address for a user using the CREATE2 formula
/// @param user The user address
/// @return The calculated agent address for the user
function calcAgent(address user) external view returns (address) {
address result = address(
uint160(
uint256(
keccak256(
abi.encodePacked(
bytes1(0xff),
address(this),
bytes32(bytes20(user)),
keccak256(abi.encodePacked(type(Agent).creationCode, abi.encode(agentImplementation)))
)
)
)
)
);
return result;
}
///////////////////////////////////////////////////////////////////////////////////////
/// Execution related
///////////////////////////////////////////////////////////////////////////////////////
/// @notice Execute arbitrary logics through the current user's agent. Creates an agent for user if not created.
/// Fees are charged in the user's agent during the execution of msg.value, permit2 and flash loans.
/// @param permit2Datas Array of datas to be processed through permit2 contract
/// @param logics Array of logics to be executed
/// @param tokensReturn Array of ERC-20 tokens to be returned to the current user
function execute(
bytes[] calldata permit2Datas,
DataType.Logic[] calldata logics,
address[] calldata tokensReturn
) external payable whenReady(msg.sender) {
_execute(msg.sender, permit2Datas, logics, tokensReturn);
}
/// @notice Execute arbitrary logics through the given user's agent after the delegation. Creates an agent for user if not created.
/// Fees are charged in the user's agent during the execution of msg.value, permit2 and flash loans.
/// @param user The user address
/// @param permit2Datas Array of datas to be processed through permit2 contract
/// @param logics Array of logics to be executed
/// @param tokensReturn Array of ERC-20 tokens to be returned to the current user
function executeFor(
address user,
bytes[] calldata permit2Datas,
DataType.Logic[] calldata logics,
address[] calldata tokensReturn
) external payable whenReady(user) {
if (!_isValidDelegateeFor(user)) revert InvalidDelegatee();
_execute(user, permit2Datas, logics, tokensReturn);
}
/// @notice Execute permitted execution data through the given user's agent. Creates an agent for user if not created.
/// Fees are charged in the user's agent during the execution of msg.value, permit2 and flash loans.
/// @param details The execution details permitted by user
/// @param user The user address
/// @param signature The user's signature bytes
function executeBySig(
DataType.ExecutionDetails calldata details,
address user,
bytes calldata signature
) external payable whenReady(user) {
_validateExecutionDetails(details, user, signature);
unchecked {
++executionNonces[user];
}
_execute(user, details.permit2Datas, details.logics, details.tokensReturn);
}
/// @notice Execute arbitrary logics through the current user's agent using a signer's signature. Creates an agent
/// for user if not created. Fees in logicBatch are off-chain encoded, rather than calculated in the user's
/// agent.
/// @dev Allow whitelisted signers to use custom fee rules and permit the reuse of the signature until the deadline
/// @param permit2Datas Array of datas to be processed through permit2 contract
/// @param logicBatch A struct containing logics, fees and deadline, signed by a signer using EIP-712
/// @param signer The signer address
/// @param signature The signer's signature bytes
/// @param tokensReturn Array of ERC-20 tokens to be returned to the current user
function executeWithSignerFee(
bytes[] calldata permit2Datas,
DataType.LogicBatch calldata logicBatch,
address signer,
bytes calldata signature,
address[] calldata tokensReturn
) external payable whenReady(msg.sender) {
_validateLogicBatch(logicBatch, signer, signature);
_executeWithSignerFee(msg.sender, permit2Datas, logicBatch, tokensReturn);
}
/// @notice Execute arbitrary logics through the given user's agent using a signer's signature. Creates an agent
/// for user if not created. Fees in logicBatch are off-chain encoded, rather than calculated in the user's
/// agent.
/// @dev Allow whitelisted signers to use custom fee rules and permit the reuse of the signature until the deadline
/// @param user The user address
/// @param permit2Datas Array of datas to be processed through permit2 contract
/// @param logicBatch A struct containing logics, fees and deadline, signed by a signer using EIP-712
/// @param signer The signer address
/// @param signature The signer's signature bytes
/// @param tokensReturn Array of ERC-20 tokens to be returned to the current user
function executeForWithSignerFee(
address user,
bytes[] calldata permit2Datas,
DataType.LogicBatch calldata logicBatch,
address signer,
bytes calldata signature,
address[] calldata tokensReturn
) external payable whenReady(user) {
if (!_isValidDelegateeFor(user)) revert InvalidDelegatee();
_validateLogicBatch(logicBatch, signer, signature);
_executeWithSignerFee(user, permit2Datas, logicBatch, tokensReturn);
}
/// @notice Execute permitted execution data through the given user's agent using a signer's signature. Creates an agent
/// for user if not created. Fees in logicBatch are off-chain encoded, rather than calculated in the user's
/// agent.
/// @param details The execution details permitted by user
/// @param user The user address
/// @param userSignature The user's signature bytes
/// @param signer The signer address
/// @param signerSignature The signer's signature bytes
function executeBySigWithSignerFee(
DataType.ExecutionBatchDetails calldata details,
address user,
bytes calldata userSignature,
address signer,
bytes calldata signerSignature
) external payable whenReady(user) {
_validateExecutionBatchDetails(details, user, userSignature);
DataType.LogicBatch calldata logicBatch = details.logicBatch;
_validateLogicBatch(logicBatch, signer, signerSignature);
unchecked {
++executionNonces[user];
}
_executeWithSignerFee(user, details.permit2Datas, logicBatch, details.tokensReturn);
}
function _execute(
address user,
bytes[] calldata permit2Datas,
DataType.Logic[] calldata logics,
address[] calldata tokensReturn
) internal {
IAgent agent = agents[user];
if (address(agent) == address(0)) {
agent = IAgent(_newAgent(user));
}
emit Executed(user, address(agent));
agent.execute{value: msg.value}(permit2Datas, logics, tokensReturn);
}
function _executeWithSignerFee(
address user,
bytes[] calldata permit2Datas,
DataType.LogicBatch calldata logicBatch,
address[] calldata tokensReturn
) internal {
IAgent agent = agents[user];
if (address(agent) == address(0)) {
agent = IAgent(_newAgent(user));
}
emit Executed(user, address(agent));
agent.executeWithSignerFee{value: msg.value}(
permit2Datas,
logicBatch.logics,
logicBatch.fees,
logicBatch.referrals,
tokensReturn
);
}
function _isValidDelegateeFor(address user) internal view returns (bool) {
return block.timestamp <= uint256(delegations[user][msg.sender].expiry);
}
function _validateExecutionDetails(
DataType.ExecutionDetails calldata details,
address signer,
bytes calldata signature
) internal view {
uint256 deadline = details.deadline;
if (block.timestamp > deadline) revert SignatureExpired(deadline);
if (!signer.isValidSignatureNow(_hashTypedDataV4(details.hash()), signature)) revert InvalidSignature();
if (executionNonces[signer] != details.nonce) revert InvalidNonce();
}
function _validateExecutionBatchDetails(
DataType.ExecutionBatchDetails calldata details,
address signer,
bytes calldata signature
) internal view {
uint256 deadline = details.deadline;
if (block.timestamp > deadline) revert SignatureExpired(deadline);
if (!signer.isValidSignatureNow(_hashTypedDataV4(details.hash()), signature)) revert InvalidSignature();
if (executionNonces[signer] != details.nonce) revert InvalidNonce();
}
function _validateLogicBatch(
DataType.LogicBatch calldata logicBatch,
address signer,
bytes calldata signature
) internal view {
uint256 deadline = logicBatch.deadline;
if (block.timestamp > deadline) revert SignatureExpired(deadline);
if (!signers[signer]) revert InvalidSigner(signer);
if (!signer.isValidSignatureNow(_hashTypedDataV4(logicBatch.hash()), signature)) revert InvalidSignature();
}
///////////////////////////////////////////////////////////////////////////////////////
/// Delegation management
///////////////////////////////////////////////////////////////////////////////////////
/// @notice Allow another address to execute on user's behalf
/// @param delegatee The address to be delegated
/// @param expiry The expiry of the delegation
function allow(address delegatee, uint128 expiry) public {
delegations[msg.sender][delegatee].expiry = expiry;
emit Delegated(msg.sender, delegatee, expiry);
}
/// @notice Set delegation information via signature
/// @param details The delegation details to be signed by a delegator using EIP-712
/// @param delegator The delegator address
/// @param signature The delegator's signature bytes
function allowBySig(
DataType.DelegationDetails calldata details,
address delegator,
bytes calldata signature
) external {
_validateDelegationDetails(details, delegator, signature);
address delegatee = details.delegatee;
uint128 expiry = details.expiry;
delegations[delegator][delegatee].updateAll(expiry, details.nonce);
emit Delegated(delegator, delegatee, expiry);
}
/// @notice Disallow another address to execute on user's behalf
/// @param delegatee The address to be disallowed
function disallow(address delegatee) external {
allow(delegatee, 0);
}
function _validateDelegationDetails(
DataType.DelegationDetails calldata details,
address signer,
bytes calldata signature
) internal view {
uint256 deadline = details.deadline;
uint128 nonce = details.nonce;
if (block.timestamp > deadline) revert SignatureExpired(deadline);
if (!signer.isValidSignatureNow(_hashTypedDataV4(details.hash()), signature)) revert InvalidSignature();
if (delegations[signer][details.delegatee].nonce != nonce) revert InvalidNonce();
}
///////////////////////////////////////////////////////////////////////////////////////
/// Signature nonce management
///////////////////////////////////////////////////////////////////////////////////////
/// @notice Invalidate nonces for a delegatee
/// @param delegatee The delegatee to invalidate nonces for
/// @param newNonce The new nonce to set. Invalidates all nonces less than it
/// @dev Can't invalidate more than 2**16 nonces per transaction
function invalidateDelegationNonces(address delegatee, uint128 newNonce) external {
uint128 oldNonce = delegations[msg.sender][delegatee].nonce;
if (newNonce <= oldNonce) revert InvalidNonce();
// Limit the amount of nonces that can be invalidated in one transaction.
unchecked {
if (newNonce - oldNonce > type(uint16).max) revert ExcessiveInvalidation();
}
delegations[msg.sender][delegatee].nonce = newNonce;
emit DelegationNonceInvalidation(msg.sender, delegatee, newNonce, oldNonce);
}
/// @notice Invalidate nonces for an execution
/// @param newNonce The new nonce to set. Invalidates all nonces less than it
/// @dev Can't invalidate more than 2**16 nonces per transaction
function invalidateExecutionNonces(uint256 newNonce) external {
uint256 oldNonce = executionNonces[msg.sender];
if (newNonce <= oldNonce) revert InvalidNonce();
// Limit the amount of nonces that can be invalidated in one transaction.
unchecked {
if (newNonce - oldNonce > type(uint16).max) revert ExcessiveInvalidation();
}
executionNonces[msg.sender] = newNonce;
emit ExecutionNonceInvalidation(msg.sender, newNonce, oldNonce);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SafeCast.sol)
// This file was procedurally generated from scripts/generate/templates/SafeCast.js.
pragma solidity ^0.8.0;
/**
* @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
* checks.
*
* Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
* easily result in undesired exploitation or bugs, since developers usually
* assume that overflows raise errors. `SafeCast` restores this intuition by
* reverting the transaction when such an operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*
* Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
* all math on `uint256` and `int256` and then downcasting.
*/
library SafeCast {
/**
* @dev Returns the downcasted uint248 from uint256, reverting on
* overflow (when the input is greater than largest uint248).
*
* Counterpart to Solidity's `uint248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*
* _Available since v4.7._
*/
function toUint248(uint256 value) internal pure returns (uint248) {
require(value <= type(uint248).max, "SafeCast: value doesn't fit in 248 bits");
return uint248(value);
}
/**
* @dev Returns the downcasted uint240 from uint256, reverting on
* overflow (when the input is greater than largest uint240).
*
* Counterpart to Solidity's `uint240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*
* _Available since v4.7._
*/
function toUint240(uint256 value) internal pure returns (uint240) {
require(value <= type(uint240).max, "SafeCast: value doesn't fit in 240 bits");
return uint240(value);
}
/**
* @dev Returns the downcasted uint232 from uint256, reverting on
* overflow (when the input is greater than largest uint232).
*
* Counterpart to Solidity's `uint232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*
* _Available since v4.7._
*/
function toUint232(uint256 value) internal pure returns (uint232) {
require(value <= type(uint232).max, "SafeCast: value doesn't fit in 232 bits");
return uint232(value);
}
/**
* @dev Returns the downcasted uint224 from uint256, reverting on
* overflow (when the input is greater than largest uint224).
*
* Counterpart to Solidity's `uint224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*
* _Available since v4.2._
*/
function toUint224(uint256 value) internal pure returns (uint224) {
require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
return uint224(value);
}
/**
* @dev Returns the downcasted uint216 from uint256, reverting on
* overflow (when the input is greater than largest uint216).
*
* Counterpart to Solidity's `uint216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*
* _Available since v4.7._
*/
function toUint216(uint256 value) internal pure returns (uint216) {
require(value <= type(uint216).max, "SafeCast: value doesn't fit in 216 bits");
return uint216(value);
}
/**
* @dev Returns the downcasted uint208 from uint256, reverting on
* overflow (when the input is greater than largest uint208).
*
* Counterpart to Solidity's `uint208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*
* _Available since v4.7._
*/
function toUint208(uint256 value) internal pure returns (uint208) {
require(value <= type(uint208).max, "SafeCast: value doesn't fit in 208 bits");
return uint208(value);
}
/**
* @dev Returns the downcasted uint200 from uint256, reverting on
* overflow (when the input is greater than largest uint200).
*
* Counterpart to Solidity's `uint200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*
* _Available since v4.7._
*/
function toUint200(uint256 value) internal pure returns (uint200) {
require(value <= type(uint200).max, "SafeCast: value doesn't fit in 200 bits");
return uint200(value);
}
/**
* @dev Returns the downcasted uint192 from uint256, reverting on
* overflow (when the input is greater than largest uint192).
*
* Counterpart to Solidity's `uint192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*
* _Available since v4.7._
*/
function toUint192(uint256 value) internal pure returns (uint192) {
require(value <= type(uint192).max, "SafeCast: value doesn't fit in 192 bits");
return uint192(value);
}
/**
* @dev Returns the downcasted uint184 from uint256, reverting on
* overflow (when the input is greater than largest uint184).
*
* Counterpart to Solidity's `uint184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*
* _Available since v4.7._
*/
function toUint184(uint256 value) internal pure returns (uint184) {
require(value <= type(uint184).max, "SafeCast: value doesn't fit in 184 bits");
return uint184(value);
}
/**
* @dev Returns the downcasted uint176 from uint256, reverting on
* overflow (when the input is greater than largest uint176).
*
* Counterpart to Solidity's `uint176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*
* _Available since v4.7._
*/
function toUint176(uint256 value) internal pure returns (uint176) {
require(value <= type(uint176).max, "SafeCast: value doesn't fit in 176 bits");
return uint176(value);
}
/**
* @dev Returns the downcasted uint168 from uint256, reverting on
* overflow (when the input is greater than largest uint168).
*
* Counterpart to Solidity's `uint168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*
* _Available since v4.7._
*/
function toUint168(uint256 value) internal pure returns (uint168) {
require(value <= type(uint168).max, "SafeCast: value doesn't fit in 168 bits");
return uint168(value);
}
/**
* @dev Returns the downcasted uint160 from uint256, reverting on
* overflow (when the input is greater than largest uint160).
*
* Counterpart to Solidity's `uint160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*
* _Available since v4.7._
*/
function toUint160(uint256 value) internal pure returns (uint160) {
require(value <= type(uint160).max, "SafeCast: value doesn't fit in 160 bits");
return uint160(value);
}
/**
* @dev Returns the downcasted uint152 from uint256, reverting on
* overflow (when the input is greater than largest uint152).
*
* Counterpart to Solidity's `uint152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*
* _Available since v4.7._
*/
function toUint152(uint256 value) internal pure returns (uint152) {
require(value <= type(uint152).max, "SafeCast: value doesn't fit in 152 bits");
return uint152(value);
}
/**
* @dev Returns the downcasted uint144 from uint256, reverting on
* overflow (when the input is greater than largest uint144).
*
* Counterpart to Solidity's `uint144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*
* _Available since v4.7._
*/
function toUint144(uint256 value) internal pure returns (uint144) {
require(value <= type(uint144).max, "SafeCast: value doesn't fit in 144 bits");
return uint144(value);
}
/**
* @dev Returns the downcasted uint136 from uint256, reverting on
* overflow (when the input is greater than largest uint136).
*
* Counterpart to Solidity's `uint136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*
* _Available since v4.7._
*/
function toUint136(uint256 value) internal pure returns (uint136) {
require(value <= type(uint136).max, "SafeCast: value doesn't fit in 136 bits");
return uint136(value);
}
/**
* @dev Returns the downcasted uint128 from uint256, reverting on
* overflow (when the input is greater than largest uint128).
*
* Counterpart to Solidity's `uint128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*
* _Available since v2.5._
*/
function toUint128(uint256 value) internal pure returns (uint128) {
require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
return uint128(value);
}
/**
* @dev Returns the downcasted uint120 from uint256, reverting on
* overflow (when the input is greater than largest uint120).
*
* Counterpart to Solidity's `uint120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*
* _Available since v4.7._
*/
function toUint120(uint256 value) internal pure returns (uint120) {
require(value <= type(uint120).max, "SafeCast: value doesn't fit in 120 bits");
return uint120(value);
}
/**
* @dev Returns the downcasted uint112 from uint256, reverting on
* overflow (when the input is greater than largest uint112).
*
* Counterpart to Solidity's `uint112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*
* _Available since v4.7._
*/
function toUint112(uint256 value) internal pure returns (uint112) {
require(value <= type(uint112).max, "SafeCast: value doesn't fit in 112 bits");
return uint112(value);
}
/**
* @dev Returns the downcasted uint104 from uint256, reverting on
* overflow (when the input is greater than largest uint104).
*
* Counterpart to Solidity's `uint104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*
* _Available since v4.7._
*/
function toUint104(uint256 value) internal pure returns (uint104) {
require(value <= type(uint104).max, "SafeCast: value doesn't fit in 104 bits");
return uint104(value);
}
/**
* @dev Returns the downcasted uint96 from uint256, reverting on
* overflow (when the input is greater than largest uint96).
*
* Counterpart to Solidity's `uint96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*
* _Available since v4.2._
*/
function toUint96(uint256 value) internal pure returns (uint96) {
require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
return uint96(value);
}
/**
* @dev Returns the downcasted uint88 from uint256, reverting on
* overflow (when the input is greater than largest uint88).
*
* Counterpart to Solidity's `uint88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*
* _Available since v4.7._
*/
function toUint88(uint256 value) internal pure returns (uint88) {
require(value <= type(uint88).max, "SafeCast: value doesn't fit in 88 bits");
return uint88(value);
}
/**
* @dev Returns the downcasted uint80 from uint256, reverting on
* overflow (when the input is greater than largest uint80).
*
* Counterpart to Solidity's `uint80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*
* _Available since v4.7._
*/
function toUint80(uint256 value) internal pure returns (uint80) {
require(value <= type(uint80).max, "SafeCast: value doesn't fit in 80 bits");
return uint80(value);
}
/**
* @dev Returns the downcasted uint72 from uint256, reverting on
* overflow (when the input is greater than largest uint72).
*
* Counterpart to Solidity's `uint72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*
* _Available since v4.7._
*/
function toUint72(uint256 value) internal pure returns (uint72) {
require(value <= type(uint72).max, "SafeCast: value doesn't fit in 72 bits");
return uint72(value);
}
/**
* @dev Returns the downcasted uint64 from uint256, reverting on
* overflow (when the input is greater than largest uint64).
*
* Counterpart to Solidity's `uint64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*
* _Available since v2.5._
*/
function toUint64(uint256 value) internal pure returns (uint64) {
require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
return uint64(value);
}
/**
* @dev Returns the downcasted uint56 from uint256, reverting on
* overflow (when the input is greater than largest uint56).
*
* Counterpart to Solidity's `uint56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*
* _Available since v4.7._
*/
function toUint56(uint256 value) internal pure returns (uint56) {
require(value <= type(uint56).max, "SafeCast: value doesn't fit in 56 bits");
return uint56(value);
}
/**
* @dev Returns the downcasted uint48 from uint256, reverting on
* overflow (when the input is greater than largest uint48).
*
* Counterpart to Solidity's `uint48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*
* _Available since v4.7._
*/
function toUint48(uint256 value) internal pure returns (uint48) {
require(value <= type(uint48).max, "SafeCast: value doesn't fit in 48 bits");
return uint48(value);
}
/**
* @dev Returns the downcasted uint40 from uint256, reverting on
* overflow (when the input is greater than largest uint40).
*
* Counterpart to Solidity's `uint40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*
* _Available since v4.7._
*/
function toUint40(uint256 value) internal pure returns (uint40) {
require(value <= type(uint40).max, "SafeCast: value doesn't fit in 40 bits");
return uint40(value);
}
/**
* @dev Returns the downcasted uint32 from uint256, reverting on
* overflow (when the input is greater than largest uint32).
*
* Counterpart to Solidity's `uint32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*
* _Available since v2.5._
*/
function toUint32(uint256 value) internal pure returns (uint32) {
require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
return uint32(value);
}
/**
* @dev Returns the downcasted uint24 from uint256, reverting on
* overflow (when the input is greater than largest uint24).
*
* Counterpart to Solidity's `uint24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*
* _Available since v4.7._
*/
function toUint24(uint256 value) internal pure returns (uint24) {
require(value <= type(uint24).max, "SafeCast: value doesn't fit in 24 bits");
return uint24(value);
}
/**
* @dev Returns the downcasted uint16 from uint256, reverting on
* overflow (when the input is greater than largest uint16).
*
* Counterpart to Solidity's `uint16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*
* _Available since v2.5._
*/
function toUint16(uint256 value) internal pure returns (uint16) {
require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
return uint16(value);
}
/**
* @dev Returns the downcasted uint8 from uint256, reverting on
* overflow (when the input is greater than largest uint8).
*
* Counterpart to Solidity's `uint8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*
* _Available since v2.5._
*/
function toUint8(uint256 value) internal pure returns (uint8) {
require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
return uint8(value);
}
/**
* @dev Converts a signed int256 into an unsigned uint256.
*
* Requirements:
*
* - input must be greater than or equal to 0.
*
* _Available since v3.0._
*/
function toUint256(int256 value) internal pure returns (uint256) {
require(value >= 0, "SafeCast: value must be positive");
return uint256(value);
}
/**
* @dev Returns the downcasted int248 from int256, reverting on
* overflow (when the input is less than smallest int248 or
* greater than largest int248).
*
* Counterpart to Solidity's `int248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*
* _Available since v4.7._
*/
function toInt248(int256 value) internal pure returns (int248 downcasted) {
downcasted = int248(value);
require(downcasted == value, "SafeCast: value doesn't fit in 248 bits");
}
/**
* @dev Returns the downcasted int240 from int256, reverting on
* overflow (when the input is less than smallest int240 or
* greater than largest int240).
*
* Counterpart to Solidity's `int240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*
* _Available since v4.7._
*/
function toInt240(int256 value) internal pure returns (int240 downcasted) {
downcasted = int240(value);
require(downcasted == value, "SafeCast: value doesn't fit in 240 bits");
}
/**
* @dev Returns the downcasted int232 from int256, reverting on
* overflow (when the input is less than smallest int232 or
* greater than largest int232).
*
* Counterpart to Solidity's `int232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*
* _Available since v4.7._
*/
function toInt232(int256 value) internal pure returns (int232 downcasted) {
downcasted = int232(value);
require(downcasted == value, "SafeCast: value doesn't fit in 232 bits");
}
/**
* @dev Returns the downcasted int224 from int256, reverting on
* overflow (when the input is less than smallest int224 or
* greater than largest int224).
*
* Counterpart to Solidity's `int224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*
* _Available since v4.7._
*/
function toInt224(int256 value) internal pure returns (int224 downcasted) {
downcasted = int224(value);
require(downcasted == value, "SafeCast: value doesn't fit in 224 bits");
}
/**
* @dev Returns the downcasted int216 from int256, reverting on
* overflow (when the input is less than smallest int216 or
* greater than largest int216).
*
* Counterpart to Solidity's `int216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*
* _Available since v4.7._
*/
function toInt216(int256 value) internal pure returns (int216 downcasted) {
downcasted = int216(value);
require(downcasted == value, "SafeCast: value doesn't fit in 216 bits");
}
/**
* @dev Returns the downcasted int208 from int256, reverting on
* overflow (when the input is less than smallest int208 or
* greater than largest int208).
*
* Counterpart to Solidity's `int208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*
* _Available since v4.7._
*/
function toInt208(int256 value) internal pure returns (int208 downcasted) {
downcasted = int208(value);
require(downcasted == value, "SafeCast: value doesn't fit in 208 bits");
}
/**
* @dev Returns the downcasted int200 from int256, reverting on
* overflow (when the input is less than smallest int200 or
* greater than largest int200).
*
* Counterpart to Solidity's `int200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*
* _Available since v4.7._
*/
function toInt200(int256 value) internal pure returns (int200 downcasted) {
downcasted = int200(value);
require(downcasted == value, "SafeCast: value doesn't fit in 200 bits");
}
/**
* @dev Returns the downcasted int192 from int256, reverting on
* overflow (when the input is less than smallest int192 or
* greater than largest int192).
*
* Counterpart to Solidity's `int192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*
* _Available since v4.7._
*/
function toInt192(int256 value) internal pure returns (int192 downcasted) {
downcasted = int192(value);
require(downcasted == value, "SafeCast: value doesn't fit in 192 bits");
}
/**
* @dev Returns the downcasted int184 from int256, reverting on
* overflow (when the input is less than smallest int184 or
* greater than largest int184).
*
* Counterpart to Solidity's `int184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*
* _Available since v4.7._
*/
function toInt184(int256 value) internal pure returns (int184 downcasted) {
downcasted = int184(value);
require(downcasted == value, "SafeCast: value doesn't fit in 184 bits");
}
/**
* @dev Returns the downcasted int176 from int256, reverting on
* overflow (when the input is less than smallest int176 or
* greater than largest int176).
*
* Counterpart to Solidity's `int176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*
* _Available since v4.7._
*/
function toInt176(int256 value) internal pure returns (int176 downcasted) {
downcasted = int176(value);
require(downcasted == value, "SafeCast: value doesn't fit in 176 bits");
}
/**
* @dev Returns the downcasted int168 from int256, reverting on
* overflow (when the input is less than smallest int168 or
* greater than largest int168).
*
* Counterpart to Solidity's `int168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*
* _Available since v4.7._
*/
function toInt168(int256 value) internal pure returns (int168 downcasted) {
downcasted = int168(value);
require(downcasted == value, "SafeCast: value doesn't fit in 168 bits");
}
/**
* @dev Returns the downcasted int160 from int256, reverting on
* overflow (when the input is less than smallest int160 or
* greater than largest int160).
*
* Counterpart to Solidity's `int160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*
* _Available since v4.7._
*/
function toInt160(int256 value) internal pure returns (int160 downcasted) {
downcasted = int160(value);
require(downcasted == value, "SafeCast: value doesn't fit in 160 bits");
}
/**
* @dev Returns the downcasted int152 from int256, reverting on
* overflow (when the input is less than smallest int152 or
* greater than largest int152).
*
* Counterpart to Solidity's `int152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*
* _Available since v4.7._
*/
function toInt152(int256 value) internal pure returns (int152 downcasted) {
downcasted = int152(value);
require(downcasted == value, "SafeCast: value doesn't fit in 152 bits");
}
/**
* @dev Returns the downcasted int144 from int256, reverting on
* overflow (when the input is less than smallest int144 or
* greater than largest int144).
*
* Counterpart to Solidity's `int144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*
* _Available since v4.7._
*/
function toInt144(int256 value) internal pure returns (int144 downcasted) {
downcasted = int144(value);
require(downcasted == value, "SafeCast: value doesn't fit in 144 bits");
}
/**
* @dev Returns the downcasted int136 from int256, reverting on
* overflow (when the input is less than smallest int136 or
* greater than largest int136).
*
* Counterpart to Solidity's `int136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*
* _Available since v4.7._
*/
function toInt136(int256 value) internal pure returns (int136 downcasted) {
downcasted = int136(value);
require(downcasted == value, "SafeCast: value doesn't fit in 136 bits");
}
/**
* @dev Returns the downcasted int128 from int256, reverting on
* overflow (when the input is less than smallest int128 or
* greater than largest int128).
*
* Counterpart to Solidity's `int128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*
* _Available since v3.1._
*/
function toInt128(int256 value) internal pure returns (int128 downcasted) {
downcasted = int128(value);
require(downcasted == value, "SafeCast: value doesn't fit in 128 bits");
}
/**
* @dev Returns the downcasted int120 from int256, reverting on
* overflow (when the input is less than smallest int120 or
* greater than largest int120).
*
* Counterpart to Solidity's `int120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*
* _Available since v4.7._
*/
function toInt120(int256 value) internal pure returns (int120 downcasted) {
downcasted = int120(value);
require(downcasted == value, "SafeCast: value doesn't fit in 120 bits");
}
/**
* @dev Returns the downcasted int112 from int256, reverting on
* overflow (when the input is less than smallest int112 or
* greater than largest int112).
*
* Counterpart to Solidity's `int112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*
* _Available since v4.7._
*/
function toInt112(int256 value) internal pure returns (int112 downcasted) {
downcasted = int112(value);
require(downcasted == value, "SafeCast: value doesn't fit in 112 bits");
}
/**
* @dev Returns the downcasted int104 from int256, reverting on
* overflow (when the input is less than smallest int104 or
* greater than largest int104).
*
* Counterpart to Solidity's `int104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*
* _Available since v4.7._
*/
function toInt104(int256 value) internal pure returns (int104 downcasted) {
downcasted = int104(value);
require(downcasted == value, "SafeCast: value doesn't fit in 104 bits");
}
/**
* @dev Returns the downcasted int96 from int256, reverting on
* overflow (when the input is less than smallest int96 or
* greater than largest int96).
*
* Counterpart to Solidity's `int96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*
* _Available since v4.7._
*/
function toInt96(int256 value) internal pure returns (int96 downcasted) {
downcasted = int96(value);
require(downcasted == value, "SafeCast: value doesn't fit in 96 bits");
}
/**
* @dev Returns the downcasted int88 from int256, reverting on
* overflow (when the input is less than smallest int88 or
* greater than largest int88).
*
* Counterpart to Solidity's `int88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*
* _Available since v4.7._
*/
function toInt88(int256 value) internal pure returns (int88 downcasted) {
downcasted = int88(value);
require(downcasted == value, "SafeCast: value doesn't fit in 88 bits");
}
/**
* @dev Returns the downcasted int80 from int256, reverting on
* overflow (when the input is less than smallest int80 or
* greater than largest int80).
*
* Counterpart to Solidity's `int80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*
* _Available since v4.7._
*/
function toInt80(int256 value) internal pure returns (int80 downcasted) {
downcasted = int80(value);
require(downcasted == value, "SafeCast: value doesn't fit in 80 bits");
}
/**
* @dev Returns the downcasted int72 from int256, reverting on
* overflow (when the input is less than smallest int72 or
* greater than largest int72).
*
* Counterpart to Solidity's `int72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*
* _Available since v4.7._
*/
function toInt72(int256 value) internal pure returns (int72 downcasted) {
downcasted = int72(value);
require(downcasted == value, "SafeCast: value doesn't fit in 72 bits");
}
/**
* @dev Returns the downcasted int64 from int256, reverting on
* overflow (when the input is less than smallest int64 or
* greater than largest int64).
*
* Counterpart to Solidity's `int64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*
* _Available since v3.1._
*/
function toInt64(int256 value) internal pure returns (int64 downcasted) {
downcasted = int64(value);
require(downcasted == value, "SafeCast: value doesn't fit in 64 bits");
}
/**
* @dev Returns the downcasted int56 from int256, reverting on
* overflow (when the input is less than smallest int56 or
* greater than largest int56).
*
* Counterpart to Solidity's `int56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*
* _Available since v4.7._
*/
function toInt56(int256 value) internal pure returns (int56 downcasted) {
downcasted = int56(value);
require(downcasted == value, "SafeCast: value doesn't fit in 56 bits");
}
/**
* @dev Returns the downcasted int48 from int256, reverting on
* overflow (when the input is less than smallest int48 or
* greater than largest int48).
*
* Counterpart to Solidity's `int48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*
* _Available since v4.7._
*/
function toInt48(int256 value) internal pure returns (int48 downcasted) {
downcasted = int48(value);
require(downcasted == value, "SafeCast: value doesn't fit in 48 bits");
}
/**
* @dev Returns the downcasted int40 from int256, reverting on
* overflow (when the input is less than smallest int40 or
* greater than largest int40).
*
* Counterpart to Solidity's `int40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*
* _Available since v4.7._
*/
function toInt40(int256 value) internal pure returns (int40 downcasted) {
downcasted = int40(value);
require(downcasted == value, "SafeCast: value doesn't fit in 40 bits");
}
/**
* @dev Returns the downcasted int32 from int256, reverting on
* overflow (when the input is less than smallest int32 or
* greater than largest int32).
*
* Counterpart to Solidity's `int32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*
* _Available since v3.1._
*/
function toInt32(int256 value) internal pure returns (int32 downcasted) {
downcasted = int32(value);
require(downcasted == value, "SafeCast: value doesn't fit in 32 bits");
}
/**
* @dev Returns the downcasted int24 from int256, reverting on
* overflow (when the input is less than smallest int24 or
* greater than largest int24).
*
* Counterpart to Solidity's `int24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*
* _Available since v4.7._
*/
function toInt24(int256 value) internal pure returns (int24 downcasted) {
downcasted = int24(value);
require(downcasted == value, "SafeCast: value doesn't fit in 24 bits");
}
/**
* @dev Returns the downcasted int16 from int256, reverting on
* overflow (when the input is less than smallest int16 or
* greater than largest int16).
*
* Counterpart to Solidity's `int16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*
* _Available since v3.1._
*/
function toInt16(int256 value) internal pure returns (int16 downcasted) {
downcasted = int16(value);
require(downcasted == value, "SafeCast: value doesn't fit in 16 bits");
}
/**
* @dev Returns the downcasted int8 from int256, reverting on
* overflow (when the input is less than smallest int8 or
* greater than largest int8).
*
* Counterpart to Solidity's `int8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*
* _Available since v3.1._
*/
function toInt8(int256 value) internal pure returns (int8 downcasted) {
downcasted = int8(value);
require(downcasted == value, "SafeCast: value doesn't fit in 8 bits");
}
/**
* @dev Converts an unsigned uint256 into a signed int256.
*
* Requirements:
*
* - input must be less than or equal to maxInt256.
*
* _Available since v3.0._
*/
function toInt256(uint256 value) internal pure returns (int256) {
// Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
return int256(value);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/SignatureChecker.sol)
pragma solidity ^0.8.0;
import "./ECDSA.sol";
import "../Address.sol";
import "../../interfaces/IERC1271.sol";
/**
* @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA
* signatures from externally owned accounts (EOAs) as well as ERC1271 signatures from smart contract wallets like
* Argent and Gnosis Safe.
*
* _Available since v4.1._
*/
library SignatureChecker {
/**
* @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the
* signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECDSA.recover`.
*
* NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus
* change through time. It could return true at block N and false at block N+1 (or the opposite).
*/
function isValidSignatureNow(
address signer,
bytes32 hash,
bytes memory signature
) internal view returns (bool) {
(address recovered, ECDSA.RecoverError error) = ECDSA.tryRecover(hash, signature);
if (error == ECDSA.RecoverError.NoError && recovered == signer) {
return true;
}
(bool success, bytes memory result) = signer.staticcall(
abi.encodeWithSelector(IERC1271.isValidSignature.selector, hash, signature)
);
return (success &&
result.length == 32 &&
abi.decode(result, (bytes32)) == bytes32(IERC1271.isValidSignature.selector));
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.0;
import {DataType} from '../libraries/DataType.sol';
/// @title Library for EIP-712 encode
/// @notice Contains typehash constants and hash functions for structs
library TypedDataHash {
bytes32 internal constant INPUT_TYPEHASH =
keccak256('Input(address token,uint256 balanceBps,uint256 amountOrOffset)');
bytes32 internal constant LOGIC_TYPEHASH =
keccak256(
'Logic(address to,bytes data,Input[] inputs,uint8 wrapMode,address approveTo,address callback)Input(address token,uint256 balanceBps,uint256 amountOrOffset)'
);
bytes32 internal constant EXECUTION_DETAILS_TYPEHASH =
keccak256(
'ExecutionDetails(bytes[] permit2Datas,Logic[] logics,address[] tokensReturn,uint256 nonce,uint256 deadline)Input(address token,uint256 balanceBps,uint256 amountOrOffset)Logic(address to,bytes data,Input[] inputs,uint8 wrapMode,address approveTo,address callback)'
);
bytes32 internal constant FEE_TYPEHASH = keccak256('Fee(address token,uint256 amount,bytes32 metadata)');
bytes32 internal constant LOGIC_BATCH_TYPEHASH =
keccak256(
'LogicBatch(Logic[] logics,Fee[] fees,bytes32[] referrals,uint256 deadline)Fee(address token,uint256 amount,bytes32 metadata)Input(address token,uint256 balanceBps,uint256 amountOrOffset)Logic(address to,bytes data,Input[] inputs,uint8 wrapMode,address approveTo,address callback)'
);
bytes32 internal constant EXECUTION_BATCH_DETAILS_TYPEHASH =
keccak256(
'ExecutionBatchDetails(bytes[] permit2Datas,LogicBatch logicBatch,address[] tokensReturn,uint256 nonce,uint256 deadline)Fee(address token,uint256 amount,bytes32 metadata)Input(address token,uint256 balanceBps,uint256 amountOrOffset)Logic(address to,bytes data,Input[] inputs,uint8 wrapMode,address approveTo,address callback)LogicBatch(Logic[] logics,Fee[] fees,bytes32[] referrals,uint256 deadline)'
);
bytes32 internal constant DELEGATION_DETAILS_TYPEHASH =
keccak256('DelegationDetails(address delegatee,uint128 expiry,uint128 nonce,uint256 deadline)');
function hash(DataType.Input calldata input) internal pure returns (bytes32) {
return keccak256(abi.encode(INPUT_TYPEHASH, input));
}
function hash(DataType.Logic calldata logic) internal pure returns (bytes32) {
DataType.Input[] calldata inputs = logic.inputs;
uint256 inputsLength = inputs.length;
bytes32[] memory inputHashes = new bytes32[](inputsLength);
for (uint256 i; i < inputsLength; ) {
inputHashes[i] = hash(inputs[i]);
unchecked {
++i;
}
}
return
keccak256(
abi.encode(
LOGIC_TYPEHASH,
logic.to,
keccak256(logic.data),
keccak256(abi.encodePacked(inputHashes)),
logic.wrapMode,
logic.approveTo,
logic.callback
)
);
}
function hash(DataType.ExecutionDetails calldata details) internal pure returns (bytes32) {
bytes[] calldata datas = details.permit2Datas;
uint256 datasLength = datas.length;
bytes32[] memory dataHashes = new bytes32[](datasLength);
for (uint256 i; i < datasLength; ) {
dataHashes[i] = keccak256(datas[i]);
unchecked {
++i;
}
}
DataType.Logic[] calldata logics = details.logics;
uint256 logicsLength = logics.length;
bytes32[] memory logicHashes = new bytes32[](logicsLength);
for (uint256 i; i < logicsLength; ) {
logicHashes[i] = hash(logics[i]);
unchecked {
++i;
}
}
return
keccak256(
abi.encode(
EXECUTION_DETAILS_TYPEHASH,
keccak256(abi.encodePacked(dataHashes)),
keccak256(abi.encodePacked(logicHashes)),
keccak256(abi.encodePacked(details.tokensReturn)),
details.nonce,
details.deadline
)
);
}
function hash(DataType.Fee calldata fee) internal pure returns (bytes32) {
return keccak256(abi.encode(FEE_TYPEHASH, fee));
}
function hash(DataType.LogicBatch calldata logicBatch) internal pure returns (bytes32) {
DataType.Logic[] calldata logics = logicBatch.logics;
DataType.Fee[] calldata fees = logicBatch.fees;
uint256 logicsLength = logics.length;
uint256 feesLength = fees.length;
bytes32[] memory logicHashes = new bytes32[](logicsLength);
bytes32[] memory feeHashes = new bytes32[](feesLength);
for (uint256 i; i < logicsLength; ) {
logicHashes[i] = hash(logics[i]);
unchecked {
++i;
}
}
for (uint256 i; i < feesLength; ) {
feeHashes[i] = hash(fees[i]);
unchecked {
++i;
}
}
return
keccak256(
abi.encode(
LOGIC_BATCH_TYPEHASH,
keccak256(abi.encodePacked(logicHashes)),
keccak256(abi.encodePacked(feeHashes)),
keccak256(abi.encodePacked(logicBatch.referrals)),
logicBatch.deadline
)
);
}
function hash(DataType.ExecutionBatchDetails calldata details) internal pure returns (bytes32) {
bytes[] calldata datas = details.permit2Datas;
uint256 datasLength = datas.length;
bytes32[] memory dataHashes = new bytes32[](datasLength);
for (uint256 i; i < datasLength; ) {
dataHashes[i] = keccak256(datas[i]);
unchecked {
++i;
}
}
return
keccak256(
abi.encode(
EXECUTION_BATCH_DETAILS_TYPEHASH,
keccak256(abi.encodePacked(dataHashes)),
hash(details.logicBatch),
keccak256(abi.encodePacked(details.tokensReturn)),
details.nonce,
details.deadline
)
);
}
function hash(DataType.DelegationDetails calldata details) internal pure returns (bytes32) {
return
keccak256(
abi.encode(
DELEGATION_DETAILS_TYPEHASH,
details.delegatee,
details.expiry,
details.nonce,
details.deadline
)
);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}
{
"compilationTarget": {
"src/Router.sol": "Router"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 10000
},
"remappings": [
":create3-factory/=lib/create3-factory/src/",
":ds-test/=lib/forge-std/lib/ds-test/src/",
":erc4626-tests/=lib/create3-factory/lib/openzeppelin-contracts/lib/erc4626-tests/",
":forge-gas-snapshot/=lib/permit2/lib/forge-gas-snapshot/src/",
":forge-std/=lib/forge-std/src/",
":openzeppelin-contracts/=lib/openzeppelin-contracts/",
":openzeppelin/=lib/create3-factory/lib/openzeppelin-contracts/contracts/",
":permit2/=lib/permit2/",
":solmate/=lib/permit2/lib/solmate/src/"
]
}
[{"inputs":[{"internalType":"address","name":"wrappedNative","type":"address"},{"internalType":"address","name":"permit2","type":"address"},{"internalType":"address","name":"deployer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AgentAlreadyCreated","type":"error"},{"inputs":[],"name":"AlreadyPaused","type":"error"},{"inputs":[],"name":"ExcessiveInvalidation","type":"error"},{"inputs":[],"name":"InvalidDelegatee","type":"error"},{"inputs":[],"name":"InvalidFeeCollector","type":"error"},{"inputs":[],"name":"InvalidNewPauser","type":"error"},{"inputs":[],"name":"InvalidNonce","type":"error"},{"inputs":[],"name":"InvalidPauser","type":"error"},{"inputs":[],"name":"InvalidRate","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"InvalidSigner","type":"error"},{"inputs":[],"name":"NotPaused","type":"error"},{"inputs":[],"name":"NotReady","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"SignatureExpired","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"agent","type":"address"},{"indexed":true,"internalType":"address","name":"user","type":"address"}],"name":"AgentCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"delegatee","type":"address"},{"indexed":false,"internalType":"uint128","name":"expiry","type":"uint128"}],"name":"Delegated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"delegatee","type":"address"},{"indexed":false,"internalType":"uint128","name":"newNonce","type":"uint128"},{"indexed":false,"internalType":"uint128","name":"oldNonce","type":"uint128"}],"name":"DelegationNonceInvalidation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"agent","type":"address"}],"name":"Executed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"newNonce","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldNonce","type":"uint256"}],"name":"ExecutionNonceInvalidation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"feeCollector_","type":"address"}],"name":"FeeCollectorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feeRate_","type":"uint256"}],"name":"FeeRateSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pauser","type":"address"}],"name":"PauserSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"signer","type":"address"}],"name":"SignerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"signer","type":"address"}],"name":"SignerRemoved","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"addSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"agentImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"agents","outputs":[{"internalType":"contract IAgent","name":"agent","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint128","name":"expiry","type":"uint128"}],"name":"allow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint128","name":"expiry","type":"uint128"},{"internalType":"uint128","name":"nonce","type":"uint128"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"internalType":"struct DataType.DelegationDetails","name":"details","type":"tuple"},{"internalType":"address","name":"delegator","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"allowBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"calcAgent","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentUser","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultCollector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultReferral","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegations","outputs":[{"internalType":"uint128","name":"expiry","type":"uint128"},{"internalType":"uint128","name":"nonce","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"disallow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"domainSeparator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"permit2Datas","type":"bytes[]"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"balanceBps","type":"uint256"},{"internalType":"uint256","name":"amountOrOffset","type":"uint256"}],"internalType":"struct DataType.Input[]","name":"inputs","type":"tuple[]"},{"internalType":"enum DataType.WrapMode","name":"wrapMode","type":"uint8"},{"internalType":"address","name":"approveTo","type":"address"},{"internalType":"address","name":"callback","type":"address"}],"internalType":"struct DataType.Logic[]","name":"logics","type":"tuple[]"},{"internalType":"address[]","name":"tokensReturn","type":"address[]"}],"name":"execute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes[]","name":"permit2Datas","type":"bytes[]"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"balanceBps","type":"uint256"},{"internalType":"uint256","name":"amountOrOffset","type":"uint256"}],"internalType":"struct DataType.Input[]","name":"inputs","type":"tuple[]"},{"internalType":"enum DataType.WrapMode","name":"wrapMode","type":"uint8"},{"internalType":"address","name":"approveTo","type":"address"},{"internalType":"address","name":"callback","type":"address"}],"internalType":"struct DataType.Logic[]","name":"logics","type":"tuple[]"},{"internalType":"address[]","name":"tokensReturn","type":"address[]"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"internalType":"struct DataType.ExecutionDetails","name":"details","type":"tuple"},{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"executeBySig","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes[]","name":"permit2Datas","type":"bytes[]"},{"components":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"balanceBps","type":"uint256"},{"internalType":"uint256","name":"amountOrOffset","type":"uint256"}],"internalType":"struct DataType.Input[]","name":"inputs","type":"tuple[]"},{"internalType":"enum DataType.WrapMode","name":"wrapMode","type":"uint8"},{"internalType":"address","name":"approveTo","type":"address"},{"internalType":"address","name":"callback","type":"address"}],"internalType":"struct DataType.Logic[]","name":"logics","type":"tuple[]"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32","name":"metadata","type":"bytes32"}],"internalType":"struct DataType.Fee[]","name":"fees","type":"tuple[]"},{"internalType":"bytes32[]","name":"referrals","type":"bytes32[]"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"internalType":"struct DataType.LogicBatch","name":"logicBatch","type":"tuple"},{"internalType":"address[]","name":"tokensReturn","type":"address[]"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"internalType":"struct DataType.ExecutionBatchDetails","name":"details","type":"tuple"},{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes","name":"userSignature","type":"bytes"},{"internalType":"address","name":"signer","type":"address"},{"internalType":"bytes","name":"signerSignature","type":"bytes"}],"name":"executeBySigWithSignerFee","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes[]","name":"permit2Datas","type":"bytes[]"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"balanceBps","type":"uint256"},{"internalType":"uint256","name":"amountOrOffset","type":"uint256"}],"internalType":"struct DataType.Input[]","name":"inputs","type":"tuple[]"},{"internalType":"enum DataType.WrapMode","name":"wrapMode","type":"uint8"},{"internalType":"address","name":"approveTo","type":"address"},{"internalType":"address","name":"callback","type":"address"}],"internalType":"struct DataType.Logic[]","name":"logics","type":"tuple[]"},{"internalType":"address[]","name":"tokensReturn","type":"address[]"}],"name":"executeFor","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes[]","name":"permit2Datas","type":"bytes[]"},{"components":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"balanceBps","type":"uint256"},{"internalType":"uint256","name":"amountOrOffset","type":"uint256"}],"internalType":"struct DataType.Input[]","name":"inputs","type":"tuple[]"},{"internalType":"enum DataType.WrapMode","name":"wrapMode","type":"uint8"},{"internalType":"address","name":"approveTo","type":"address"},{"internalType":"address","name":"callback","type":"address"}],"internalType":"struct DataType.Logic[]","name":"logics","type":"tuple[]"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32","name":"metadata","type":"bytes32"}],"internalType":"struct DataType.Fee[]","name":"fees","type":"tuple[]"},{"internalType":"bytes32[]","name":"referrals","type":"bytes32[]"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"internalType":"struct DataType.LogicBatch","name":"logicBatch","type":"tuple"},{"internalType":"address","name":"signer","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"address[]","name":"tokensReturn","type":"address[]"}],"name":"executeForWithSignerFee","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"permit2Datas","type":"bytes[]"},{"components":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"balanceBps","type":"uint256"},{"internalType":"uint256","name":"amountOrOffset","type":"uint256"}],"internalType":"struct DataType.Input[]","name":"inputs","type":"tuple[]"},{"internalType":"enum DataType.WrapMode","name":"wrapMode","type":"uint8"},{"internalType":"address","name":"approveTo","type":"address"},{"internalType":"address","name":"callback","type":"address"}],"internalType":"struct DataType.Logic[]","name":"logics","type":"tuple[]"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32","name":"metadata","type":"bytes32"}],"internalType":"struct DataType.Fee[]","name":"fees","type":"tuple[]"},{"internalType":"bytes32[]","name":"referrals","type":"bytes32[]"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"internalType":"struct DataType.LogicBatch","name":"logicBatch","type":"tuple"},{"internalType":"address","name":"signer","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"address[]","name":"tokensReturn","type":"address[]"}],"name":"executeWithSignerFee","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"executionNonces","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getAgent","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentUserAgent","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint128","name":"newNonce","type":"uint128"}],"name":"invalidateDelegationNonces","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNonce","type":"uint256"}],"name":"invalidateExecutionNonces","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"newAgent","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"newAgent","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauser","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"removeSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"feeCollector_","type":"address"}],"name":"setFeeCollector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeRate_","type":"uint256"}],"name":"setFeeRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pauser_","type":"address"}],"name":"setPauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"signers","outputs":[{"internalType":"bool","name":"valid","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]