Source Code
Overview
ETH Balance
ETH Value
$0.00Latest 5 from a total of 5 transactions
Cross-Chain Transactions
Loading...
Loading
Contract Name:
DaimoPayRelayer
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
Yes with 999999 runs
Other Settings:
london EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.12;
import "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol";
import "openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "../DaimoPay.sol";
import "../TokenUtils.sol";
import {DepositAddressManager} from "../DepositAddressManager.sol";
import {DAParams} from "../DepositAddress.sol";
import {PriceData} from "../interfaces/IDaimoPayPricer.sol";
/// @author Daimo, Inc
/// @notice Reference relayer contract. This is a private, untrusted relayer.
contract DaimoPayRelayer is AccessControl {
using SafeERC20 for IERC20;
// Enabled only within transactions. Otherwise zero.
bytes32 private approvedSwapAndTipHash;
// For gas efficiency, set to 1 to disable swapAndTip.
bytes32 private constant NO_APPROVED_HASH = bytes32(uint256(1));
/// @param requiredTokenIn (token, amount) the swap must receive as input
/// @param requiredTokenOut (token, amount) the swap is expected to output
/// @param maxPreTip ceiling on input-side tip
/// @param maxPostTip ceiling on output-side tip
/// @param innerSwap the swap that will be executed
struct SwapAndTipParams {
TokenAmount requiredTokenIn;
TokenAmount requiredTokenOut;
uint256 maxPreTip;
uint256 maxPostTip;
Call innerSwap;
address payable refundAddress;
}
event SwapAndTip(
address indexed caller,
address indexed requiredTokenIn,
address indexed requiredTokenOut,
uint256 suppliedAmountIn,
uint256 swapAmountOut,
uint256 maxPreTip,
uint256 maxPostTip,
uint256 preTip,
uint256 postTip
);
event OverPaymentRefunded(
address indexed refundAddress,
address indexed token,
uint256 amount
);
constructor(address admin) {
_grantRole(DEFAULT_ADMIN_ROLE, admin);
approvedSwapAndTipHash = NO_APPROVED_HASH;
}
// ------------------------------------------------------------
// Balance Management
// ------------------------------------------------------------
// Role management is handled via AccessControl.grantRole/renounceRole.
/// Withdraws an amount of tokens from the contract to the admin.
function withdrawAmount(
IERC20 token,
uint256 amount
) public onlyRole(DEFAULT_ADMIN_ROLE) {
TokenUtils.transfer(token, payable(msg.sender), amount);
}
/// Withdraws the full balance of a token from the relayer to the admin.
function withdrawBalance(
IERC20 token
) public onlyRole(DEFAULT_ADMIN_ROLE) returns (uint256) {
return TokenUtils.transferBalance(token, payable(msg.sender));
}
// ------------------------------------------------------------
// SWAP AND TIP
// ------------------------------------------------------------
/// Perform a user-funded token swap, optionally topped-up (“tipped”)
/// by the relayer, and deliver a guaranteed output amount to the caller.
/// ─────────────────────────────────────────────────────────────────
/// - If the caller sent *less* than the swap’s required input
/// (`requiredTokenIn.amount`), the relayer contributes up to
/// `maxPreTip` of the same token so the swap can still succeed.
///
/// - If the caller sent *more* than the swap’s required input
/// (`requiredTokenIn.amount`), the relayer refunds the surplus to
/// `refundAddress` if set and emits the `OverPaymentRefunded` event.
///
/// - The inner swap (arbitrary calldata in `innerSwap`) executes with
/// **exactly** `requiredTokenIn.amount` input.
///
/// - After the swap, if the output is still short of
/// `requiredTokenOut.amount`, the relayer tops-up (“post-tip”) up to
/// `maxPostTip` of the output token.
///
/// - The function finally transfers `requiredTokenOut.amount`
/// to `msg.sender`, and emits the `SwapAndTip` event.
function swapAndTip(SwapAndTipParams calldata p) external payable {
_checkSwapAndTipHash(p);
//////////////////////////////////////////////////////////////
// PRE-SWAP
//////////////////////////////////////////////////////////////
uint256 preSwapBalance = TokenUtils.getBalanceOf({
token: p.requiredTokenOut.token,
addr: address(this)
});
(uint256 preTipAmount, uint256 suppliedAmountIn) = _collectSwapInput(p);
_refundOverPayment(p, suppliedAmountIn);
//////////////////////////////////////////////////////////////
// SWAP
//////////////////////////////////////////////////////////////
uint256 postSwapBalance = _executeSwap(p);
uint256 swapAmountOut = postSwapBalance - preSwapBalance;
// If the tokens are the same, then the pre-tip amount counts towards
// the swap output
if (p.requiredTokenIn.token == p.requiredTokenOut.token) {
swapAmountOut += preTipAmount;
}
//////////////////////////////////////////////////////////////
// POST-SWAP
//////////////////////////////////////////////////////////////
uint256 postTipAmount = _tipAndTransferOutput(
p,
postSwapBalance,
swapAmountOut
);
emit SwapAndTip({
caller: msg.sender,
requiredTokenIn: address(p.requiredTokenIn.token),
requiredTokenOut: address(p.requiredTokenOut.token),
suppliedAmountIn: suppliedAmountIn,
swapAmountOut: swapAmountOut,
maxPreTip: p.maxPreTip,
maxPostTip: p.maxPostTip,
preTip: preTipAmount,
postTip: postTipAmount
});
}
/// Check that this exact swapAndTip call was approved and then nullify the
/// hash. The hash is single-use.
function _checkSwapAndTipHash(SwapAndTipParams calldata p) private {
require(
keccak256(abi.encode(p)) == approvedSwapAndTipHash,
"DPR: wrong hash"
);
// Nullify the hash. The hash is single-use.
approvedSwapAndTipHash = NO_APPROVED_HASH;
}
/// Collect the swap input tokens from the caller and approve the swapper
function _collectSwapInput(
SwapAndTipParams calldata p
) private returns (uint256 preTipAmount, uint256 suppliedAmountIn) {
if (address(p.requiredTokenIn.token) == address(0)) {
(preTipAmount, suppliedAmountIn) = _collectNativeSwapInput(p);
} else {
(preTipAmount, suppliedAmountIn) = _collectERC20SwapInput(p);
}
}
function _collectNativeSwapInput(
SwapAndTipParams calldata p
) private returns (uint256 preTipAmount, uint256 suppliedAmountIn) {
require(
address(p.requiredTokenIn.token) == address(0),
"DPR: not native token"
);
suppliedAmountIn = msg.value;
// Check that the tip doesn't exceed maxPreTip
if (suppliedAmountIn < p.requiredTokenIn.amount) {
preTipAmount = p.requiredTokenIn.amount - suppliedAmountIn;
require(preTipAmount <= p.maxPreTip, "DPR: excessive pre tip");
// Ensure the relayer has enough balance to cover the tip
uint256 balance = TokenUtils.getBalanceOf({
token: p.requiredTokenIn.token,
addr: address(this)
});
require(
balance >= p.requiredTokenIn.amount,
"DPR: balance less than required input"
);
}
// Inner swap should not require more than the required input amount
require(
p.innerSwap.value <= p.requiredTokenIn.amount,
"DPR: wrong inner swap value"
);
}
function _collectERC20SwapInput(
SwapAndTipParams calldata p
) private returns (uint256 preTipAmount, uint256 suppliedAmountIn) {
require(
address(p.requiredTokenIn.token) != address(0),
"DPR: not ERC20 token"
);
suppliedAmountIn = TokenUtils.getBalanceOf({
token: p.requiredTokenIn.token,
addr: msg.sender
});
// Pull the tokens the user supplied
TokenUtils.transferFrom({
token: p.requiredTokenIn.token,
from: msg.sender,
to: address(this),
amount: suppliedAmountIn
});
// Check that the tip doesn't exceed maxPreTip
if (suppliedAmountIn < p.requiredTokenIn.amount) {
preTipAmount = p.requiredTokenIn.amount - suppliedAmountIn;
require(preTipAmount <= p.maxPreTip, "DPR: excessive pre tip");
// Ensure the relayer has enough balance to cover the tip
uint256 balance = TokenUtils.getBalanceOf({
token: p.requiredTokenIn.token,
addr: address(this)
});
require(
balance >= p.requiredTokenIn.amount,
"DPR: balance less than required input"
);
}
// Approve the swapper for the full required amount. The difference
// is tipped by the contract.
if (p.innerSwap.to != address(0)) {
p.requiredTokenIn.token.forceApprove({
spender: p.innerSwap.to,
value: p.requiredTokenIn.amount
});
}
}
function _refundOverPayment(
SwapAndTipParams calldata p,
uint256 suppliedAmountIn
) private {
// No refund address
if (p.refundAddress == address(0)) return;
// No overpayment happened
if (suppliedAmountIn <= p.requiredTokenIn.amount) return;
uint256 overpay = suppliedAmountIn - p.requiredTokenIn.amount;
TokenUtils.transfer({
token: p.requiredTokenIn.token,
recipient: p.refundAddress,
amount: overpay
});
emit OverPaymentRefunded({
refundAddress: p.refundAddress,
token: address(p.requiredTokenIn.token),
amount: overpay
});
}
// Execute the swapAndTip inner swap
function _executeSwap(
SwapAndTipParams calldata p
) private returns (uint256 postSwapBalance) {
// Zero address indicates no inner swap
if (p.innerSwap.to != address(0)) {
(bool success, ) = p.innerSwap.to.call{value: p.innerSwap.value}(
p.innerSwap.data
);
require(success, "DPR: inner swap failed");
}
postSwapBalance = TokenUtils.getBalanceOf({
token: p.requiredTokenOut.token,
addr: address(this)
});
}
function _tipAndTransferOutput(
SwapAndTipParams calldata p,
uint256 postSwapBalance,
uint256 swapAmountOut
) private returns (uint256 postTipAmount) {
// If the swap output is less than required, check that the tip doesn't
// exceed maxPostTip
if (swapAmountOut < p.requiredTokenOut.amount) {
postTipAmount = p.requiredTokenOut.amount - swapAmountOut;
require(postTipAmount <= p.maxPostTip, "DPR: excessive post tip");
// Ensure the relayer has enough balance to cover the tip
require(
postSwapBalance >= p.requiredTokenOut.amount,
"DPR: balance less than required output"
);
}
// Transfer the required output tokens to the caller, tipping the
// shortfall if needed. If there are surplus tokens from the swap, keep
// them.
TokenUtils.transfer({
token: p.requiredTokenOut.token,
recipient: payable(msg.sender),
amount: p.requiredTokenOut.amount
});
}
// ------------------------------------------------------------
// Order Intent Execution
// ------------------------------------------------------------
/// Starts a new intent.
function startIntent(
Call[] calldata preCalls,
DaimoPay dp,
address intentAddr,
PayIntent calldata intent,
IERC20[] calldata paymentTokens,
Call[] calldata startCalls,
bytes calldata bridgeExtraData,
Call[] calldata postCalls,
bytes32 swapAndTipHash
) public payable onlyRole(DEFAULT_ADMIN_ROLE) {
approvedSwapAndTipHash = swapAndTipHash;
// Get native-token balance of intent addr
uint256 totCallVal = 0;
for (uint256 i = 0; i < startCalls.length; ++i) {
Call calldata call = startCalls[i];
totCallVal += call.value;
}
// If we have any extra native balance, revert & retry.
require(totCallVal == intentAddr.balance, "DPR: wrong native balance");
// Make pre-start calls
for (uint256 i = 0; i < preCalls.length; ++i) {
Call calldata call = preCalls[i];
(bool success, ) = call.to.call{value: call.value}(call.data);
require(success, "DPR: preCall failed");
}
dp.startIntent({
intent: intent,
paymentTokens: paymentTokens,
calls: startCalls,
bridgeExtraData: bridgeExtraData
});
// Make post-start calls
for (uint256 i = 0; i < postCalls.length; ++i) {
Call calldata call = postCalls[i];
(bool success, ) = call.to.call{value: call.value}(call.data);
require(success, "DPR: postCall failed");
}
approvedSwapAndTipHash = NO_APPROVED_HASH;
}
function fastFinish(
Call[] calldata preCalls,
DaimoPay dp,
PayIntent calldata intent,
TokenAmount calldata tokenIn,
Call[] calldata calls,
Call[] calldata postCalls,
bytes32 swapAndTipHash
) public onlyRole(DEFAULT_ADMIN_ROLE) {
approvedSwapAndTipHash = swapAndTipHash;
// Make pre-finish calls
for (uint256 i = 0; i < preCalls.length; ++i) {
Call calldata call = preCalls[i];
(bool success, ) = call.to.call{value: call.value}(call.data);
require(success, "DPR: preCall failed");
}
TokenUtils.transfer({
token: tokenIn.token,
recipient: payable(address(dp)),
amount: tokenIn.amount
});
IERC20[] memory tokens = new IERC20[](1);
tokens[0] = tokenIn.token;
dp.fastFinishIntent({intent: intent, calls: calls, tokens: tokens});
// Make post-finish calls
for (uint256 i = 0; i < postCalls.length; ++i) {
Call calldata call = postCalls[i];
(bool success, ) = call.to.call{value: call.value}(call.data);
require(success, "DPR: postCall failed");
}
// Reset the allowance back to zero for cleanliness/security.
TokenUtils.approve({
token: tokenIn.token,
spender: address(dp),
amount: 0
});
approvedSwapAndTipHash = NO_APPROVED_HASH;
}
function claimAndKeep(
Call[] calldata preCalls,
DaimoPay dp,
PayIntent calldata intent,
Call[] calldata claimCalls,
Call[] calldata postCalls,
bytes32 swapAndTipHash
) public onlyRole(DEFAULT_ADMIN_ROLE) {
approvedSwapAndTipHash = swapAndTipHash;
// Make pre-claim calls
for (uint256 i = 0; i < preCalls.length; ++i) {
Call calldata call = preCalls[i];
(bool success, ) = call.to.call{value: call.value}(call.data);
require(success, "DPR: preCall failed");
}
// Execute the claim intent
dp.claimIntent({intent: intent, calls: claimCalls});
// Make post-claim calls
for (uint256 i = 0; i < postCalls.length; ++i) {
Call calldata call = postCalls[i];
(bool success, ) = call.to.call{value: call.value}(call.data);
require(success, "DPR: postCall failed");
}
approvedSwapAndTipHash = NO_APPROVED_HASH;
}
// ------------------------------------------------------------
// Deposit Address Execution
// ------------------------------------------------------------
/// Starts a new Deposit Address fulfillment.
function daStart(
Call[] calldata preCalls,
DepositAddressManager manager,
DAParams calldata params,
IERC20 paymentToken,
TokenAmount calldata bridgeTokenOut,
PriceData calldata paymentTokenPrice,
PriceData calldata bridgeTokenInPrice,
bytes32 relaySalt,
Call[] calldata startCalls,
bytes calldata bridgeExtraData,
Call[] calldata postCalls,
bytes32 swapAndTipHash
) public payable onlyRole(DEFAULT_ADMIN_ROLE) {
approvedSwapAndTipHash = swapAndTipHash;
// Make pre-start calls
for (uint256 i = 0; i < preCalls.length; ++i) {
Call calldata c = preCalls[i];
(bool success, ) = c.to.call{value: c.value}(c.data);
require(success, "DPR: preCall failed");
}
// Execute the start
manager.start({
params: params,
paymentToken: paymentToken,
bridgeTokenOut: bridgeTokenOut,
paymentTokenPrice: paymentTokenPrice,
bridgeTokenInPrice: bridgeTokenInPrice,
relaySalt: relaySalt,
calls: startCalls,
bridgeExtraData: bridgeExtraData
});
// Make post-start calls
for (uint256 i = 0; i < postCalls.length; ++i) {
Call calldata c = postCalls[i];
(bool success, ) = c.to.call{value: c.value}(c.data);
require(success, "DPR: postCall failed");
}
approvedSwapAndTipHash = NO_APPROVED_HASH;
}
/// Same-chain finish for a Deposit Address fulfillment.
function daSameChainFinish(
Call[] calldata preCalls,
DepositAddressManager manager,
DAParams calldata params,
IERC20 paymentToken,
PriceData calldata paymentTokenPrice,
PriceData calldata toTokenPrice,
Call[] calldata calls,
Call[] calldata postCalls,
bytes32 swapAndTipHash
) public payable onlyRole(DEFAULT_ADMIN_ROLE) {
approvedSwapAndTipHash = swapAndTipHash;
// Make pre-finish calls
for (uint256 i = 0; i < preCalls.length; ++i) {
Call calldata c = preCalls[i];
(bool success, ) = c.to.call{value: c.value}(c.data);
require(success, "DPR: preCall failed");
}
// Execute the same-chain finish
manager.sameChainFinish({
params: params,
paymentToken: paymentToken,
paymentTokenPrice: paymentTokenPrice,
toTokenPrice: toTokenPrice,
calls: calls
});
// Make post-finish calls
for (uint256 i = 0; i < postCalls.length; ++i) {
Call calldata c = postCalls[i];
(bool success, ) = c.to.call{value: c.value}(c.data);
require(success, "DPR: postCall failed");
}
approvedSwapAndTipHash = NO_APPROVED_HASH;
}
/// Fast finish for a Deposit Address fulfillment.
function daFastFinish(
Call[] calldata preCalls,
DepositAddressManager manager,
DAParams calldata params,
TokenAmount calldata tokenIn,
PriceData calldata bridgeTokenOutPrice,
PriceData calldata toTokenPrice,
TokenAmount calldata bridgeTokenOut,
bytes32 relaySalt,
Call[] calldata calls,
uint256 sourceChainId,
Call[] calldata postCalls,
bytes32 swapAndTipHash
) public payable onlyRole(DEFAULT_ADMIN_ROLE) {
approvedSwapAndTipHash = swapAndTipHash;
// Make pre-finish calls
for (uint256 i = 0; i < preCalls.length; ++i) {
Call calldata c = preCalls[i];
(bool success, ) = c.to.call{value: c.value}(c.data);
require(success, "DPR: preCall failed");
}
// Transfer the input tokens to the manager so that it can immediately
// forward them to the executor inside fastFinish.
TokenUtils.transfer({
token: tokenIn.token,
recipient: payable(address(manager)),
amount: tokenIn.amount
});
// Call fastFinish on the DepositAddressManager.
manager.fastFinish({
params: params,
calls: calls,
token: tokenIn.token,
bridgeTokenOutPrice: bridgeTokenOutPrice,
toTokenPrice: toTokenPrice,
bridgeTokenOut: bridgeTokenOut,
relaySalt: relaySalt,
sourceChainId: sourceChainId
});
// Make post-finish calls
for (uint256 i = 0; i < postCalls.length; ++i) {
Call calldata c = postCalls[i];
(bool success, ) = c.to.call{value: c.value}(c.data);
require(success, "DPR: postCall failed");
}
// Reset the allowance back to zero for cleanliness/security.
TokenUtils.approve({
token: tokenIn.token,
spender: address(manager),
amount: 0
});
approvedSwapAndTipHash = NO_APPROVED_HASH;
}
/// Claim a Deposit Address fulfillment after bridge arrival.
function daClaim(
Call[] calldata preCalls,
DepositAddressManager manager,
DAParams calldata params,
Call[] calldata calls,
TokenAmount calldata bridgeTokenOut,
PriceData calldata bridgeTokenOutPrice,
PriceData calldata toTokenPrice,
bytes32 relaySalt,
uint256 sourceChainId,
Call[] calldata postCalls,
bytes32 swapAndTipHash
) public onlyRole(DEFAULT_ADMIN_ROLE) {
approvedSwapAndTipHash = swapAndTipHash;
// Make pre-claim calls
for (uint256 i = 0; i < preCalls.length; ++i) {
Call calldata c = preCalls[i];
(bool success, ) = c.to.call{value: c.value}(c.data);
require(success, "DPR: preCall failed");
}
// Execute the claim
manager.claim({
params: params,
calls: calls,
bridgeTokenOut: bridgeTokenOut,
bridgeTokenOutPrice: bridgeTokenOutPrice,
toTokenPrice: toTokenPrice,
relaySalt: relaySalt,
sourceChainId: sourceChainId
});
// Make post-claim calls
for (uint256 i = 0; i < postCalls.length; ++i) {
Call calldata c = postCalls[i];
(bool success, ) = c.to.call{value: c.value}(c.data);
require(success, "DPR: postCall failed");
}
approvedSwapAndTipHash = NO_APPROVED_HASH;
}
/// Hop a Deposit Address fulfillment: pull from fulfillment address,
/// initiate bridge to dest.
function daHopStart(
Call[] calldata preCalls,
DepositAddressManager manager,
DAParams calldata params,
TokenAmount calldata leg1BridgeTokenOut,
uint256 leg1SourceChainId,
PriceData calldata leg1BridgeTokenOutPrice,
TokenAmount calldata leg2BridgeTokenOut,
PriceData calldata leg2BridgeTokenInPrice,
bytes32 relaySalt,
Call[] calldata calls,
bytes calldata bridgeExtraData,
Call[] calldata postCalls,
bytes32 swapAndTipHash
) public payable onlyRole(DEFAULT_ADMIN_ROLE) {
approvedSwapAndTipHash = swapAndTipHash;
// Make pre-hop calls
for (uint256 i = 0; i < preCalls.length; ++i) {
Call calldata c = preCalls[i];
(bool success, ) = c.to.call{value: c.value}(c.data);
require(success, "DPR: preCall failed");
}
// Execute the hop start
manager.hopStart({
params: params,
leg1BridgeTokenOut: leg1BridgeTokenOut,
leg1SourceChainId: leg1SourceChainId,
leg1BridgeTokenOutPrice: leg1BridgeTokenOutPrice,
leg2BridgeTokenOut: leg2BridgeTokenOut,
leg2BridgeTokenInPrice: leg2BridgeTokenInPrice,
relaySalt: relaySalt,
calls: calls,
bridgeExtraData: bridgeExtraData
});
// Make post-hop calls
for (uint256 i = 0; i < postCalls.length; ++i) {
Call calldata c = postCalls[i];
(bool success, ) = c.to.call{value: c.value}(c.data);
require(success, "DPR: postCall failed");
}
approvedSwapAndTipHash = NO_APPROVED_HASH;
}
receive() external payable {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC-20 standard as defined in the ERC.
*/
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 value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` 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 value) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
import {IERC1363} from "../../../interfaces/IERC1363.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC-20 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 {
/**
* @dev An operation with an ERC-20 token failed.
*/
error SafeERC20FailedOperation(address token);
/**
* @dev Indicates a failed `decreaseAllowance` request.
*/
error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);
/**
* @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
}
/**
* @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
* calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
*/
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
}
/**
* @dev Variant of {safeTransfer} that returns a bool instead of reverting if the operation is not successful.
*/
function trySafeTransfer(IERC20 token, address to, uint256 value) internal returns (bool) {
return _callOptionalReturnBool(token, abi.encodeCall(token.transfer, (to, value)));
}
/**
* @dev Variant of {safeTransferFrom} that returns a bool instead of reverting if the operation is not successful.
*/
function trySafeTransferFrom(IERC20 token, address from, address to, uint256 value) internal returns (bool) {
return _callOptionalReturnBool(token, abi.encodeCall(token.transferFrom, (from, to, value)));
}
/**
* @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*
* IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
* smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
* this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
* that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
forceApprove(token, spender, oldAllowance + value);
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
* value, non-reverting calls are assumed to be successful.
*
* IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
* smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
* this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
* that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
*/
function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
unchecked {
uint256 currentAllowance = token.allowance(address(this), spender);
if (currentAllowance < requestedDecrease) {
revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
}
forceApprove(token, spender, currentAllowance - requestedDecrease);
}
}
/**
* @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
* to be set to zero before setting it to a non-zero value, such as USDT.
*
* NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function
* only sets the "standard" allowance. Any temporary allowance will remain active, in addition to the value being
* set here.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no
* code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
* targeting contracts.
*
* Reverts if the returned value is other than `true`.
*/
function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
if (to.code.length == 0) {
safeTransfer(token, to, value);
} else if (!token.transferAndCall(to, value, data)) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target
* has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
* targeting contracts.
*
* Reverts if the returned value is other than `true`.
*/
function transferFromAndCallRelaxed(
IERC1363 token,
address from,
address to,
uint256 value,
bytes memory data
) internal {
if (to.code.length == 0) {
safeTransferFrom(token, from, to, value);
} else if (!token.transferFromAndCall(from, to, value, data)) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no
* code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
* targeting contracts.
*
* NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.
* Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}
* once without retrying, and relies on the returned value to be true.
*
* Reverts if the returned value is other than `true`.
*/
function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
if (to.code.length == 0) {
forceApprove(token, to, value);
} else if (!token.approveAndCall(to, value, data)) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @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).
*
* This is a variant of {_callOptionalReturnBool} that reverts if call fails to meet the requirements.
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
uint256 returnSize;
uint256 returnValue;
assembly ("memory-safe") {
let success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
// bubble errors
if iszero(success) {
let ptr := mload(0x40)
returndatacopy(ptr, 0, returndatasize())
revert(ptr, returndatasize())
}
returnSize := returndatasize()
returnValue := mload(0)
}
if (returnSize == 0 ? address(token).code.length == 0 : returnValue != 1) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @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).
*
* This is a variant of {_callOptionalReturn} that silently catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
bool success;
uint256 returnSize;
uint256 returnValue;
assembly ("memory-safe") {
success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
returnSize := returndatasize()
returnValue := mload(0)
}
return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)
pragma solidity ^0.8.20;
import {IAccessControl} from "./IAccessControl.sol";
import {Context} from "../utils/Context.sol";
import {ERC165} from "../utils/introspection/ERC165.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```solidity
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```solidity
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}
* to enforce additional security measures for this role.
*/
abstract contract AccessControl is Context, IAccessControl, ERC165 {
struct RoleData {
mapping(address account => bool) hasRole;
bytes32 adminRole;
}
mapping(bytes32 role => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with an {AccessControlUnauthorizedAccount} error including the required role.
*/
modifier onlyRole(bytes32 role) {
_checkRole(role);
_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view virtual returns (bool) {
return _roles[role].hasRole[account];
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
* is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
*/
function _checkRole(bytes32 role) internal view virtual {
_checkRole(role, _msgSender());
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`
* is missing `role`.
*/
function _checkRole(bytes32 role, address account) internal view virtual {
if (!hasRole(role, account)) {
revert AccessControlUnauthorizedAccount(account, role);
}
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleGranted} event.
*/
function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleRevoked} event.
*/
function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been revoked `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `callerConfirmation`.
*
* May emit a {RoleRevoked} event.
*/
function renounceRole(bytes32 role, address callerConfirmation) public virtual {
if (callerConfirmation != _msgSender()) {
revert AccessControlBadConfirmation();
}
_revokeRole(role, callerConfirmation);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
bytes32 previousAdminRole = getRoleAdmin(role);
_roles[role].adminRole = adminRole;
emit RoleAdminChanged(role, previousAdminRole, adminRole);
}
/**
* @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.
*
* Internal function without access restriction.
*
* May emit a {RoleGranted} event.
*/
function _grantRole(bytes32 role, address account) internal virtual returns (bool) {
if (!hasRole(role, account)) {
_roles[role].hasRole[account] = true;
emit RoleGranted(role, account, _msgSender());
return true;
} else {
return false;
}
}
/**
* @dev Attempts to revoke `role` from `account` and returns a boolean indicating if `role` was revoked.
*
* Internal function without access restriction.
*
* May emit a {RoleRevoked} event.
*/
function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {
if (hasRole(role, account)) {
_roles[role].hasRole[account] = false;
emit RoleRevoked(role, account, _msgSender());
return true;
} else {
return false;
}
}
}// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.12; import "openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol"; import "openzeppelin-contracts/contracts/utils/ReentrancyGuard.sol"; import "./DaimoPayBridger.sol"; import "./DaimoPayExecutor.sol"; import "./PayIntentFactory.sol"; import "./TokenUtils.sol"; // A Daimo Pay transfer has 4 steps: // 1. Alice sends (tokenIn, amountIn) to the intent address on chain A. This is // a simple erc20 transfer. // 2. Relayer swaps tokenIn to bridgeTokenIn and initiates the bridge using // startIntent. The intent commits to a destination bridgeTokenOut, and the // bridger guarantees this amount will show up on chain B (or reverts if the // amount of bridgeTokenIn is insufficient). // 3. Relayer immediately calls fastFinishIntent on chain B, paying Bob. // 4. Finally, the slow bridge transfer arrives on chain B later, and the // relayer can call claimIntent. // For simplicity, a same-chain Daimo Pay transfer follows the same steps. // Instead of swap+bridge, startIntent only swaps and verifies correct output. // FastFinish remains optional but is unnecessary. Claim completes the intent. /// @author Daimo, Inc /// @custom:security-contact [email protected] /// @notice Enables fast cross-chain transfers with optimistic intents. /// WARNING: Never approve tokens directly to this contract. Never transfer /// tokens to this contract as a standalone transaction. Such tokens can be /// stolen by anyone. Instead: /// - Users should only interact by sending funds to an intent address. /// - Relayers should transfer funds and call this contract atomically via their /// own contracts. /// /// @dev Allows optimistic fast intents. Alice initiates a transfer by calling /// `startIntent` on chain A. After the bridging delay (e.g. 10+ min for CCTP), /// funds arrive at the intent address deployed on chain B. Bob (or anyone) can /// call `claimIntent` on chain B to finish her intent. /// /// Alternatively, immediately after the first call, a relayer can call /// `fastFinishIntent` to finish Alice's intent immediately. Later, when the /// funds arrive from the bridge, the relayer will call `claimIntent` to get /// repaid for their fast-finish. contract DaimoPay is ReentrancyGuard { using SafeERC20 for IERC20; address constant ADDR_MAX = 0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF; /// Efficiently generates + deploys CREATE2 intent addresses. PayIntentFactory public immutable intentFactory; /// Contract that executes arbitrary contract calls on behalf of the /// DaimoPay escrow contract. DaimoPayExecutor public immutable executor; /// On the source chain, record intents that have been sent. mapping(address intentAddr => bool) public intentSent; /// On the destination chain, record the status of intents: /// - address(0) = not finished. /// - Relayer address = fast-finished, awaiting claim to repay relayer. /// - ADDR_MAX = claimed. any additional funds received are refunded. mapping(address intentAddr => address) public intentToRecipient; /// Intent initiated on chain A event Start(address indexed intentAddr, PayIntent intent); /// Intent completed ~immediately on chain B event FastFinish(address indexed intentAddr, address indexed newRecipient); /// Intent settled later, once the underlying bridge transfer completes. /// Record the final recipient of the claim: /// - If fast finished, the relayer. /// - Otherwise, the original recipient (Bob). event Claim(address indexed intentAddr, address indexed finalRecipient); /// When the intent is completed, emit this event. `success=false` indicates /// that the final call reverted, and funds were refunded to refundAddr. event IntentFinished( address indexed intentAddr, address indexed destinationAddr, bool indexed success, PayIntent intent ); /// When a double-paid intent is refunded, emit this event event IntentRefunded( address indexed intentAddr, address indexed refundAddr, IERC20[] tokens, uint256[] amounts, PayIntent intent ); constructor(PayIntentFactory _intentFactory) { intentFactory = _intentFactory; executor = new DaimoPayExecutor(address(this)); } /// Starts an intent, bridging to the destination chain if necessary. function startIntent( PayIntent calldata intent, IERC20[] calldata paymentTokens, Call[] calldata calls, bytes calldata bridgeExtraData ) public nonReentrant { require( block.timestamp < intent.expirationTimestamp, "DP: intent expired" ); PayIntentContract intentContract = intentFactory.createIntent(intent); // Ensure we don't reuse a nonce in the case where Alice is sending to // same destination with the same nonce multiple times. require(!intentSent[address(intentContract)], "DP: already sent"); // Can't call startIntent if the intent has already been claimed. require( intentToRecipient[address(intentContract)] != ADDR_MAX, "DP: already claimed" ); // Mark the intent as sent intentSent[address(intentContract)] = true; // Transfer from intent contract to the executor contract to run // relayer-provided calls. intentContract.sendTokens({ intent: intent, tokens: paymentTokens, recipient: payable(address(executor)) }); if (intent.toChainId == block.chainid) { // Same chain. Swap the tokens to one of the bridgeTokenOutOptions // and send them back to the intent contract for later claimIntent. // Run arbitrary calls provided by the relayer. These will generally // approve the swap contract and swap if necessary. // The executor contract checks that at least one of the // bridgeTokenOutOptions is present. Any surplus tokens are given // to the caller. executor.execute({ calls: calls, expectedOutput: intent.bridgeTokenOutOptions, recipient: payable(address(intentContract)), surplusRecipient: payable(msg.sender) }); } else { // Different chains. Get the input token and amount required to // initiate bridging IDaimoPayBridger bridger = intent.bridger; (address bridgeTokenIn, uint256 inAmount) = bridger .getBridgeTokenIn({ toChainId: intent.toChainId, bridgeTokenOutOptions: intent.bridgeTokenOutOptions }); // Run arbitrary calls provided by the relayer. These will generally // approve the swap contract and swap if necessary. // The executor contract checks that the output is sufficient. Any // surplus tokens are given to the caller. TokenAmount[] memory expectedOutput = new TokenAmount[](1); expectedOutput[0] = TokenAmount({ token: IERC20(bridgeTokenIn), amount: inAmount }); executor.execute({ calls: calls, expectedOutput: expectedOutput, recipient: payable(address(this)), surplusRecipient: payable(msg.sender) }); // Approve bridger and initiate bridging IERC20(bridgeTokenIn).forceApprove({ spender: address(bridger), value: inAmount }); bridger.sendToChain({ toChainId: intent.toChainId, toAddress: address(intentContract), bridgeTokenOutOptions: intent.bridgeTokenOutOptions, refundAddress: address(intentContract), extraData: bridgeExtraData }); } emit Start({intentAddr: address(intentContract), intent: intent}); } /// The relayer calls this function to complete an intent immediately on /// the destination chain. /// /// The relayer must call this function and transfer the necessary tokens to /// this contract in the same transaction. This function executes arbitrary /// calls specified by the relayer, e.g. to convert the transferred tokens /// into the required amount of finalCallToken. /// /// Later, when the slower bridge transfer arrives, the relayer will be able /// to claim the bridged tokens. function fastFinishIntent( PayIntent calldata intent, Call[] calldata calls, IERC20[] calldata tokens ) public nonReentrant { require(intent.toChainId == block.chainid, "DP: wrong chain"); require( block.timestamp < intent.expirationTimestamp, "DP: intent expired" ); // Calculate intent address address intentAddr = intentFactory.getIntentAddress(intent); // Optimistic fast finish is only for transfers which haven't already // been fastFinished or claimed. require( intentToRecipient[intentAddr] == address(0), "DP: already finished" ); // Record relayer as new recipient when the bridged tokens arrive intentToRecipient[intentAddr] = msg.sender; // Transfer tokens to the executor contract to run relayer-provided // calls in _finishIntent. uint256 n = tokens.length; for (uint256 i = 0; i < n; ++i) { TokenUtils.transferBalance({ token: tokens[i], recipient: payable(address(executor)) }); } // Finish the intent and return any leftover tokens to the caller _finishIntent({intentAddr: intentAddr, intent: intent, calls: calls}); emit FastFinish({intentAddr: intentAddr, newRecipient: msg.sender}); } /// Completes an intent, claiming funds. The bridge transfer must already /// have been completed--tokens are already in the intent contract. /// /// If FastFinish happened for this intent, then the recipient is the /// relayer who fastFinished the intent. Otherwise, the recipient remains /// the original address. function claimIntent( PayIntent calldata intent, Call[] calldata calls ) public nonReentrant { require(intent.toChainId == block.chainid, "DP: wrong chain"); require( block.timestamp < intent.expirationTimestamp, "DP: intent expired" ); PayIntentContract intentContract = intentFactory.createIntent(intent); // Check the recipient for this intent. address recipient = intentToRecipient[address(intentContract)]; // If intent is double-paid after it has already been claimed, then // the recipient should call refundIntent to get their funds back. require(recipient != ADDR_MAX, "DP: already claimed"); // Mark intent as claimed intentToRecipient[address(intentContract)] = ADDR_MAX; if (recipient == address(0)) { // No relayer showed up, so just complete the intent. recipient = intent.finalCall.to; // Send tokens from the intent contract to the executor contract // to run relayer-provided calls in _finishIntent. // The intent contract will check that sufficient bridge tokens // were received. intentContract.checkBalanceAndSendTokens({ intent: intent, tokenAmounts: intent.bridgeTokenOutOptions, recipient: payable(address(executor)) }); // Complete the intent and return any leftover tokens to the caller _finishIntent({ intentAddr: address(intentContract), intent: intent, calls: calls }); } else { // Otherwise, the relayer fastFinished the intent. Repay them. // The intent contract will check that sufficient bridge tokens // were received. intentContract.checkBalanceAndSendTokens({ intent: intent, tokenAmounts: intent.bridgeTokenOutOptions, recipient: payable(recipient) }); } emit Claim({ intentAddr: address(intentContract), finalRecipient: recipient }); } /// Refund a double-paid intent. On the source chain, refund only if the /// intent has already been started. On the destination chain, refund only /// if the intent has already been claimed. function refundIntent( PayIntent calldata intent, IERC20[] calldata tokens ) public nonReentrant { PayIntentContract intentContract = intentFactory.createIntent(intent); address intentAddr = address(intentContract); bool expired = block.timestamp >= intent.expirationTimestamp; if (intent.toChainId == block.chainid) { // Refund only if already claimed or the intent has expired. bool claimed = intentToRecipient[address(intentContract)] == ADDR_MAX; require(claimed || expired, "DP: not claimed"); } else { // Refund only if already started or the intent has expired. require(intentSent[intentAddr] || expired, "DP: not started"); } // Send tokens directly from intent contract to the refund address. uint256[] memory amounts = intentContract.sendTokens({ intent: intent, tokens: tokens, recipient: payable(intent.refundAddress) }); emit IntentRefunded({ intentAddr: intentAddr, refundAddr: intent.refundAddress, tokens: tokens, amounts: amounts, intent: intent }); } /// Execute the calls provided by the relayer and check that there is /// sufficient finalCallToken. Then, if the intent has a finalCall, make /// the intent call. Otherwise, transfer the token to the final address. /// Any surplus tokens are given to the caller. /// This function assumes that tokens are already transferred to the /// executor contract before being called. function _finishIntent( address intentAddr, PayIntent calldata intent, Call[] calldata calls ) internal { // Run arbitrary calls provided by the relayer. These will generally // approve the swap contract and swap if necessary. Any surplus tokens // are given to the caller. TokenAmount[] memory finalCallAmount = new TokenAmount[](1); finalCallAmount[0] = intent.finalCallToken; executor.execute({ calls: calls, expectedOutput: finalCallAmount, recipient: payable(address(this)), surplusRecipient: payable(msg.sender) }); bool success; if (intent.finalCall.data.length > 0) { // If the intent is a call, make the call success = TokenUtils.tryTransfer({ token: intent.finalCallToken.token, recipient: payable(address(executor)), amount: intent.finalCallToken.amount }); if (success) { success = executor.executeFinalCall({ finalCall: intent.finalCall, finalCallToken: intent.finalCallToken, refundAddr: payable(intent.refundAddress) }); } } else { // If the final call is a transfer, transfer the token. success = TokenUtils.tryTransfer({ token: intent.finalCallToken.token, recipient: payable(intent.finalCall.to), amount: intent.finalCallToken.amount }); } // Transfer any excess to the refund address. TokenUtils.transferBalance({ token: intent.finalCallToken.token, recipient: payable(intent.refundAddress) }); emit IntentFinished({ intentAddr: intentAddr, destinationAddr: intent.finalCall.to, success: success, intent: intent }); } receive() external payable {} }
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.12;
import "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol";
import "openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol";
/// Asset amount, e.g. $100 USDC or 0.1 ETH
struct TokenAmount {
/// Zero address = native asset, e.g. ETH
IERC20 token;
uint256 amount;
}
/// Event emitted when native tokens (ETH, etc.) are transferred
event NativeTransfer(address indexed from, address indexed to, uint256 value);
/// Utility functions that work for both ERC20 and native tokens.
library TokenUtils {
using SafeERC20 for IERC20;
/// Returns ERC20 or ETH balance.
function getBalanceOf(
IERC20 token,
address addr
) internal view returns (uint256) {
if (address(token) == address(0)) {
return addr.balance;
} else {
return token.balanceOf(addr);
}
}
/// Approves a token transfer.
function approve(IERC20 token, address spender, uint256 amount) internal {
if (address(token) != address(0)) {
token.forceApprove({spender: spender, value: amount});
} // Do nothing for native token.
}
/// Sends an ERC20 or ETH transfer. For ETH, verify call success.
function transfer(
IERC20 token,
address payable recipient,
uint256 amount
) internal {
if (recipient == address(this)) return; // No-op: tokens already here
if (address(token) != address(0)) {
token.safeTransfer({to: recipient, value: amount});
} else {
// Native token transfer
(bool success, ) = recipient.call{value: amount}("");
require(success, "TokenUtils: ETH transfer failed");
}
}
/// Sends an ERC20 or ETH transfer. Returns true if successful.
function tryTransfer(
IERC20 token,
address payable recipient,
uint256 amount
) internal returns (bool) {
if (recipient == address(this)) return true; // No-op: tokens already here
if (address(token) != address(0)) {
return token.trySafeTransfer({to: recipient, value: amount});
} else {
(bool success, ) = recipient.call{value: amount}("");
return success;
}
}
/// Sends an ERC20 transfer.
function transferFrom(
IERC20 token,
address from,
address to,
uint256 amount
) internal {
require(
address(token) != address(0),
"TokenUtils: ETH transferFrom must be caller"
);
token.safeTransferFrom({from: from, to: to, value: amount});
}
/// Sends any token balance in the contract to the recipient.
function transferBalance(
IERC20 token,
address payable recipient
) internal returns (uint256) {
uint256 balance = getBalanceOf({token: token, addr: address(this)});
if (balance > 0) {
transfer({token: token, recipient: recipient, amount: balance});
}
return balance;
}
/// Check that the address has enough of at least one of the tokenAmounts.
/// Returns the index of the first token that has sufficient balance, or
/// the length of the tokenAmounts array if no token has sufficient balance.
function checkBalance(
TokenAmount[] calldata tokenAmounts
) internal view returns (uint256) {
uint256 n = tokenAmounts.length;
for (uint256 i = 0; i < n; ++i) {
TokenAmount calldata tokenAmount = tokenAmounts[i];
uint256 balance = getBalanceOf({
token: tokenAmount.token,
addr: address(this)
});
if (balance >= tokenAmount.amount) {
return i;
}
}
return n;
}
/// @notice Converts a token amount between different decimal representations.
/// @param amount The token amount in the source decimal format.
/// @param fromDecimals Decimals of the source token (e.g., 6 for USDC).
/// @param toDecimals Decimals of the destination token (e.g., 18 for DAI).
/// @param roundUp If true, rounds up when scaling down (losing precision).
/// Use true when calculating required input amounts (user pays more).
/// Use false when calculating output amounts (user receives less).
/// @return The converted amount in the destination decimal format.
function convertTokenAmountDecimals(
uint256 amount,
uint256 fromDecimals,
uint256 toDecimals,
bool roundUp
) internal pure returns (uint256) {
if (toDecimals == fromDecimals) {
return amount;
} else if (toDecimals > fromDecimals) {
return amount * 10 ** (toDecimals - fromDecimals);
} else {
uint256 decimalDiff = fromDecimals - toDecimals;
uint256 divisor = 10 ** decimalDiff;
if (roundUp) {
return (amount + divisor - 1) / divisor;
} else {
return amount / divisor;
}
}
}
}// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.12; import "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; import "openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol"; import "openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "openzeppelin-contracts/contracts/utils/ReentrancyGuard.sol"; import "openzeppelin-contracts/contracts/access/Ownable.sol"; import "openzeppelin-contracts/contracts/utils/Create2.sol"; import "./DepositAddressFactory.sol"; import "./DepositAddress.sol"; import "./DaimoPayExecutor.sol"; import "./TokenUtils.sol"; import "./SwapMath.sol"; import "./interfaces/IDaimoPayBridger.sol"; import "./interfaces/IDaimoPayPricer.sol"; /// @author Daimo, Inc /// @custom:security-contact [email protected] /// @notice Central escrow contract that manages the lifecycle of Deposit /// Addresses contract DepositAddressManager is Ownable, ReentrancyGuard { using SafeERC20 for IERC20; // --------------------------------------------------------------------- // Constants & Immutables // --------------------------------------------------------------------- /// Sentinel value used to mark a transfer claimed. address public constant ADDR_MAX = 0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF; /// Factory responsible for deploying deterministic Deposit Addresses. DepositAddressFactory public depositAddressFactory; /// Dedicated contract that performs swap / contract calls on behalf of the /// manager. DaimoPayExecutor public executor; // --------------------------------------------------------------------- // Storage // --------------------------------------------------------------------- /// Authorized relayer addresses. mapping(address relayer => bool authorized) public relayerAuthorized; /// On the source chain, record fulfillment addresses that have been used. mapping(address fulfillment => bool used) public fulfillmentUsed; /// On the destination chain, map fulfillment address to status: /// - address(0) = not finished. /// - Relayer address = fast-finished, awaiting claim to repay relayer. /// - ADDR_MAX = claimed. any additional funds received are refunded. mapping(address fulfillment => address recipient) public fulfillmentToRecipient; // --------------------------------------------------------------------- // Events // --------------------------------------------------------------------- event RelayerAuthorized(address indexed relayer, bool authorized); event Start( address indexed depositAddress, address indexed fulfillmentAddress, DAParams params, DAFulfillmentParams fulfillment, address paymentToken, uint256 paymentAmount, uint256 paymentTokenPriceUsd, uint256 bridgeTokenInPriceUsd ); event FastFinish( address indexed depositAddress, address indexed fulfillmentAddress, address indexed newRecipient, DAParams params, DAFulfillmentParams fulfillment, uint256 outputAmount, uint256 bridgeTokenOutPriceUsd, uint256 toTokenPriceUsd ); event Claim( address indexed depositAddress, address indexed fulfillmentAddress, address indexed finalRecipient, DAParams params, DAFulfillmentParams fulfillment, uint256 outputAmount, uint256 bridgeTokenOutPriceUsd, uint256 toTokenPriceUsd ); event SameChainFinish( address indexed depositAddress, DAParams params, address paymentToken, uint256 paymentAmount, uint256 outputAmount, uint256 paymentTokenPriceUsd, uint256 toTokenPriceUsd ); event FinalCallExecuted( address indexed depositAddress, address indexed target, bool success ); event HopStart( address indexed depositAddress, address indexed fulfillmentAddress, DAParams params, DAFulfillmentParams fulfillment, uint256 bridgedAmount, uint256 leg1BridgeTokenOutPriceUsd, uint256 leg2BridgeTokenInPriceUsd ); event RefundDepositAddress( address indexed depositAddress, DAParams params, address refundAddress, IERC20[] tokens, uint256[] amounts ); event RefundFulfillment( address indexed depositAddress, address indexed fulfillmentAddress, DAParams params, DAFulfillmentParams fulfillment, address refundAddress, IERC20[] tokens, uint256[] amounts ); // --------------------------------------------------------------------- // Modifiers // --------------------------------------------------------------------- /// @dev Only allow designated relayers to call certain functions. modifier onlyRelayer() { require(relayerAuthorized[msg.sender], "DAM: not relayer"); _; } // --------------------------------------------------------------------- // Constructor // --------------------------------------------------------------------- /// @notice Initialize the contract. constructor( address _owner, DepositAddressFactory _depositAddressFactory, DaimoPayExecutor _executor ) Ownable(_owner) { depositAddressFactory = _depositAddressFactory; executor = _executor; } // Accept native asset deposits (for swaps). receive() external payable {} // --------------------------------------------------------------------- // External user / relayer entrypoints // --------------------------------------------------------------------- /// @notice Initiates a cross-chain transfer by pulling funds from the /// deposit address, executing swaps if needed, and initiating a /// bridge transfer to the destination chain. /// @dev Must be called on the source chain. Creates a deterministic /// fulfillment address on the destination chain and bridges the /// specified token amount to it. /// @param params The cross-chain params containing destination /// chain, recipient, and token details /// @param paymentToken The token the user paid the deposit address. /// @param bridgeTokenOut The token and amount to be bridged to the /// destination chain /// @param relaySalt Unique salt provided by the relayer to generate /// a unique fulfillment address /// @param calls Optional swap calls to convert payment token to /// required bridge input token /// @param bridgeExtraData Additional data required by the specific bridge /// implementation function start( DAParams calldata params, IERC20 paymentToken, TokenAmount calldata bridgeTokenOut, PriceData calldata paymentTokenPrice, PriceData calldata bridgeTokenInPrice, bytes32 relaySalt, Call[] calldata calls, bytes calldata bridgeExtraData ) external nonReentrant onlyRelayer { require(block.chainid != params.toChainId, "DAM: start on dest chain"); require(params.escrow == address(this), "DAM: wrong escrow"); require(!isDAExpired(params), "DAM: expired"); bool paymentTokenPriceValid = params.pricer.validatePrice( paymentTokenPrice ); bool bridgeTokenInPriceValid = params.pricer.validatePrice( bridgeTokenInPrice ); require(paymentTokenPriceValid, "DAM: payment price invalid"); require(bridgeTokenInPriceValid, "DAM: bridge price invalid"); require( paymentTokenPrice.token == address(paymentToken), "DAM: payment token mismatch" ); // Deploy (or fetch) deposit address DepositAddress da = depositAddressFactory.createDepositAddress(params); DAFulfillmentParams memory fulfillment = DAFulfillmentParams({ depositAddress: address(da), relaySalt: relaySalt, bridgeTokenOut: bridgeTokenOut, sourceChainId: block.chainid }); (address fulfillmentAddress, ) = computeFulfillmentAddress(fulfillment); // Generate a unique fulfillment address for each bridge transfer. // Without this check, a malicious relayer could reuse the same // fulfillment address to claim multiple bridge transfers, double-paying // themselves. require(!fulfillmentUsed[fulfillmentAddress], "DAM: fulfillment used"); // Mark the fulfillment address as used to prevent double-processing fulfillmentUsed[fulfillmentAddress] = true; // Quote bridge input requirements. (address bridgeTokenIn, uint256 inAmount) = params .bridger .getBridgeTokenIn({ toChainId: params.toChainId, bridgeTokenOut: bridgeTokenOut }); require( bridgeTokenIn == address(bridgeTokenInPrice.token), "DAM: bridge token mismatch" ); // Send payment token to executor uint256 paymentAmount = da.sendBalance({ params: params, token: paymentToken, recipient: payable(address(executor)) }); // Validate the inAmount is above the minimum output required by the // swap. TokenAmount memory minSwapOutput = SwapMath.computeMinSwapOutput({ sellTokenPrice: paymentTokenPrice, buyTokenPrice: bridgeTokenInPrice, sellAmount: paymentAmount, maxSlippage: params.maxStartSlippageBps }); require(inAmount >= minSwapOutput.amount, "DAM: bridge input low"); // Run arbitrary calls provided by the relayer. These will generally // approve the swap contract and swap if necessary. // The executor contract checks that the output is sufficient. Any // surplus tokens are given to the relayer. TokenAmount[] memory expectedOutput = new TokenAmount[](1); expectedOutput[0] = TokenAmount({ token: IERC20(bridgeTokenIn), amount: inAmount }); executor.execute({ calls: calls, expectedOutput: expectedOutput, recipient: payable(address(this)), surplusRecipient: payable(msg.sender) }); // Approve bridger and initiate bridging IERC20(bridgeTokenIn).forceApprove({ spender: address(params.bridger), value: inAmount }); params.bridger.sendToChain({ toChainId: params.toChainId, toAddress: fulfillmentAddress, bridgeTokenOut: bridgeTokenOut, refundAddress: params.refundAddress, extraData: bridgeExtraData }); emit Start({ depositAddress: address(da), fulfillmentAddress: fulfillmentAddress, params: params, fulfillment: fulfillment, paymentToken: address(paymentToken), paymentAmount: paymentAmount, paymentTokenPriceUsd: paymentTokenPrice.priceUsd, bridgeTokenInPriceUsd: bridgeTokenInPrice.priceUsd }); } /// @notice Send funds that are already on the destination chain. /// /// @param params The DAParams for the deposit address /// @param paymentToken Token to be used to pay the deposit address /// @param calls Arbitrary swap calls to be executed by the executor /// Can be empty when assets are already `toToken` function sameChainFinish( DAParams calldata params, IERC20 paymentToken, PriceData calldata paymentTokenPrice, PriceData calldata toTokenPrice, Call[] calldata calls ) external nonReentrant onlyRelayer { require(params.toChainId == block.chainid, "DAM: wrong chain"); require(params.escrow == address(this), "DAM: wrong escrow"); require(!isDAExpired(params), "DAM: expired"); bool paymentTokenPriceValid = params.pricer.validatePrice( paymentTokenPrice ); bool toTokenPriceValid = params.pricer.validatePrice(toTokenPrice); require(paymentTokenPriceValid, "DAM: payment price invalid"); require(toTokenPriceValid, "DAM: toToken price invalid"); require( paymentTokenPrice.token == address(paymentToken), "DAM: payment token mismatch" ); require( toTokenPrice.token == address(params.toToken), "DAM: toToken mismatch" ); // Deploy (or fetch) the Deposit Address for this params. DepositAddress da = depositAddressFactory.createDepositAddress(params); // Pull specified token balances from the da into the executor. uint256 paymentAmount = da.sendBalance({ params: params, token: paymentToken, recipient: payable(address(executor)) }); // Compute the minimum amount of toToken the user should receive. TokenAmount memory minSwapOutput = SwapMath.computeMinSwapOutput({ sellTokenPrice: paymentTokenPrice, buyTokenPrice: toTokenPrice, sellAmount: paymentAmount, maxSlippage: params.maxSameChainFinishSlippageBps }); // Finish the fulfillment and return any leftover tokens to the caller uint256 outputAmount = _finishFulfillment({ depositAddress: address(da), params: params, calls: calls, minOutputAmount: minSwapOutput.amount }); emit SameChainFinish({ depositAddress: address(da), params: params, paymentToken: address(paymentToken), paymentAmount: paymentAmount, outputAmount: outputAmount, paymentTokenPriceUsd: paymentTokenPrice.priceUsd, toTokenPriceUsd: toTokenPrice.priceUsd }); } /// @notice Allows a relayer to deliver funds early on the destination chain /// before the bridge transfer completes. /// @dev Must be called on the destination chain. The relayer sends their /// own funds to complete the fulfillment atomically before calling /// fastFinish, and is recorded as the recipient for the eventual /// bridged tokens. /// @param params The DAParams for the deposit address /// @param calls Arbitrary swap calls to be executed by the executor /// @param token The token sent by the relayer /// @param bridgeTokenOut The token and amount expected from the bridge /// @param relaySalt Unique salt from the original bridge transfer /// @param sourceChainId The chain ID where the bridge transfer originated function fastFinish( DAParams calldata params, Call[] calldata calls, IERC20 token, PriceData calldata bridgeTokenOutPrice, PriceData calldata toTokenPrice, TokenAmount calldata bridgeTokenOut, bytes32 relaySalt, uint256 sourceChainId ) external nonReentrant onlyRelayer { require(sourceChainId != block.chainid, "DAM: same chain finish"); require(params.toChainId == block.chainid, "DAM: wrong chain"); require(params.escrow == address(this), "DAM: wrong escrow"); require(!isDAExpired(params), "DAM: expired"); bool bridgeTokenOutPriceValid = params.pricer.validatePrice( bridgeTokenOutPrice ); bool toTokenPriceValid = params.pricer.validatePrice(toTokenPrice); require(bridgeTokenOutPriceValid, "DAM: bridgeTokenOut price invalid"); require(toTokenPriceValid, "DAM: toToken price invalid"); require( bridgeTokenOutPrice.token == address(bridgeTokenOut.token), "DAM: bridgeTokenOut mismatch" ); require( toTokenPrice.token == address(params.toToken), "DAM: toToken mismatch" ); // Calculate salt for this bridge transfer. address da = depositAddressFactory.getDepositAddress(params); DAFulfillmentParams memory fulfillment = DAFulfillmentParams({ depositAddress: da, relaySalt: relaySalt, bridgeTokenOut: bridgeTokenOut, sourceChainId: sourceChainId }); (address fulfillmentAddress, ) = computeFulfillmentAddress(fulfillment); // Check that the salt hasn't already been fast finished or claimed. require( fulfillmentToRecipient[fulfillmentAddress] == address(0), "DAM: already finished" ); // Record relayer as new recipient when the bridged tokens arrive fulfillmentToRecipient[fulfillmentAddress] = msg.sender; // Finish the fulfillment and return any leftover tokens to the caller TokenUtils.transferBalance({ token: token, recipient: payable(address(executor)) }); TokenAmount memory toTokenAmount = SwapMath.computeMinSwapOutput({ sellTokenPrice: bridgeTokenOutPrice, buyTokenPrice: toTokenPrice, sellAmount: bridgeTokenOut.amount, maxSlippage: params.maxFastFinishSlippageBps }); uint256 outputAmount = _finishFulfillment({ depositAddress: da, params: params, calls: calls, minOutputAmount: toTokenAmount.amount }); emit FastFinish({ depositAddress: da, fulfillmentAddress: fulfillmentAddress, newRecipient: msg.sender, params: params, fulfillment: fulfillment, outputAmount: outputAmount, bridgeTokenOutPriceUsd: bridgeTokenOutPrice.priceUsd, toTokenPriceUsd: toTokenPrice.priceUsd }); } /// @notice Completes a fulfillment after bridged tokens arrive on the /// destination chain, either repaying a relayer or finishing the /// fulfillment directly. /// @param params The DAParams for the deposit address /// @param calls Arbitrary swap from bridgeTokenOut to toToken /// @param bridgeTokenOut The token and amount that was bridged /// @param relaySalt Unique salt from the original bridge transfer /// @param sourceChainId The chain ID where the bridge transfer originated function claim( DAParams calldata params, Call[] calldata calls, TokenAmount calldata bridgeTokenOut, PriceData calldata bridgeTokenOutPrice, PriceData calldata toTokenPrice, bytes32 relaySalt, uint256 sourceChainId ) external nonReentrant onlyRelayer { require(params.toChainId == block.chainid, "DAM: wrong chain"); require(params.escrow == address(this), "DAM: wrong escrow"); // Calculate salt for this bridge transfer. address da = depositAddressFactory.getDepositAddress(params); DAFulfillmentParams memory fulfillment = DAFulfillmentParams({ depositAddress: da, relaySalt: relaySalt, bridgeTokenOut: bridgeTokenOut, sourceChainId: sourceChainId }); (address fulfillmentAddress, ) = computeFulfillmentAddress(fulfillment); // Check the recipient for this fulfillment. address recipient = fulfillmentToRecipient[fulfillmentAddress]; require(recipient != ADDR_MAX, "DAM: already claimed"); // Mark fulfillment as claimed fulfillmentToRecipient[fulfillmentAddress] = ADDR_MAX; // Deploy fulfillment and pull bridged tokens uint256 bridgedAmount; (fulfillmentAddress, bridgedAmount) = _deployAndPullFromFulfillment( fulfillment, bridgeTokenOut.token ); uint256 outputAmount = 0; if (recipient == address(0)) { // Validate prices bool bridgeTokenOutPriceValid = params.pricer.validatePrice( bridgeTokenOutPrice ); bool toTokenPriceValid = params.pricer.validatePrice(toTokenPrice); require( bridgeTokenOutPriceValid, "DAM: bridgeTokenOut price invalid" ); require(toTokenPriceValid, "DAM: toToken price invalid"); require( bridgeTokenOutPrice.token == address(bridgeTokenOut.token), "DAM: bridgeTokenOut mismatch" ); require( toTokenPrice.token == address(params.toToken), "DAM: toToken mismatch" ); // No relayer showed up, so complete the fulfillment. Update the // recipient to the params's recipient. recipient = params.toAddress; // Send tokens to the executor contract to run relayer-provided // calls in _finishFulfillment. TokenUtils.transfer({ token: bridgeTokenOut.token, recipient: payable(address(executor)), amount: bridgedAmount }); // Compute the minimum amount of toToken that is required to // complete the fulfillment. This uses the promised bridgeTokenOut, // even if the actual bridgedAmount is slightly less. TokenAmount memory toTokenAmount = SwapMath.computeMinSwapOutput({ sellTokenPrice: bridgeTokenOutPrice, buyTokenPrice: toTokenPrice, sellAmount: bridgeTokenOut.amount, maxSlippage: params.maxFastFinishSlippageBps }); // Finish the fulfillment and return any leftover tokens to the caller outputAmount = _finishFulfillment({ depositAddress: da, params: params, calls: calls, minOutputAmount: toTokenAmount.amount }); } else { // Otherwise, the relayer fastFinished the fulfillment. Repay them. TokenUtils.transfer({ token: bridgeTokenOut.token, recipient: payable(recipient), amount: bridgedAmount }); outputAmount = bridgedAmount; } emit Claim({ depositAddress: da, fulfillmentAddress: fulfillmentAddress, finalRecipient: recipient, params: params, fulfillment: fulfillment, outputAmount: outputAmount, bridgeTokenOutPriceUsd: bridgeTokenOutPrice.priceUsd, toTokenPriceUsd: toTokenPrice.priceUsd }); } /// @notice Continues a multi-hop transfer by pulling funds from a hop chain /// fulfillment and bridging to the final destination chain. /// @dev Must be called on the hop chain. Pulls funds from the fulfillment /// created by the source→hop leg, then initiates hop→dest bridge. /// @param params The DAParams for the intent /// @param leg1BridgeTokenOut Token and amount that was bridged in leg 1 /// (source → hop) /// @param leg1SourceChainId Source chain ID for leg 1 /// @param leg1BridgeTokenOutPrice Price data for leg 1 bridge token out /// @param leg2BridgeTokenOut Token and amount to bridge in leg 2 (hop → dest) /// @param leg2BridgeTokenInPrice Price data for leg 2 bridge token in /// @param relaySalt Unique salt provided by the relayer to generate /// a unique fulfillment address. Shared between /// leg 1 and leg 2. /// @param calls Swap calls to convert leg 1 token to leg 2 /// bridge input token /// @param bridgeExtraData Additional data for the hop → dest bridge function hopStart( DAParams calldata params, TokenAmount calldata leg1BridgeTokenOut, uint256 leg1SourceChainId, PriceData calldata leg1BridgeTokenOutPrice, TokenAmount calldata leg2BridgeTokenOut, PriceData calldata leg2BridgeTokenInPrice, bytes32 relaySalt, Call[] calldata calls, bytes calldata bridgeExtraData ) external nonReentrant onlyRelayer { // Must be on hop chain (not source, not dest) require(block.chainid != leg1SourceChainId, "DAM: hop on source chain"); require(block.chainid != params.toChainId, "DAM: hop on dest chain"); require(params.escrow == address(this), "DAM: wrong escrow"); // Validate prices bool leg1PriceValid = params.pricer.validatePrice( leg1BridgeTokenOutPrice ); bool leg2PriceValid = params.pricer.validatePrice( leg2BridgeTokenInPrice ); require(leg1PriceValid, "DAM: leg1 price invalid"); require(leg2PriceValid, "DAM: leg2 price invalid"); require( leg1BridgeTokenOutPrice.token == address(leg1BridgeTokenOut.token), "DAM: leg1 bridge token mismatch" ); // Compute the shared fulfillment address address depositAddress = depositAddressFactory.getDepositAddress( params ); DAFulfillmentParams memory fulfillment = DAFulfillmentParams({ depositAddress: depositAddress, relaySalt: relaySalt, // Use the same params that were originally used to start leg 1 // to compute the same fulfillment address bridgeTokenOut: leg2BridgeTokenOut, sourceChainId: leg1SourceChainId }); (address fulfillmentAddress, ) = computeFulfillmentAddress(fulfillment); // Check that the fulfillment hasn't been claimed already address recipient = fulfillmentToRecipient[fulfillmentAddress]; require(recipient != ADDR_MAX, "DAM: already claimed"); // Mark as claimed to prevent double-processing fulfillmentToRecipient[fulfillmentAddress] = ADDR_MAX; // Deploy fulfillment and pull funds uint256 bridgedAmount; (fulfillmentAddress, bridgedAmount) = _deployAndPullFromFulfillment( fulfillment, leg1BridgeTokenOut.token ); // Ensure the fulfillment hasn't been used require(!fulfillmentUsed[fulfillmentAddress], "DAM: fulfillment used"); fulfillmentUsed[fulfillmentAddress] = true; // Get bridge input requirements for leg 2 (address bridgeTokenIn, uint256 inAmount) = params .bridger .getBridgeTokenIn({ toChainId: params.toChainId, bridgeTokenOut: leg2BridgeTokenOut }); require( bridgeTokenIn == address(leg2BridgeTokenInPrice.token), "DAM: bridge token mismatch" ); // Validate swap output meets minimum requirements TokenAmount memory minSwapOutput = SwapMath.computeMinSwapOutput({ sellTokenPrice: leg1BridgeTokenOutPrice, buyTokenPrice: leg2BridgeTokenInPrice, sellAmount: leg1BridgeTokenOut.amount, maxSlippage: params.maxStartSlippageBps }); require(inAmount >= minSwapOutput.amount, "DAM: bridge input low"); // Send to executor, run swap calls, get bridge input TokenUtils.transfer({ token: leg1BridgeTokenOut.token, recipient: payable(address(executor)), amount: bridgedAmount }); TokenAmount[] memory expectedOutput = new TokenAmount[](1); expectedOutput[0] = TokenAmount({ token: IERC20(bridgeTokenIn), amount: inAmount }); executor.execute({ calls: calls, expectedOutput: expectedOutput, recipient: payable(address(this)), surplusRecipient: payable(msg.sender) }); // Approve bridger and initiate leg 2 bridge IERC20(bridgeTokenIn).forceApprove({ spender: address(params.bridger), value: inAmount }); params.bridger.sendToChain({ toChainId: params.toChainId, toAddress: fulfillmentAddress, bridgeTokenOut: leg2BridgeTokenOut, refundAddress: params.refundAddress, extraData: bridgeExtraData }); emit HopStart({ depositAddress: depositAddress, fulfillmentAddress: fulfillmentAddress, params: params, fulfillment: fulfillment, bridgedAmount: bridgedAmount, leg1BridgeTokenOutPriceUsd: leg1BridgeTokenOutPrice.priceUsd, leg2BridgeTokenInPriceUsd: leg2BridgeTokenInPrice.priceUsd }); } /// @notice Refunds tokens from a deposit address to its designated /// refund address after the deposit address has expired. /// @param params The Deposit Address params containing the refund address /// @param tokens The tokens to refund from the deposit address /// @dev Refunds are only allowed after the deposit address expires function refundDepositAddress( DAParams calldata params, IERC20[] calldata tokens ) external nonReentrant { require(params.escrow == address(this), "DAM: wrong escrow"); require(isDAExpired(params), "DAM: not expired"); // Deploy (or fetch) the Deposit Address for this params DepositAddress da = depositAddressFactory.createDepositAddress(params); // Send refund to the designated refund address uint256[] memory amounts = new uint256[](tokens.length); for (uint256 i = 0; i < tokens.length; ++i) { amounts[i] = da.sendBalance({ params: params, token: tokens[i], recipient: payable(params.refundAddress) }); } emit RefundDepositAddress({ depositAddress: address(da), params: params, refundAddress: params.refundAddress, tokens: tokens, amounts: amounts }); } /// @notice Refunds tokens from a fulfillment address to the designated /// refund address after the params has expired. /// @param params The Deposit Address params containing the refund address /// @param bridgeTokenOut The token and amount that was bridged (used to /// compute fulfillment address) /// @param relaySalt Unique salt from the original bridge transfer /// @param sourceChainId The chain ID where the bridge transfer originated /// @param tokens The tokens to refund from the fulfillment /// @dev Refunds are only allowed after the params expires. This allows /// recovery of bridged funds that were never claimed or fast-finished. function refundFulfillment( DAParams calldata params, TokenAmount calldata bridgeTokenOut, bytes32 relaySalt, uint256 sourceChainId, IERC20[] calldata tokens ) external nonReentrant onlyRelayer { require(params.escrow == address(this), "DAM: wrong escrow"); require(isDAExpired(params), "DAM: not expired"); // Compute the fulfillment address for this fulfillment address da = depositAddressFactory.getDepositAddress(params); DAFulfillmentParams memory fulfillment = DAFulfillmentParams({ depositAddress: da, relaySalt: relaySalt, bridgeTokenOut: bridgeTokenOut, sourceChainId: sourceChainId }); // Pull and transfer each token to the refund address address fulfillmentAddress; uint256[] memory amounts = new uint256[](tokens.length); for (uint256 i = 0; i < tokens.length; ++i) { (fulfillmentAddress, amounts[i]) = _deployAndPullFromFulfillment( fulfillment, tokens[i] ); TokenUtils.transfer({ token: tokens[i], recipient: payable(params.refundAddress), amount: amounts[i] }); } emit RefundFulfillment({ depositAddress: da, fulfillmentAddress: fulfillmentAddress, params: params, fulfillment: fulfillment, refundAddress: params.refundAddress, tokens: tokens, amounts: amounts }); } /// @notice Computes a deterministic DAFulfillment address. /// @param fulfillment The bridge fulfillment /// @return addr The computed address for the DAFulfillment contract /// @return relaySalt The CREATE2 salt used to deploy the DAFulfillment function computeFulfillmentAddress( DAFulfillmentParams memory fulfillment ) public view returns (address payable addr, bytes32 relaySalt) { relaySalt = keccak256(abi.encode(fulfillment)); bytes memory initCode = type(DAFulfillment).creationCode; addr = payable(Create2.computeAddress(relaySalt, keccak256(initCode))); } /// @notice Checks if a Deposit Address params has expired. /// @param params The Deposit Address params to check /// @return true if the params has expired, false otherwise function isDAExpired(DAParams calldata params) public view returns (bool) { return block.timestamp >= params.expiresAt; } // --------------------------------------------------------------------- // Internal helpers // --------------------------------------------------------------------- /// @dev Deploy a DAFulfillment if necessary and pull funds. /// @param fulfillment The fulfillment params used to compute fulfillment /// address /// @param token The token to pull from the fulfillment /// @return fulfillmentAddress The fulfillment contract address /// @return pulledAmount The amount pulled from the fulfillment function _deployAndPullFromFulfillment( DAFulfillmentParams memory fulfillment, IERC20 token ) internal returns (address fulfillmentAddress, uint256 pulledAmount) { bytes32 relaySalt; (fulfillmentAddress, relaySalt) = computeFulfillmentAddress( fulfillment ); // Deploy fulfillment contract if necessary DAFulfillment fulfillmentContract; if (fulfillmentAddress.code.length == 0) { fulfillmentContract = new DAFulfillment{salt: relaySalt}(); require( fulfillmentAddress == address(fulfillmentContract), "DAM: fulfillment" ); } else { fulfillmentContract = DAFulfillment(payable(fulfillmentAddress)); } // Pull funds from the fulfillment contract pulledAmount = fulfillmentContract.pull(token); } /// @dev Internal helper that completes a fulfillment by executing swaps, /// delivering toToken to the recipient, and handling any surplus. /// If the params has a finalCall, executes the call after swapping. /// Precondition: input tokens must already be in PayExecutor. /// @param depositAddress The deposit address for this fulfillment (for events) /// @param params The DAParams containing /// recipient details and optional finalCall /// @param calls Arbitrary swap calls to be executed by the /// executor /// @param minOutputAmount The minimum amount of target token to deliver to /// the recipient function _finishFulfillment( address depositAddress, DAParams calldata params, Call[] calldata calls, uint256 minOutputAmount ) internal returns (uint256 outputAmount) { if (params.finalCallData.length > 0) { // Swap and keep tokens in executor for final call outputAmount = executor.executeAndSendBalance({ calls: calls, minOutputAmount: TokenAmount({ token: params.toToken, amount: minOutputAmount }), recipient: payable(address(executor)) }); // Execute final call - approves token to toAddress and calls it bool success = executor.executeFinalCall({ finalCall: Call({ to: params.toAddress, value: 0, data: params.finalCallData }), finalCallToken: TokenAmount({ token: params.toToken, amount: outputAmount }), refundAddr: payable(params.refundAddress) }); emit FinalCallExecuted(depositAddress, params.toAddress, success); } else { // No final call - send directly to recipient outputAmount = executor.executeAndSendBalance({ calls: calls, minOutputAmount: TokenAmount({ token: params.toToken, amount: minOutputAmount }), recipient: payable(params.toAddress) }); } } // --------------------------------------------------------------------- // Admin functions // --------------------------------------------------------------------- /// @notice Set the authorized relayer address. /// @param relayer The address of the new relayer /// @param authorized Whether the relayer is authorized function setRelayer(address relayer, bool authorized) external onlyOwner { relayerAuthorized[relayer] = authorized; emit RelayerAuthorized(relayer, authorized); } } // --------------------------------------------------------------------- // Minimal deterministic fulfillment // --------------------------------------------------------------------- /// @notice Minimal deterministic contract that receives bridged tokens and /// allows the Deposit Address Manager to sweep them. /// @dev Deployed via CREATE2 using a salt that encodes bridge transfer /// parameters into the deployment address, creating predictable addresses /// that are unique to each bridge transfer. Only the deploying manager /// can pull funds from this contract. contract DAFulfillment { using SafeERC20 for IERC20; /// @notice Address allowed to pull funds from this contract address payable public immutable depositAddressManager; constructor() { depositAddressManager = payable(msg.sender); // Emit event for any ETH that arrived before deployment if (address(this).balance > 0) { emit NativeTransfer( address(0), address(this), address(this).balance ); } } // Accept native asset deposits. receive() external payable { emit NativeTransfer(msg.sender, address(this), msg.value); } /// @notice Sweep entire balance of `token` (ERC20 or native when /// token == IERC20(address(0))) to the deployer address. /// @return amount The amount of tokens pulled function pull(IERC20 token) external returns (uint256) { require(msg.sender == depositAddressManager, "BR: not authorized"); return TokenUtils.transferBalance({ token: token, recipient: depositAddressManager }); } }
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.12;
import "openzeppelin-contracts-upgradeable/contracts/proxy/utils/Initializable.sol";
import "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol";
import "openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol";
import "openzeppelin-contracts/contracts/utils/ReentrancyGuard.sol";
import "./TokenUtils.sol";
import "./interfaces/IDepositAddressBridger.sol";
import "./interfaces/IDaimoPayPricer.sol";
/// @notice Parameters that uniquely identify a Deposit Address.
struct DAParams {
/// Destination chain
uint256 toChainId;
/// Final token received on destination chain
IERC20 toToken;
/// Destination address. If finalCallData is empty, tokens are transferred
/// here. Otherwise, tokens are transferred here and a call is made with
/// finalCallData (e.g., toAddress is an adapter contract).
address toAddress;
/// Recipient for refunds
address refundAddress;
/// Optional calldata to execute on toAddress after swapping to toToken.
/// If empty, tokens are simply transferred to toAddress.
bytes finalCallData;
/// DepositAddressManager escrow contract
address escrow;
/// DepositAddressBridger contract
IDepositAddressBridger bridger;
/// DaimoPayPricer contract
IDaimoPayPricer pricer;
/// Maximum slippage allowed on starts. Expected slippage from token sent
/// by the user to the bridge token.
uint256 maxStartSlippageBps;
/// Maximum slippage allowed on fast finishes. Expected slippage from bridge
/// token to final token.
uint256 maxFastFinishSlippageBps;
/// Maximum slippage allowed on same chain finishes. Expected slippage from
/// payment token to final token.
uint256 maxSameChainFinishSlippageBps;
/// Timestamp after which the deposit address expires and can be refunded
uint256 expiresAt;
}
/// @notice Parameters that uniquely identify a single intent (cross-chain
/// transfer) for a Deposit Address.
struct DAFulfillmentParams {
/// The Deposit Address contract for this intent
address depositAddress;
/// Unique salt/nonce provided by the relayer
bytes32 relaySalt;
/// Address and amount of token bridged to destination chain
TokenAmount bridgeTokenOut;
/// Chain ID where the bridge transfer originated
uint256 sourceChainId;
}
/// @notice Calculate the deterministic hash committed to by the Deposit Address
function calcDAParamsHash(DAParams calldata params) pure returns (bytes32) {
return keccak256(abi.encode(params));
}
/// @author Daimo, Inc
/// @notice Minimal contract that holds funds for a cross-chain deposit address,
/// enabling deterministic address across chains.
/// @dev Stateless design with only a fixed param hash allows cheap deployment
/// via proxy clones and reuse across multiple chains. Funds are held
/// securely until the Universal Address Manager orchestrates their release
/// for swaps, bridging, or refunds. Each deposit address is uniquely tied
/// to a specific set of DAParams and can only be controlled by its
/// designated escrow.
contract DepositAddress is Initializable, ReentrancyGuard {
using SafeERC20 for IERC20;
// ---------------------------------------------------------------------
// Storage
// ---------------------------------------------------------------------
/// @dev Cheap single-slot storage – keccak256(DAParams).
bytes32 public paramHash;
// ---------------------------------------------------------------------
// Constructor / Initializer
// ---------------------------------------------------------------------
constructor() {
_disableInitializers();
}
/// Accept native chain asset (e.g. ETH) deposits
receive() external payable {
emit NativeTransfer(msg.sender, address(this), msg.value);
}
/// @param _paramHash keccak256(DAParams) committed by the factory.
function initialize(bytes32 _paramHash) public initializer {
paramHash = _paramHash;
// Emit event for any ETH that arrived before deployment
if (address(this).balance > 0) {
emit NativeTransfer(
address(0),
address(this),
address(this).balance
);
}
}
// ---------------------------------------------------------------------
// Escrow helpers – only callable by the escrow/manager
// ---------------------------------------------------------------------
/// @notice Transfers the balance of a token from the vault to a
/// designated recipient. Callable only by the authorized escrow.
/// @param params The DAParams that this vault was created for
/// @param token The token to transfer from the vault
/// @param recipient The address to receive the transferred tokens
function sendBalance(
DAParams calldata params,
IERC20 token,
address payable recipient
) public nonReentrant returns (uint256) {
require(calcDAParamsHash(params) == paramHash, "DA: params mismatch");
require(msg.sender == params.escrow, "DA: only escrow");
return TokenUtils.transferBalance({token: token, recipient: recipient});
}
}// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.12;
import "../TokenUtils.sol";
struct PriceData {
address token;
uint256 priceUsd; // price of token in USD with 18 decimals
uint256 timestamp;
bytes signature;
}
/// @author Daimo, Inc
/// @custom:security-contact [email protected]
/// @notice Validates price data signature is from a trusted source.
interface IDaimoPayPricer {
/// Validate the signature of the price data comes from a trusted source.
function validatePrice(
PriceData calldata priceData
) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC1363.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
import {IERC165} from "./IERC165.sol";
/**
* @title IERC1363
* @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].
*
* Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract
* after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.
*/
interface IERC1363 is IERC20, IERC165 {
/*
* Note: the ERC-165 identifier for this interface is 0xb0202a11.
* 0xb0202a11 ===
* bytes4(keccak256('transferAndCall(address,uint256)')) ^
* bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^
* bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^
* bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^
* bytes4(keccak256('approveAndCall(address,uint256)')) ^
* bytes4(keccak256('approveAndCall(address,uint256,bytes)'))
*/
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`
* and then calls {IERC1363Receiver-onTransferReceived} on `to`.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function transferAndCall(address to, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`
* and then calls {IERC1363Receiver-onTransferReceived} on `to`.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
* @param data Additional data with no specified format, sent in call to `to`.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
* and then calls {IERC1363Receiver-onTransferReceived} on `to`.
* @param from The address which you want to send tokens from.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function transferFromAndCall(address from, address to, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
* and then calls {IERC1363Receiver-onTransferReceived} on `to`.
* @param from The address which you want to send tokens from.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
* @param data Additional data with no specified format, sent in call to `to`.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
* @param spender The address which will spend the funds.
* @param value The amount of tokens to be spent.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function approveAndCall(address spender, uint256 value) external returns (bool);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
* @param spender The address which will spend the funds.
* @param value The amount of tokens to be spent.
* @param data Additional data with no specified format, sent in call to `spender`.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (access/IAccessControl.sol)
pragma solidity ^0.8.20;
/**
* @dev External interface of AccessControl declared to support ERC-165 detection.
*/
interface IAccessControl {
/**
* @dev The `account` is missing a role.
*/
error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);
/**
* @dev The caller of a function is not the expected one.
*
* NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
*/
error AccessControlBadConfirmation();
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted to signal this.
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call. This account bears the admin role (for the granted role).
* Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `callerConfirmation`.
*/
function renounceRole(bytes32 role, address callerConfirmation) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)
pragma solidity ^0.8.20;
import {IERC165} from "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC-165 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);
* }
* ```
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)
pragma solidity ^0.8.20;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,
* consider using {ReentrancyGuardTransient} instead.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant NOT_ENTERED = 1;
uint256 private constant ENTERED = 2;
uint256 private _status;
/**
* @dev Unauthorized reentrant call.
*/
error ReentrancyGuardReentrantCall();
constructor() {
_status = NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be NOT_ENTERED
if (_status == ENTERED) {
revert ReentrancyGuardReentrantCall();
}
// Any calls to nonReentrant after this point will fail
_status = ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == ENTERED;
}
}// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.12; import "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; import "openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol"; import "./TokenUtils.sol"; import "./interfaces/IDaimoPayBridger.sol"; /// @author Daimo, Inc /// @custom:security-contact [email protected] /// /// @notice Bridges assets from the current chain to a supported destination /// chain. Multiplexes between bridging protocols by destination chain. contract DaimoPayBridger is IDaimoPayBridger { using SafeERC20 for IERC20; /// Map chainId to IDaimoPayBridger implementation. mapping(uint256 chainId => IDaimoPayBridger bridger) public chainIdToBridger; /// Specify the bridger implementation to use for each chain. constructor( uint256[] memory _toChainIds, IDaimoPayBridger[] memory _bridgers ) { uint256 n = _toChainIds.length; require(n == _bridgers.length, "DPB: wrong bridgers length"); for (uint256 i = 0; i < n; ++i) { chainIdToBridger[_toChainIds[i]] = _bridgers[i]; } } // ----- BRIDGER FUNCTIONS ----- /// Get the input token and amount required to achieve one of the given /// output options on a given chain. function getBridgeTokenIn( uint256 toChainId, TokenAmount[] calldata bridgeTokenOutOptions ) external view returns (address bridgeTokenIn, uint256 inAmount) { IDaimoPayBridger bridger = chainIdToBridger[toChainId]; require(address(bridger) != address(0), "DPB: missing bridger"); return bridger.getBridgeTokenIn(toChainId, bridgeTokenOutOptions); } /// Initiate a bridge to a supported destination chain. function sendToChain( uint256 toChainId, address toAddress, TokenAmount[] calldata bridgeTokenOutOptions, address refundAddress, bytes calldata extraData ) public { require(toChainId != block.chainid, "DPB: same chain"); // Get the specific bridger implementation for toChain (CCTP, Across, // Axelar, etc) IDaimoPayBridger bridger = chainIdToBridger[toChainId]; require(address(bridger) != address(0), "DPB: missing bridger"); // Move input token from caller to this contract and initiate bridging. (address bridgeTokenIn, uint256 inAmount) = this.getBridgeTokenIn({ toChainId: toChainId, bridgeTokenOutOptions: bridgeTokenOutOptions }); require(bridgeTokenIn != address(0), "DPB: missing bridge token in"); IERC20(bridgeTokenIn).safeTransferFrom({ from: msg.sender, to: address(this), value: inAmount }); // Approve tokens to the bridge contract and intiate bridging. IERC20(bridgeTokenIn).forceApprove({ spender: address(bridger), value: inAmount }); bridger.sendToChain({ toChainId: toChainId, toAddress: toAddress, bridgeTokenOutOptions: bridgeTokenOutOptions, refundAddress: refundAddress, extraData: extraData }); } }
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.12;
import "openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol";
import "openzeppelin-contracts/contracts/utils/ReentrancyGuard.sol";
import "./TokenUtils.sol";
/// Represents a contract call.
struct Call {
/// Address of the contract to call.
address to;
/// Native token amount for call, or 0
uint256 value;
/// Calldata for call
bytes data;
}
/// @author Daimo, Inc
/// @custom:security-contact [email protected]
/// @notice This contract is used to execute arbitrary contract calls on behalf
/// of the DaimoPay escrow contract.
/// WARNING: Never approve tokens directly to this contract. Never transfer
/// tokens to this contract. Such tokens can be stolen by anyone. All
/// interactions with this contract should be done via the DaimoPay contract.
contract DaimoPayExecutor is ReentrancyGuard {
using SafeERC20 for IERC20;
/// The only address that is allowed to call the `execute` function.
address public immutable escrow;
constructor(address _escrow) {
escrow = _escrow;
}
/// Execute arbitrary calls. Revert if any fail.
/// Check that at least one of the expectedOutput tokens is present. Assumes
/// that exactly one token is present and transfers it to the recipient.
/// Returns any surplus tokens to the surplus recipient.
function execute(
Call[] calldata calls,
TokenAmount[] calldata expectedOutput,
address payable recipient,
address payable surplusRecipient
) external nonReentrant {
require(msg.sender == escrow, "DPCE: only escrow");
// Execute provided calls.
uint256 callsLength = calls.length;
for (uint256 i = 0; i < callsLength; ++i) {
Call calldata call = calls[i];
(bool success, ) = call.to.call{value: call.value}(call.data);
require(success, "DPCE: call failed");
}
/// Check that at least one of the expectedOutput tokens is present
/// with enough balance.
uint256 outputIndex = TokenUtils.checkBalance({
tokenAmounts: expectedOutput
});
require(
outputIndex < expectedOutput.length,
"DPCE: insufficient output"
);
// Transfer the expected amount of the token to the recipient.
TokenUtils.transfer({
token: expectedOutput[outputIndex].token,
recipient: recipient,
amount: expectedOutput[outputIndex].amount
});
// Transfer any surplus tokens to the surplus recipient.
TokenUtils.transferBalance({
token: expectedOutput[outputIndex].token,
recipient: surplusRecipient
});
}
/// Execute arbitrary calls. Revert if any fail.
/// Verify output token balance meets the expected minimum amount.
/// Transfer the full balance to the recipient and return the amount.
function executeAndSendBalance(
Call[] calldata calls,
TokenAmount calldata minOutputAmount,
address payable recipient
) external nonReentrant returns (uint256 outputAmount) {
require(msg.sender == escrow, "DPCE: only escrow");
// Execute provided calls.
uint256 callsLength = calls.length;
for (uint256 i = 0; i < callsLength; ++i) {
Call calldata call = calls[i];
(bool success, ) = call.to.call{value: call.value}(call.data);
require(success, "DPCE: call failed");
}
outputAmount = TokenUtils.getBalanceOf({
token: minOutputAmount.token,
addr: address(this)
});
require(
outputAmount >= minOutputAmount.amount,
"DPCE: output below min"
);
// Transfer the full balance of the token to the recipient.
TokenUtils.transfer({
token: minOutputAmount.token,
recipient: recipient,
amount: outputAmount
});
}
/// Execute a final call. Approve the final token and make the call.
/// Return whether the call succeeded.
function executeFinalCall(
Call calldata finalCall,
TokenAmount calldata finalCallToken,
address payable refundAddr
) external nonReentrant returns (bool success) {
require(msg.sender == escrow, "DPCE: only escrow");
// Approve the final call token to the final call contract.
TokenUtils.approve({
token: finalCallToken.token,
spender: address(finalCall.to),
amount: finalCallToken.amount
});
// Then, execute the final call.
(success, ) = finalCall.to.call{value: finalCall.value}(finalCall.data);
// Send any excess funds to the refund address.
TokenUtils.transferBalance({
token: finalCallToken.token,
recipient: refundAddr
});
}
/// Accept native-token (eg ETH) inputs
receive() external payable {}
}// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.12; import "openzeppelin-contracts/contracts/utils/Create2.sol"; import "openzeppelin-contracts/contracts/proxy/ERC1967/ERC1967Proxy.sol"; import "./PayIntent.sol"; /// @author Daimo, Inc /// @custom:security-contact [email protected] /// @notice Factory for intent addresses. contract PayIntentFactory { PayIntentContract public immutable intentImpl; constructor() { intentImpl = new PayIntentContract(); } /// Deploy a proxy for the intent contract implementation to the CREATE2 /// address for the given intent. function createIntent( PayIntent calldata intent ) public returns (PayIntentContract ret) { address intentAddr = getIntentAddress(intent); if (intentAddr.code.length > 0) { // Handling this case allows eg. start+claim in a single tx. // This allows more efficient relaying & easier unit testing. // See https://github.com/foundry-rs/foundry/issues/8485 return PayIntentContract(payable(intentAddr)); } ret = PayIntentContract( payable( address( new ERC1967Proxy{salt: bytes32(0)}( address(intentImpl), abi.encodeCall( PayIntentContract.initialize, (calcIntentHash(intent)) ) ) ) ) ); } /// Compute the deterministic CREATE2 address of the intent contract for /// the given intent. function getIntentAddress( PayIntent calldata intent ) public view returns (address) { return Create2.computeAddress( 0, keccak256( abi.encodePacked( type(ERC1967Proxy).creationCode, abi.encode( address(intentImpl), abi.encodeCall( PayIntentContract.initialize, (calcIntentHash(intent)) ) ) ) ) ); } }
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC-20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../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.
*
* The initial owner is set to the address provided by the deployer. 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;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @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 {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling 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 {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_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: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Create2.sol)
pragma solidity ^0.8.20;
import {Errors} from "./Errors.sol";
/**
* @dev Helper to make usage of the `CREATE2` EVM opcode easier and safer.
* `CREATE2` can be used to compute in advance the address where a smart
* contract will be deployed, which allows for interesting new mechanisms known
* as 'counterfactual interactions'.
*
* See the https://eips.ethereum.org/EIPS/eip-1014#motivation[EIP] for more
* information.
*/
library Create2 {
/**
* @dev There's no code to deploy.
*/
error Create2EmptyBytecode();
/**
* @dev Deploys a contract using `CREATE2`. The address where the contract
* will be deployed can be known in advance via {computeAddress}.
*
* The bytecode for a contract can be obtained from Solidity with
* `type(contractName).creationCode`.
*
* Requirements:
*
* - `bytecode` must not be empty.
* - `salt` must have not been used for `bytecode` already.
* - the factory must have a balance of at least `amount`.
* - if `amount` is non-zero, `bytecode` must have a `payable` constructor.
*/
function deploy(uint256 amount, bytes32 salt, bytes memory bytecode) internal returns (address addr) {
if (address(this).balance < amount) {
revert Errors.InsufficientBalance(address(this).balance, amount);
}
if (bytecode.length == 0) {
revert Create2EmptyBytecode();
}
assembly ("memory-safe") {
addr := create2(amount, add(bytecode, 0x20), mload(bytecode), salt)
// if no address was created, and returndata is not empty, bubble revert
if and(iszero(addr), not(iszero(returndatasize()))) {
let p := mload(0x40)
returndatacopy(p, 0, returndatasize())
revert(p, returndatasize())
}
}
if (addr == address(0)) {
revert Errors.FailedDeployment();
}
}
/**
* @dev Returns the address where a contract will be stored if deployed via {deploy}. Any change in the
* `bytecodeHash` or `salt` will result in a new destination address.
*/
function computeAddress(bytes32 salt, bytes32 bytecodeHash) internal view returns (address) {
return computeAddress(salt, bytecodeHash, address(this));
}
/**
* @dev Returns the address where a contract will be stored if deployed via {deploy} from a contract located at
* `deployer`. If `deployer` is this contract's address, returns the same value as {computeAddress}.
*/
function computeAddress(bytes32 salt, bytes32 bytecodeHash, address deployer) internal pure returns (address addr) {
assembly ("memory-safe") {
let ptr := mload(0x40) // Get free memory pointer
// | | ↓ ptr ... ↓ ptr + 0x0B (start) ... ↓ ptr + 0x20 ... ↓ ptr + 0x40 ... |
// |-------------------|---------------------------------------------------------------------------|
// | bytecodeHash | CCCCCCCCCCCCC...CC |
// | salt | BBBBBBBBBBBBB...BB |
// | deployer | 000000...0000AAAAAAAAAAAAAAAAAAA...AA |
// | 0xFF | FF |
// |-------------------|---------------------------------------------------------------------------|
// | memory | 000000...00FFAAAAAAAAAAAAAAAAAAA...AABBBBBBBBBBBBB...BBCCCCCCCCCCCCC...CC |
// | keccak(start, 85) | ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ |
mstore(add(ptr, 0x40), bytecodeHash)
mstore(add(ptr, 0x20), salt)
mstore(ptr, deployer) // Right-aligned with 12 preceding garbage bytes
let start := add(ptr, 0x0b) // The hashed data starts at the final garbage byte which we will set to 0xff
mstore8(start, 0xff)
addr := and(keccak256(start, 85), 0xffffffffffffffffffffffffffffffffffffffff)
}
}
}// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.12; import "openzeppelin-contracts/contracts/utils/Create2.sol"; import "openzeppelin-contracts/contracts/proxy/ERC1967/ERC1967Proxy.sol"; import "./DepositAddress.sol"; /// @author Daimo, Inc /// @custom:security-contact [email protected] /// @notice Factory contract that creates deterministic Deposit Address /// contracts using CREATE2 deployment for predictable addresses. /// @dev Deploys Deposit Address contracts at addresses determined by the /// DAParams, enabling desterministic deposit addresses across chains. contract DepositAddressFactory { /// Singleton implementation that all minimal proxies delegate to. DepositAddress public immutable depositAddressImpl; event DepositAddressDeployed( address indexed depositAddress, DAParams params ); constructor() { depositAddressImpl = new DepositAddress(); } /// @dev Deploy the Deposit Address for the given DAParams /// (or return existing one). function createDepositAddress( DAParams calldata params ) public returns (DepositAddress ret) { address depositAddress = getDepositAddress(params); if (depositAddress.code.length > 0) { // Already deployed, another CREATE2 would revert, // so not deploying and just returning the existing one. return DepositAddress(payable(depositAddress)); } ret = DepositAddress( payable( address( new ERC1967Proxy{salt: bytes32(0)}( address(depositAddressImpl), abi.encodeCall( DepositAddress.initialize, calcDAParamsHash(params) ) ) ) ) ); emit DepositAddressDeployed(depositAddress, params); } /// @notice Pure view helper: compute CREATE2 address for a /// DAParams. function getDepositAddress( DAParams calldata params ) public view returns (address) { return Create2.computeAddress( 0, keccak256( abi.encodePacked( type(ERC1967Proxy).creationCode, abi.encode( address(depositAddressImpl), abi.encodeCall( DepositAddress.initialize, calcDAParamsHash(params) ) ) ) ) ); } }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.12; import "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; import "openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "./TokenUtils.sol"; import "./interfaces/IDaimoPayPricer.sol"; /// @title SwapMath /// @author Daimo, Inc /// @custom:security-contact [email protected] /// @notice Pure mathematical functions for computing swap outputs based on /// USD price feeds. All functions are stateless and overflow-safe. library SwapMath { /// @notice Compute the amount of buy token that can be purchased with a /// given amount of sell token, based on USD prices and slippage. /// @dev Formula: /// buyAmount = (sellAmount / 10^sellDecimals * sellPriceUsd) /// / buyPriceUsd * 10^buyDecimals /// * (10_000 - maxSlippage) / 10_000 /// /// Simplified to minimize rounding errors: /// buyAmount = (sellAmount * sellPriceUsd * (10_000 - maxSlippage) * 10^buyDecimals) /// / (buyPriceUsd * 10_000 * 10^sellDecimals) /// /// @param sellTokenPrice Price data for the token being sold /// @param buyTokenPrice Price data for the token being bought /// @param sellAmount Amount of sell token (in token's native decimals) /// @param maxSlippage Maximum slippage in basis points (e.g., 50 = 0.5%) /// @return TokenAmount struct containing the buy token and computed amount function computeMinSwapOutput( PriceData memory sellTokenPrice, PriceData memory buyTokenPrice, uint256 sellAmount, uint256 maxSlippage ) public view returns (TokenAmount memory) { require(maxSlippage <= 10_000, "SwapMath: slippage > 100%"); require(sellTokenPrice.priceUsd > 0, "SwapMath: sell price zero"); require(buyTokenPrice.priceUsd > 0, "SwapMath: buy price zero"); uint256 sellDecimals = IERC20Metadata(sellTokenPrice.token).decimals(); uint256 buyDecimals = IERC20Metadata(buyTokenPrice.token).decimals(); // Calculate: numerator = sellAmount * sellPriceUsd * (10_000 - maxSlippage) * 10^buyDecimals // Calculate: denominator = buyPriceUsd * 10_000 * 10^sellDecimals // Result: buyAmount = numerator / denominator uint256 slippageFactor = 10_000 - maxSlippage; // To avoid overflow, we do multiplication in stages and use mulDiv where possible // For now, implement straightforward version with overflow protection uint256 buyAmount; // Calculate intermediate value: sellAmount * sellPriceUsd uint256 sellValueUsd = sellAmount * sellTokenPrice.priceUsd; // Apply slippage: sellValueUsd * (10_000 - maxSlippage) uint256 sellValueWithSlippage = sellValueUsd * slippageFactor; // Adjust for decimals and divide by buy price // buyAmount = (sellValueWithSlippage * 10^buyDecimals) / (buyPriceUsd * 10_000 * 10^sellDecimals) if (buyDecimals >= sellDecimals) { uint256 decimalDiff = buyDecimals - sellDecimals; uint256 numerator = sellValueWithSlippage * (10 ** decimalDiff); uint256 denominator = buyTokenPrice.priceUsd * 10_000; buyAmount = numerator / denominator; } else { uint256 decimalDiff = sellDecimals - buyDecimals; uint256 denominator = buyTokenPrice.priceUsd * 10_000 * (10 ** decimalDiff); buyAmount = sellValueWithSlippage / denominator; } return TokenAmount({ token: IERC20(buyTokenPrice.token), amount: buyAmount }); } }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.12; import "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; import "../TokenUtils.sol"; /// @author Daimo, Inc /// @custom:security-contact [email protected] /// @notice Bridges assets. Specifically, it lets any relayer initiate a bridge /// transaction to another chain. interface IDaimoPayBridger { /// Emitted when a bridge transaction is initiated event BridgeInitiated( address fromAddress, address fromToken, uint256 fromAmount, uint256 toChainId, address toAddress, address toToken, uint256 toAmount, address refundAddress ); /// Determine the input token and amount required to achieve one of the /// given output options on a given chain. function getBridgeTokenIn( uint256 toChainId, TokenAmount[] memory bridgeTokenOutOptions ) external view returns (address bridgeTokenIn, uint256 inAmount); /// Initiate a bridge. Guarantee that one of the bridge token options /// (bridgeTokenOut, outAmount) shows up at toAddress on toChainId. /// Otherwise, revert. function sendToChain( uint256 toChainId, address toAddress, TokenAmount[] calldata bridgeTokenOutOptions, address refundAddress, bytes calldata extraData ) external; }
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.20;
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```solidity
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
*
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Storage of the initializable contract.
*
* It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions
* when using with upgradeable contracts.
*
* @custom:storage-location erc7201:openzeppelin.storage.Initializable
*/
struct InitializableStorage {
/**
* @dev Indicates that the contract has been initialized.
*/
uint64 _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool _initializing;
}
// keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00;
/**
* @dev The contract is already initialized.
*/
error InvalidInitialization();
/**
* @dev The contract is not initializing.
*/
error NotInitializing();
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint64 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts.
*
* Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any
* number of times. This behavior in the constructor can be useful during testing and is not expected to be used in
* production.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
// solhint-disable-next-line var-name-mixedcase
InitializableStorage storage $ = _getInitializableStorage();
// Cache values to avoid duplicated sloads
bool isTopLevelCall = !$._initializing;
uint64 initialized = $._initialized;
// Allowed calls:
// - initialSetup: the contract is not in the initializing state and no previous version was
// initialized
// - construction: the contract is initialized at version 1 (no reinitialization) and the
// current contract is just being deployed
bool initialSetup = initialized == 0 && isTopLevelCall;
bool construction = initialized == 1 && address(this).code.length == 0;
if (!initialSetup && !construction) {
revert InvalidInitialization();
}
$._initialized = 1;
if (isTopLevelCall) {
$._initializing = true;
}
_;
if (isTopLevelCall) {
$._initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint64 version) {
// solhint-disable-next-line var-name-mixedcase
InitializableStorage storage $ = _getInitializableStorage();
if ($._initializing || $._initialized >= version) {
revert InvalidInitialization();
}
$._initialized = version;
$._initializing = true;
_;
$._initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
_checkInitializing();
_;
}
/**
* @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.
*/
function _checkInitializing() internal view virtual {
if (!_isInitializing()) {
revert NotInitializing();
}
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
// solhint-disable-next-line var-name-mixedcase
InitializableStorage storage $ = _getInitializableStorage();
if ($._initializing) {
revert InvalidInitialization();
}
if ($._initialized != type(uint64).max) {
$._initialized = type(uint64).max;
emit Initialized(type(uint64).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint64) {
return _getInitializableStorage()._initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _getInitializableStorage()._initializing;
}
/**
* @dev Pointer to storage slot. Allows integrators to override it with a custom storage location.
*
* NOTE: Consider following the ERC-7201 formula to derive storage locations.
*/
function _initializableStorageSlot() internal pure virtual returns (bytes32) {
return INITIALIZABLE_STORAGE;
}
/**
* @dev Returns a pointer to the storage namespace.
*/
// solhint-disable-next-line var-name-mixedcase
function _getInitializableStorage() private pure returns (InitializableStorage storage $) {
bytes32 slot = _initializableStorageSlot();
assembly {
$.slot := slot
}
}
}// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.12;
import "openzeppelin-contracts/contracts/token/ERC20/IERC20.sol";
import "../TokenUtils.sol";
/// @notice Simplified bridging interface for the Deposit Address system
/// that multiplexes between multiple bridge-specific adapters (e.g.
/// CCTP, Across, Axelar).
interface IDepositAddressBridger {
/// @notice Returns the bridge output token for the given destination chain ID.
/// @param toChainId The destination chain ID
/// @return stableOut The bridge output token
function chainIdToStableOut(
uint256 toChainId
) external view returns (address stableOut);
/// @notice Fetches a quote: what do I have to send in so that $x shows up
/// on the destination?
/// @param toChainId Destination chain
/// @param bridgeTokenOut The stablecoin token and amount to receive on
/// the destination chain
/// @return bridgeTokenIn The asset that must be provided on the source
/// chain
/// @return inAmount The exact quantity of bridgeTokenIn that must be
/// provided
function getBridgeTokenIn(
uint256 toChainId,
TokenAmount calldata bridgeTokenOut
) external view returns (address bridgeTokenIn, uint256 inAmount);
/// @notice Execute the bridge. Reverts if the adapter can't deliver the
/// specified destination amount.
/// @param toChainId Destination chain id
/// @param toAddress Recipient address on the destination chain
/// @param bridgeTokenOut The stablecoin token and amount to receive on
/// the destination chain
/// @param refundAddress Address to send funds to if the bridge fails
/// @param extraData Adapter-specific calldata
function sendToChain(
uint256 toChainId,
address toAddress,
TokenAmount calldata bridgeTokenOut,
address refundAddress,
bytes calldata extraData
) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../token/ERC20/IERC20.sol";// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol)
pragma solidity ^0.8.20;
import {IERC165} from "../utils/introspection/IERC165.sol";// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC-165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[ERC].
*
* 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[ERC 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 v5.2.0) (proxy/ERC1967/ERC1967Proxy.sol)
pragma solidity ^0.8.22;
import {Proxy} from "../Proxy.sol";
import {ERC1967Utils} from "./ERC1967Utils.sol";
/**
* @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
* implementation address that can be changed. This address is stored in storage in the location specified by
* https://eips.ethereum.org/EIPS/eip-1967[ERC-1967], so that it doesn't conflict with the storage layout of the
* implementation behind the proxy.
*/
contract ERC1967Proxy is Proxy {
/**
* @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation`.
*
* If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an
* encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.
*
* Requirements:
*
* - If `data` is empty, `msg.value` must be zero.
*/
constructor(address implementation, bytes memory _data) payable {
ERC1967Utils.upgradeToAndCall(implementation, _data);
}
/**
* @dev Returns the current implementation address.
*
* TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using
* the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
* `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`
*/
function _implementation() internal view virtual override returns (address) {
return ERC1967Utils.getImplementation();
}
}// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.12;
import "openzeppelin-contracts-upgradeable/contracts/proxy/utils/Initializable.sol";
import "openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol";
import "openzeppelin-contracts/contracts/utils/ReentrancyGuard.sol";
import {Call} from "./DaimoPayExecutor.sol";
import "./TokenUtils.sol";
import "./interfaces/IDaimoPayBridger.sol";
/// Represents an intended call: "make X of token Y show up on chain Z,
/// then [optionally] use it to do an arbitrary contract call".
struct PayIntent {
/// Intent only executes on given target chain.
uint256 toChainId;
/// Possible output tokens after bridging to the destination chain.
/// Currently, native token is not supported as a bridge token output.
TokenAmount[] bridgeTokenOutOptions;
/// Expected token amount after swapping on the destination chain.
TokenAmount finalCallToken;
/// Contract call to execute on the destination chain. If finalCall.data is
/// empty, the tokens are transferred to finalCall.to. Otherwise, (token,
/// amount) is approved to finalCall.to and finalCall.to is called with
/// finalCall.data and finalCall.value.
Call finalCall;
/// Escrow contract. All calls are made through this contract.
address payable escrow;
/// Bridger contract.
IDaimoPayBridger bridger;
/// Address to refund tokens if call fails, or zero.
address refundAddress;
/// Nonce. PayIntent receiving addresses are one-time use.
uint256 nonce;
/// Timestamp after which intent expires and can be refunded
uint256 expirationTimestamp;
}
/// Calculates the intent hash of a PayIntent struct.
function calcIntentHash(PayIntent calldata intent) pure returns (bytes32) {
return keccak256(abi.encode(intent));
}
/// @author Daimo, Inc
/// @custom:security-contact [email protected]
/// @notice This is an ephemeral intent contract. Any supported tokens sent to
/// this address on any supported chain are forwarded, via a combination of
/// bridging and swapping, into a specified call on a destination chain.
contract PayIntentContract is Initializable, ReentrancyGuard {
using SafeERC20 for IERC20;
/// Save gas by minimizing storage to a single word. This makes intents
/// usable on L1. intentHash = keccak(abi.encode(PayIntent))
bytes32 intentHash;
/// Runs at deploy time. Singleton implementation contract = no init,
/// no state. All other methods are called via proxy.
constructor() {
_disableInitializers();
}
function initialize(bytes32 _intentHash) public initializer {
intentHash = _intentHash;
// Emit event for any ETH that arrived before deployment
if (address(this).balance > 0) {
emit NativeTransfer(
address(0),
address(this),
address(this).balance
);
}
}
/// Send tokens to a recipient.
function sendTokens(
PayIntent calldata intent,
IERC20[] calldata tokens,
address payable recipient
) public nonReentrant returns (uint256[] memory amounts) {
require(calcIntentHash(intent) == intentHash, "PI: intent");
require(msg.sender == intent.escrow, "PI: only escrow");
uint256 n = tokens.length;
amounts = new uint256[](n);
// Send tokens to recipient
for (uint256 i = 0; i < n; ++i) {
amounts[i] = TokenUtils.transferBalance({
token: tokens[i],
recipient: recipient
});
}
}
/// Check that at least one of the token amounts is present. Assumes exactly
/// one token is present, then sends the token to a recipient.
function checkBalanceAndSendTokens(
PayIntent calldata intent,
TokenAmount[] calldata tokenAmounts,
address payable recipient
) public nonReentrant {
require(calcIntentHash(intent) == intentHash, "PI: intent");
require(msg.sender == intent.escrow, "PI: only escrow");
// Check that at least one of the token amounts is present.
uint256 tokenIndex = TokenUtils.checkBalance({
tokenAmounts: tokenAmounts
});
require(tokenIndex < tokenAmounts.length, "PI: insufficient balance");
// Transfer the token amount to the recipient.
TokenUtils.transfer({
token: tokenAmounts[tokenIndex].token,
recipient: recipient,
amount: tokenAmounts[tokenIndex].amount
});
}
/// Accept native-token (eg ETH) inputs
receive() external payable {
emit NativeTransfer(msg.sender, address(this), msg.value);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)
pragma solidity ^0.8.20;
/**
* @dev Collection of common custom errors used in multiple contracts
*
* IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.
* It is recommended to avoid relying on the error API for critical functionality.
*
* _Available since v5.1._
*/
library Errors {
/**
* @dev The ETH balance of the account is not enough to perform the operation.
*/
error InsufficientBalance(uint256 balance, uint256 needed);
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedCall();
/**
* @dev The deployment failed.
*/
error FailedDeployment();
/**
* @dev A necessary precompile is missing.
*/
error MissingPrecompile(address);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/Proxy.sol)
pragma solidity ^0.8.20;
/**
* @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
* instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
* be specified by overriding the virtual {_implementation} function.
*
* Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
* different contract through the {_delegate} function.
*
* The success and return data of the delegated call will be returned back to the caller of the proxy.
*/
abstract contract Proxy {
/**
* @dev Delegates the current call to `implementation`.
*
* This function does not return to its internal call site, it will return directly to the external caller.
*/
function _delegate(address implementation) internal virtual {
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())
}
}
}
/**
* @dev This is a virtual function that should be overridden so it returns the address to which the fallback
* function and {_fallback} should delegate.
*/
function _implementation() internal view virtual returns (address);
/**
* @dev Delegates the current call to the address returned by `_implementation()`.
*
* This function does not return to its internal call site, it will return directly to the external caller.
*/
function _fallback() internal virtual {
_delegate(_implementation());
}
/**
* @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
* function in the contract matches the call data.
*/
fallback() external payable virtual {
_fallback();
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (proxy/ERC1967/ERC1967Utils.sol)
pragma solidity ^0.8.22;
import {IBeacon} from "../beacon/IBeacon.sol";
import {IERC1967} from "../../interfaces/IERC1967.sol";
import {Address} from "../../utils/Address.sol";
import {StorageSlot} from "../../utils/StorageSlot.sol";
/**
* @dev This library provides getters and event emitting update functions for
* https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.
*/
library ERC1967Utils {
/**
* @dev Storage slot with the address of the current implementation.
* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1.
*/
// solhint-disable-next-line private-vars-leading-underscore
bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
/**
* @dev The `implementation` of the proxy is invalid.
*/
error ERC1967InvalidImplementation(address implementation);
/**
* @dev The `admin` of the proxy is invalid.
*/
error ERC1967InvalidAdmin(address admin);
/**
* @dev The `beacon` of the proxy is invalid.
*/
error ERC1967InvalidBeacon(address beacon);
/**
* @dev An upgrade function sees `msg.value > 0` that may be lost.
*/
error ERC1967NonPayable();
/**
* @dev Returns the current implementation address.
*/
function getImplementation() internal view returns (address) {
return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value;
}
/**
* @dev Stores a new address in the ERC-1967 implementation slot.
*/
function _setImplementation(address newImplementation) private {
if (newImplementation.code.length == 0) {
revert ERC1967InvalidImplementation(newImplementation);
}
StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation;
}
/**
* @dev Performs implementation upgrade with additional setup call if data is nonempty.
* This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
* to avoid stuck value in the contract.
*
* Emits an {IERC1967-Upgraded} event.
*/
function upgradeToAndCall(address newImplementation, bytes memory data) internal {
_setImplementation(newImplementation);
emit IERC1967.Upgraded(newImplementation);
if (data.length > 0) {
Address.functionDelegateCall(newImplementation, data);
} else {
_checkNonPayable();
}
}
/**
* @dev Storage slot with the admin of the contract.
* This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1.
*/
// solhint-disable-next-line private-vars-leading-underscore
bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;
/**
* @dev Returns the current admin.
*
* TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using
* the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
* `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`
*/
function getAdmin() internal view returns (address) {
return StorageSlot.getAddressSlot(ADMIN_SLOT).value;
}
/**
* @dev Stores a new address in the ERC-1967 admin slot.
*/
function _setAdmin(address newAdmin) private {
if (newAdmin == address(0)) {
revert ERC1967InvalidAdmin(address(0));
}
StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin;
}
/**
* @dev Changes the admin of the proxy.
*
* Emits an {IERC1967-AdminChanged} event.
*/
function changeAdmin(address newAdmin) internal {
emit IERC1967.AdminChanged(getAdmin(), newAdmin);
_setAdmin(newAdmin);
}
/**
* @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
* This is the keccak-256 hash of "eip1967.proxy.beacon" subtracted by 1.
*/
// solhint-disable-next-line private-vars-leading-underscore
bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;
/**
* @dev Returns the current beacon.
*/
function getBeacon() internal view returns (address) {
return StorageSlot.getAddressSlot(BEACON_SLOT).value;
}
/**
* @dev Stores a new beacon in the ERC-1967 beacon slot.
*/
function _setBeacon(address newBeacon) private {
if (newBeacon.code.length == 0) {
revert ERC1967InvalidBeacon(newBeacon);
}
StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon;
address beaconImplementation = IBeacon(newBeacon).implementation();
if (beaconImplementation.code.length == 0) {
revert ERC1967InvalidImplementation(beaconImplementation);
}
}
/**
* @dev Change the beacon and trigger a setup call if data is nonempty.
* This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
* to avoid stuck value in the contract.
*
* Emits an {IERC1967-BeaconUpgraded} event.
*
* CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since
* it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for
* efficiency.
*/
function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal {
_setBeacon(newBeacon);
emit IERC1967.BeaconUpgraded(newBeacon);
if (data.length > 0) {
Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);
} else {
_checkNonPayable();
}
}
/**
* @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract
* if an upgrade doesn't perform an initialization call.
*/
function _checkNonPayable() private {
if (msg.value > 0) {
revert ERC1967NonPayable();
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol)
pragma solidity ^0.8.20;
/**
* @dev This is the interface that {BeaconProxy} expects of its beacon.
*/
interface IBeacon {
/**
* @dev Must return an address that can be used as a delegate call target.
*
* {UpgradeableBeacon} will check that this address is a contract.
*/
function implementation() external view returns (address);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1967.sol)
pragma solidity ^0.8.20;
/**
* @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.
*/
interface IERC1967 {
/**
* @dev Emitted when the implementation is upgraded.
*/
event Upgraded(address indexed implementation);
/**
* @dev Emitted when the admin account has changed.
*/
event AdminChanged(address previousAdmin, address newAdmin);
/**
* @dev Emitted when the beacon is changed.
*/
event BeaconUpgraded(address indexed beacon);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (utils/Address.sol)
pragma solidity ^0.8.20;
import {Errors} from "./Errors.sol";
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev There's no code at `target` (it is not a contract).
*/
error AddressEmptyCode(address target);
/**
* @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
if (address(this).balance < amount) {
revert Errors.InsufficientBalance(address(this).balance, amount);
}
(bool success, bytes memory returndata) = recipient.call{value: amount}("");
if (!success) {
_revert(returndata);
}
}
/**
* @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 or custom error, it is bubbled
* up by this function (like regular Solidity function calls). However, if
* the call reverted with no returned reason, this function reverts with a
* {Errors.FailedCall} error.
*
* 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.
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
/**
* @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`.
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert Errors.InsufficientBalance(address(this).balance, value);
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
* was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case
* of an unsuccessful call.
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata
) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
// only check if target is a contract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
/**
* @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
* revert reason or with a default {Errors.FailedCall} error.
*/
function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
return returndata;
}
}
/**
* @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}.
*/
function _revert(bytes memory returndata) 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
assembly ("memory-safe") {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert Errors.FailedCall();
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
pragma solidity ^0.8.20;
/**
* @dev Library for reading and writing primitive types to specific storage slots.
*
* Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
* This library helps with reading and writing to such slots without the need for inline assembly.
*
* The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
*
* Example usage to set ERC-1967 implementation slot:
* ```solidity
* contract ERC1967 {
* // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.
* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
*
* function _getImplementation() internal view returns (address) {
* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
* }
*
* function _setImplementation(address newImplementation) internal {
* require(newImplementation.code.length > 0);
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
* }
* }
* ```
*
* TIP: Consider using this library along with {SlotDerivation}.
*/
library StorageSlot {
struct AddressSlot {
address value;
}
struct BooleanSlot {
bool value;
}
struct Bytes32Slot {
bytes32 value;
}
struct Uint256Slot {
uint256 value;
}
struct Int256Slot {
int256 value;
}
struct StringSlot {
string value;
}
struct BytesSlot {
bytes value;
}
/**
* @dev Returns an `AddressSlot` with member `value` located at `slot`.
*/
function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns a `BooleanSlot` with member `value` located at `slot`.
*/
function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns a `Bytes32Slot` with member `value` located at `slot`.
*/
function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns a `Uint256Slot` with member `value` located at `slot`.
*/
function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns a `Int256Slot` with member `value` located at `slot`.
*/
function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns a `StringSlot` with member `value` located at `slot`.
*/
function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` representation of the string storage pointer `store`.
*/
function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
assembly ("memory-safe") {
r.slot := store.slot
}
}
/**
* @dev Returns a `BytesSlot` with member `value` located at `slot`.
*/
function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
assembly ("memory-safe") {
r.slot := slot
}
}
/**
* @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
*/
function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
assembly ("memory-safe") {
r.slot := store.slot
}
}
}{
"remappings": [
"@axelar-network/=lib/axelar-gmp-sdk-solidity/",
"forge-std/=lib/forge-std/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts-upgradeable/lib/openzeppelin-contracts/",
"@openzeppelin/contracts/=lib/openzeppelin-contracts-upgradeable/lib/openzeppelin-contracts/contracts/",
"@layerzerolabs/oft-evm/=lib/devtools/packages/oft-evm/",
"@layerzerolabs/oapp-evm/=lib/devtools/packages/oapp-evm/",
"@layerzerolabs/lz-evm-protocol-v2/=lib/LayerZero-v2/packages/layerzero-v2/evm/protocol/",
"@layerzerolabs/lz-evm-messagelib-v2/=lib/LayerZero-v2/packages/layerzero-v2/evm/messagelib/",
"@layerzerolabs/lz-evm-oapp-v2/=lib/LayerZero-v2/packages/layerzero-v2/evm/oapp/",
"@stargatefinance/stg-evm-v2/=lib/stargate-v2/packages/stg-evm-v2/",
"@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
"LayerZero-v2/=lib/LayerZero-v2/",
"axelar-gmp-sdk-solidity/=lib/axelar-gmp-sdk-solidity/contracts/",
"devtools/=lib/devtools/packages/toolbox-foundry/src/",
"ds-test/=lib/solmate/lib/ds-test/src/",
"erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/",
"halmos-cheatcodes/=lib/openzeppelin-contracts-upgradeable/lib/halmos-cheatcodes/src/",
"openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
"solmate/=lib/solmate/src/",
"stargate-v2/=lib/stargate-v2/packages/stg-evm-v2/src/"
],
"optimizer": {
"enabled": true,
"runs": 999999
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "london",
"viaIR": true
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"refundAddress","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"OverPaymentRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":true,"internalType":"address","name":"requiredTokenIn","type":"address"},{"indexed":true,"internalType":"address","name":"requiredTokenOut","type":"address"},{"indexed":false,"internalType":"uint256","name":"suppliedAmountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapAmountOut","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxPreTip","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxPostTip","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"preTip","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"postTip","type":"uint256"}],"name":"SwapAndTip","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"preCalls","type":"tuple[]"},{"internalType":"contract DaimoPay","name":"dp","type":"address"},{"components":[{"internalType":"uint256","name":"toChainId","type":"uint256"},{"components":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct TokenAmount[]","name":"bridgeTokenOutOptions","type":"tuple[]"},{"components":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct TokenAmount","name":"finalCallToken","type":"tuple"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call","name":"finalCall","type":"tuple"},{"internalType":"address payable","name":"escrow","type":"address"},{"internalType":"contract IDaimoPayBridger","name":"bridger","type":"address"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expirationTimestamp","type":"uint256"}],"internalType":"struct PayIntent","name":"intent","type":"tuple"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"claimCalls","type":"tuple[]"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"postCalls","type":"tuple[]"},{"internalType":"bytes32","name":"swapAndTipHash","type":"bytes32"}],"name":"claimAndKeep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"preCalls","type":"tuple[]"},{"internalType":"contract DepositAddressManager","name":"manager","type":"address"},{"components":[{"internalType":"uint256","name":"toChainId","type":"uint256"},{"internalType":"contract IERC20","name":"toToken","type":"address"},{"internalType":"address","name":"toAddress","type":"address"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"bytes","name":"finalCallData","type":"bytes"},{"internalType":"address","name":"escrow","type":"address"},{"internalType":"contract IDepositAddressBridger","name":"bridger","type":"address"},{"internalType":"contract IDaimoPayPricer","name":"pricer","type":"address"},{"internalType":"uint256","name":"maxStartSlippageBps","type":"uint256"},{"internalType":"uint256","name":"maxFastFinishSlippageBps","type":"uint256"},{"internalType":"uint256","name":"maxSameChainFinishSlippageBps","type":"uint256"},{"internalType":"uint256","name":"expiresAt","type":"uint256"}],"internalType":"struct DAParams","name":"params","type":"tuple"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"calls","type":"tuple[]"},{"components":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct TokenAmount","name":"bridgeTokenOut","type":"tuple"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"priceUsd","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PriceData","name":"bridgeTokenOutPrice","type":"tuple"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"priceUsd","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PriceData","name":"toTokenPrice","type":"tuple"},{"internalType":"bytes32","name":"relaySalt","type":"bytes32"},{"internalType":"uint256","name":"sourceChainId","type":"uint256"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"postCalls","type":"tuple[]"},{"internalType":"bytes32","name":"swapAndTipHash","type":"bytes32"}],"name":"daClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"preCalls","type":"tuple[]"},{"internalType":"contract DepositAddressManager","name":"manager","type":"address"},{"components":[{"internalType":"uint256","name":"toChainId","type":"uint256"},{"internalType":"contract IERC20","name":"toToken","type":"address"},{"internalType":"address","name":"toAddress","type":"address"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"bytes","name":"finalCallData","type":"bytes"},{"internalType":"address","name":"escrow","type":"address"},{"internalType":"contract IDepositAddressBridger","name":"bridger","type":"address"},{"internalType":"contract IDaimoPayPricer","name":"pricer","type":"address"},{"internalType":"uint256","name":"maxStartSlippageBps","type":"uint256"},{"internalType":"uint256","name":"maxFastFinishSlippageBps","type":"uint256"},{"internalType":"uint256","name":"maxSameChainFinishSlippageBps","type":"uint256"},{"internalType":"uint256","name":"expiresAt","type":"uint256"}],"internalType":"struct DAParams","name":"params","type":"tuple"},{"components":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct TokenAmount","name":"tokenIn","type":"tuple"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"priceUsd","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PriceData","name":"bridgeTokenOutPrice","type":"tuple"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"priceUsd","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PriceData","name":"toTokenPrice","type":"tuple"},{"components":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct TokenAmount","name":"bridgeTokenOut","type":"tuple"},{"internalType":"bytes32","name":"relaySalt","type":"bytes32"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"calls","type":"tuple[]"},{"internalType":"uint256","name":"sourceChainId","type":"uint256"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"postCalls","type":"tuple[]"},{"internalType":"bytes32","name":"swapAndTipHash","type":"bytes32"}],"name":"daFastFinish","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"preCalls","type":"tuple[]"},{"internalType":"contract DepositAddressManager","name":"manager","type":"address"},{"components":[{"internalType":"uint256","name":"toChainId","type":"uint256"},{"internalType":"contract IERC20","name":"toToken","type":"address"},{"internalType":"address","name":"toAddress","type":"address"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"bytes","name":"finalCallData","type":"bytes"},{"internalType":"address","name":"escrow","type":"address"},{"internalType":"contract IDepositAddressBridger","name":"bridger","type":"address"},{"internalType":"contract IDaimoPayPricer","name":"pricer","type":"address"},{"internalType":"uint256","name":"maxStartSlippageBps","type":"uint256"},{"internalType":"uint256","name":"maxFastFinishSlippageBps","type":"uint256"},{"internalType":"uint256","name":"maxSameChainFinishSlippageBps","type":"uint256"},{"internalType":"uint256","name":"expiresAt","type":"uint256"}],"internalType":"struct DAParams","name":"params","type":"tuple"},{"components":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct TokenAmount","name":"leg1BridgeTokenOut","type":"tuple"},{"internalType":"uint256","name":"leg1SourceChainId","type":"uint256"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"priceUsd","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PriceData","name":"leg1BridgeTokenOutPrice","type":"tuple"},{"components":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct TokenAmount","name":"leg2BridgeTokenOut","type":"tuple"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"priceUsd","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PriceData","name":"leg2BridgeTokenInPrice","type":"tuple"},{"internalType":"bytes32","name":"relaySalt","type":"bytes32"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"calls","type":"tuple[]"},{"internalType":"bytes","name":"bridgeExtraData","type":"bytes"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"postCalls","type":"tuple[]"},{"internalType":"bytes32","name":"swapAndTipHash","type":"bytes32"}],"name":"daHopStart","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"preCalls","type":"tuple[]"},{"internalType":"contract DepositAddressManager","name":"manager","type":"address"},{"components":[{"internalType":"uint256","name":"toChainId","type":"uint256"},{"internalType":"contract IERC20","name":"toToken","type":"address"},{"internalType":"address","name":"toAddress","type":"address"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"bytes","name":"finalCallData","type":"bytes"},{"internalType":"address","name":"escrow","type":"address"},{"internalType":"contract IDepositAddressBridger","name":"bridger","type":"address"},{"internalType":"contract IDaimoPayPricer","name":"pricer","type":"address"},{"internalType":"uint256","name":"maxStartSlippageBps","type":"uint256"},{"internalType":"uint256","name":"maxFastFinishSlippageBps","type":"uint256"},{"internalType":"uint256","name":"maxSameChainFinishSlippageBps","type":"uint256"},{"internalType":"uint256","name":"expiresAt","type":"uint256"}],"internalType":"struct DAParams","name":"params","type":"tuple"},{"internalType":"contract IERC20","name":"paymentToken","type":"address"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"priceUsd","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PriceData","name":"paymentTokenPrice","type":"tuple"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"priceUsd","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PriceData","name":"toTokenPrice","type":"tuple"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"calls","type":"tuple[]"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"postCalls","type":"tuple[]"},{"internalType":"bytes32","name":"swapAndTipHash","type":"bytes32"}],"name":"daSameChainFinish","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"preCalls","type":"tuple[]"},{"internalType":"contract DepositAddressManager","name":"manager","type":"address"},{"components":[{"internalType":"uint256","name":"toChainId","type":"uint256"},{"internalType":"contract IERC20","name":"toToken","type":"address"},{"internalType":"address","name":"toAddress","type":"address"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"bytes","name":"finalCallData","type":"bytes"},{"internalType":"address","name":"escrow","type":"address"},{"internalType":"contract IDepositAddressBridger","name":"bridger","type":"address"},{"internalType":"contract IDaimoPayPricer","name":"pricer","type":"address"},{"internalType":"uint256","name":"maxStartSlippageBps","type":"uint256"},{"internalType":"uint256","name":"maxFastFinishSlippageBps","type":"uint256"},{"internalType":"uint256","name":"maxSameChainFinishSlippageBps","type":"uint256"},{"internalType":"uint256","name":"expiresAt","type":"uint256"}],"internalType":"struct DAParams","name":"params","type":"tuple"},{"internalType":"contract IERC20","name":"paymentToken","type":"address"},{"components":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct TokenAmount","name":"bridgeTokenOut","type":"tuple"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"priceUsd","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PriceData","name":"paymentTokenPrice","type":"tuple"},{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"priceUsd","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PriceData","name":"bridgeTokenInPrice","type":"tuple"},{"internalType":"bytes32","name":"relaySalt","type":"bytes32"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"startCalls","type":"tuple[]"},{"internalType":"bytes","name":"bridgeExtraData","type":"bytes"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"postCalls","type":"tuple[]"},{"internalType":"bytes32","name":"swapAndTipHash","type":"bytes32"}],"name":"daStart","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"preCalls","type":"tuple[]"},{"internalType":"contract DaimoPay","name":"dp","type":"address"},{"components":[{"internalType":"uint256","name":"toChainId","type":"uint256"},{"components":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct TokenAmount[]","name":"bridgeTokenOutOptions","type":"tuple[]"},{"components":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct TokenAmount","name":"finalCallToken","type":"tuple"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call","name":"finalCall","type":"tuple"},{"internalType":"address payable","name":"escrow","type":"address"},{"internalType":"contract IDaimoPayBridger","name":"bridger","type":"address"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expirationTimestamp","type":"uint256"}],"internalType":"struct PayIntent","name":"intent","type":"tuple"},{"components":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct TokenAmount","name":"tokenIn","type":"tuple"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"calls","type":"tuple[]"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"postCalls","type":"tuple[]"},{"internalType":"bytes32","name":"swapAndTipHash","type":"bytes32"}],"name":"fastFinish","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"preCalls","type":"tuple[]"},{"internalType":"contract DaimoPay","name":"dp","type":"address"},{"internalType":"address","name":"intentAddr","type":"address"},{"components":[{"internalType":"uint256","name":"toChainId","type":"uint256"},{"components":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct TokenAmount[]","name":"bridgeTokenOutOptions","type":"tuple[]"},{"components":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct TokenAmount","name":"finalCallToken","type":"tuple"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call","name":"finalCall","type":"tuple"},{"internalType":"address payable","name":"escrow","type":"address"},{"internalType":"contract IDaimoPayBridger","name":"bridger","type":"address"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expirationTimestamp","type":"uint256"}],"internalType":"struct PayIntent","name":"intent","type":"tuple"},{"internalType":"contract IERC20[]","name":"paymentTokens","type":"address[]"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"startCalls","type":"tuple[]"},{"internalType":"bytes","name":"bridgeExtraData","type":"bytes"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call[]","name":"postCalls","type":"tuple[]"},{"internalType":"bytes32","name":"swapAndTipHash","type":"bytes32"}],"name":"startIntent","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct TokenAmount","name":"requiredTokenIn","type":"tuple"},{"components":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct TokenAmount","name":"requiredTokenOut","type":"tuple"},{"internalType":"uint256","name":"maxPreTip","type":"uint256"},{"internalType":"uint256","name":"maxPostTip","type":"uint256"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Call","name":"innerSwap","type":"tuple"},{"internalType":"address payable","name":"refundAddress","type":"address"}],"internalType":"struct DaimoPayRelayer.SwapAndTipParams","name":"p","type":"tuple"}],"name":"swapAndTip","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60803461006c57601f613bec38819003918201601f19168301916001600160401b038311848410176100715780849260209460405283398101031261006c57516001600160a01b038116810361006c5761005890610087565b5060018055604051613ab690816101168239f35b600080fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381166000908152600080516020613bcc833981519152602052604090205460ff1661010f576001600160a01b03166000818152600080516020613bcc83398151915260205260408120805460ff191660011790553391907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d8180a4600190565b5060009056fe608080604052600436101561001d575b50361561001b57600080fd5b005b600090813560e01c90816301ffc9a71461293f575080630f3cd96314612582578063248a9ca31461252e5780632f2ff15d146124cf57806336568abe146124465780634343433c1461223f5780634ac8f446146118e15780635910c39714611507578063729fc85e14611156578063736fe56514611105578063756af45f1461109557806391d148541461101e578063a217fddf14610fe4578063a44bd31b14610cd7578063b1502f3d146108eb578063c8f7140b14610533578063d547741f146104cb5763ea213c580361000f57346104c8576101807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760043567ffffffffffffffff81116104c45761013c9036906004016129fd565b610147929192612a33565b9260443567ffffffffffffffff81116104c0576101807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104c05760643567ffffffffffffffff81116104bc576101a79036906004016129fd565b60407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7c9392933601126104b85760c43567ffffffffffffffff81116104565760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104565760e4359067ffffffffffffffff82116104b45760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc83360301126104b4576101443567ffffffffffffffff81116104b0576102729036906004016129fd565b96909761027d6132ed565b61016435600155895b81811061045a5750505073ffffffffffffffffffffffffffffffffffffffff8899989697981691823b156104565786946103aa8692610377610308956103386040519b8c9a8b998a987fb8a7cc48000000000000000000000000000000000000000000000000000000008a5261010060048b01526101048a019060040161314d565b917ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8984030160248a015261303b565b9061034560448701612d76565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc868303016084870152600401613294565b907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8483030160a4850152600401613294565b6101043560c48301526101243560e483015203925af1801561044b57610432575b505b8181106103dc57836001805580f35b8061042c85806103ef6001958789612b1e565b60206103fa82612ba3565b6104076040840184612bc4565b9290836040519485928337810186815203930135905af1610426612c85565b506130b8565b016103cd565b8161043c91612c15565b6104475782386103cb565b8280fd5b6040513d84823e3d90fd5b8680fd5b806104aa8c8061046d6001958789612b1e565b602061047882612ba3565b6104856040840184612bc4565b9290836040519485928337810186815203930135905af16104a4612c85565b50612ce3565b01610286565b8880fd5b8780fd5b8580fd5b8480fd5b8380fd5b5080fd5b80fd5b50346104c85760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85761052f600435610509612a33565b9061052a61052582600052600060205260016040600020015490565b613359565b6134a5565b5080f35b50346104c8576101007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760043567ffffffffffffffff81116104c4576105849036906004016129fd565b61058c612a33565b916044359067ffffffffffffffff82116104bc576101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc83360301126104bc5760407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9c3601126104bc5760a43567ffffffffffffffff81116104b8576106179036906004016129fd565b60c49391933567ffffffffffffffff81116104b45761063a9036906004016129fd565b9390956106456132ed565b60e435600155885b8181106108d25750505061068473ffffffffffffffffffffffffffffffffffffffff61067761311d565b97169687608435916136ef565b6040938451906106948683612c15565b6001825260208201927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe087013685376106cb61311d565b8351156108a55773ffffffffffffffffffffffffffffffffffffffff168452883b156108a1576107698a959493926020926107398a51977f0bbc44c3000000000000000000000000000000000000000000000000000000008952606060048a01526064890190600401612edf565b917ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc88840301602489015261303b565b917ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8584030160448601525191828152019190845b81811061087257505050818084920381838a5af1801561086857610853575b505b8181106108055785856107d061311d565b9073ffffffffffffffffffffffffffffffffffffffff82166107f5575b826001805580f35b6107fe916138f9565b81806107ed565b8061084d8780610818600195878a612b1e565b602061082382612ba3565b61082f8a840184612bc4565b9290838c519485928337810186815203930135905af1610426612c85565b016107bf565b8161085d91612c15565b6104bc5784386107bd565b84513d84823e3d90fd5b825173ffffffffffffffffffffffffffffffffffffffff1684528a95506020938401939092019160010161079e565b8980fd5b60248b7f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b806108e58b8061046d6001958789612b1e565b0161064d565b506101e07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760043567ffffffffffffffff81116104c4576109379036906004016129fd565b610942929192612a33565b9260443567ffffffffffffffff81116104c0576101807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104c05760407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9c3601126104c05760c43567ffffffffffffffff81116104bc5760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104bc5760407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1c3601126104bc57610124359067ffffffffffffffff82116104b85760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc83360301126104b8576101643567ffffffffffffffff811161045657610a759036906004016129fd565b6101849291923567ffffffffffffffff81116104b057610a99903690600401612a77565b9290946101a43567ffffffffffffffff8111610cba57610abd9036906004016129fd565b989099610ac86132ed565b6101c4356001558b5b818110610cbe5750505073ffffffffffffffffffffffffffffffffffffffff8a9b9a98999a1693843b156104b057610b3f604051987fc8df57a0000000000000000000000000000000000000000000000000000000008a5261016060048b01526101648a019060040161314d565b966064359173ffffffffffffffffffffffffffffffffffffffff8316809303610cba57610c3b8a988997610c0089978f9d610bc1908f9b610c6c9a60248d015260843560448d015260a43560648d01527ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8c83030160848d0152600401613294565b90610bce60a48b01612d48565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8a83030160e48b0152600401613294565b91610144356101048901527ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8884030161012489015261303b565b917ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc85840301610144860152612e51565b03925af1801561044b57610ca5575b505b818110610c8c57836001805580f35b80610c9f85806103ef6001958789612b1e565b01610c7d565b81610caf91612c15565b610447578238610c7b565b8a80fd5b80610cd18e8061046d6001958789612b1e565b01610ad1565b506101207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760043567ffffffffffffffff81116104c457610d239036906004016129fd565b610d2e929192612a33565b9260443567ffffffffffffffff81116104c0576101807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104c057610d76612aa5565b906084359167ffffffffffffffff83116104b85760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc84360301126104b85760a4359167ffffffffffffffff83116104565760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc84360301126104565760c43567ffffffffffffffff81116104b457610e159036906004016129fd565b909260e43567ffffffffffffffff81116108a157610e379036906004016129fd565b979098610e426132ed565b610104356001558a5b818110610fcb5750505073ffffffffffffffffffffffffffffffffffffffff899a999798991692833b156104b457610f7d73ffffffffffffffffffffffffffffffffffffffff95610ee194610f4d8b99610f1a8b976040519d8e9c8d9b8c9a7f06a5b66d000000000000000000000000000000000000000000000000000000008c5260a060048d015260a48c019060040161314d565b921660248a01527ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8983030160448a0152600401613294565b907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc878303016064880152600401613294565b917ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc85840301608486015261303b565b03925af1801561044b57610fb6575b505b818110610f9d57836001805580f35b80610fb085806103ef6001958789612b1e565b01610f8e565b81610fc091612c15565b610447578238610f8c565b80610fde8d8061046d6001958789612b1e565b01610e4b565b50346104c857807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c857602090604051908152f35b50346104c85760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85773ffffffffffffffffffffffffffffffffffffffff604061106d612a33565b92600435815280602052209116600052602052602060ff604060002054166040519015158152f35b50346104c85760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760206110cf612ac8565b6110d76132ed565b6110e13082613579565b9081806110f3575b5050604051908152f35b6110fe9133906136ef565b82816110e9565b50346104c85760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c857611153611140612ac8565b6111486132ed565b6024359033906136ef565b80f35b506101a07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760043567ffffffffffffffff81116104c4576111a29036906004016129fd565b6111ad929192612a33565b9260443567ffffffffffffffff81116104c0576101807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104c0576111f5612aa5565b60407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7c3601126104bc5760c4359067ffffffffffffffff82116104b85760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc83360301126104b85760e4359267ffffffffffffffff84116104565760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8536030112610456576101243567ffffffffffffffff81116104b4576112be9036906004016129fd565b6101449491943567ffffffffffffffff81116108a1576112e2903690600401612a77565b93906101643567ffffffffffffffff8111611503576113059036906004016129fd565b99909a6113106132ed565b610184356001558c5b8181106114ea5750505073ffffffffffffffffffffffffffffffffffffffff8b9c9b999a9b1694853b156108a157899788946040519a8b998a9889977f3ea3640c000000000000000000000000000000000000000000000000000000008952600489016101209052610124890190600401906113949161314d565b9173ffffffffffffffffffffffffffffffffffffffff166024890152604488016113bd90612d76565b8782037ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc016084890152600401906113f491613294565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8782030160a488015261142a91600401613294565b906101043560c48701528582037ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0160e48701526114679261303b565b908382037ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0161010485015261149c92612e51565b03925af1801561044b576114d5575b505b8181106114bc57836001805580f35b806114cf85806103ef6001958789612b1e565b016114ad565b816114df91612c15565b6104475782386114ab565b806114fd8f8061046d6001958789612b1e565b01611319565b8b80fd5b506101c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760043567ffffffffffffffff81116104c4576115539036906004016129fd565b61155b612a33565b9160443567ffffffffffffffff81116104bc576101807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104bc5760407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9c3601126104bc5760a43567ffffffffffffffff81116104b85760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104b85760c43567ffffffffffffffff81116104565760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104565760407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1c360112610456576101443567ffffffffffffffff81116104b45761168c9036906004016129fd565b9390926101843567ffffffffffffffff81116108a157906116b68a969594939236906004016129fd565b9790986116c16132ed565b6101a435600155875b8181106118b95750505061170173ffffffffffffffffffffffffffffffffffffffff6116f461311d565b9a16998a608435916136ef565b61170961311d565b92893b15610456576117e0611777946118139373ffffffffffffffffffffffffffffffffffffffff6117a78b996040519b8c9a8b9a7fe1ab8afc000000000000000000000000000000000000000000000000000000008c5261012060048d01526101248c019060040161314d565b917ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8b84030160248c015261303b565b921660448701527ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc868303016064870152600401613294565b907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc848303016084850152600401613294565b61181f60a48301612d48565b6101243560e483015261016435610104830152038183895af1801561044b576118a4575b505b81811061188b5750505061185761311d565b9073ffffffffffffffffffffffffffffffffffffffff821661187b57826001805580f35b611884916138f9565b38806107ed565b8061189e86806103ef6001958789612b1e565b01611845565b816118ae91612c15565b6104c0578338611843565b6118d2898495969798999a61046d848660019798612b1e565b01908b979695949392916116ca565b5060207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760043567ffffffffffffffff81116104c457806004016101007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc833603011261044757604051906020820192602084526119696040840183612da3565b604481019261197b6080820185612da3565b6084820135948560c083015260a4830135908160e084015260c4840192611a0f816119bb6119a9878a612dcf565b61010080840152610140830190612e90565b73ffffffffffffffffffffffffffffffffffffffff6119dc60e48a01612a56565b16610120830152037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101835282612c15565b519020600154036121e15760018055611a31611a2a86612ba3565b3090613579565b9573ffffffffffffffffffffffffffffffffffffffff611a5086612ba3565b16611e7957879473ffffffffffffffffffffffffffffffffffffffff611a7582612ba3565b16611e1b576024850135803410611de5575b6020611a938684612aeb565b013511611d8757883496945b611aa98884613634565b73ffffffffffffffffffffffffffffffffffffffff611ad0611acb8386612aeb565b612ba3565b16611ccb575b5050611af4611aed30611ae88a612ba3565b613579565b9889613140565b97611afe82612ba3565b73ffffffffffffffffffffffffffffffffffffffff80611b1d8b612ba3565b16911614611cba575b60648a96013590818a10611bb8575b5073ffffffffffffffffffffffffffffffffffffffff611b678193611acb611b6e94611b608d612ba3565b33906136ef565b1697612ba3565b1696604051958652602086015260408501526060840152608083015260a08201527fca859a0385f905c81661afe8296a437676d201bf45432e4684a450bbfcd428d460c03392a480f35b9550611bc48982613140565b95848711611c5c578111611bd85738611b35565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4450523a2062616c616e6365206c657373207468616e2072657175697265642060448201527f6f757470757400000000000000000000000000000000000000000000000000006064820152fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4450523a2065786365737369766520706f7374207469700000000000000000006044820152fd5b9784611cc591612b67565b97611b26565b80611cda611acb849386612aeb565b90611d00611cf66020611ced8489612aeb565b01359287612aeb565b6040810190612bc4565b9190826040519384928337810185815203925af1611d1c612c85565b5015611d29578838611ad6565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4450523a20696e6e65722073776170206661696c6564000000000000000000006044820152fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4450523a2077726f6e6720696e6e657220737761702076616c756500000000006044820152fd5b9550611df13487613140565b95611dfe83881115613809565b611e1681611e0f30611ae886612ba3565b101561386e565b611a87565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4450523a206e6f74206e617469766520746f6b656e00000000000000000000006044820152fd5b879473ffffffffffffffffffffffffffffffffffffffff611e9982612ba3565b161561218357611eb2611eab82612ba3565b3390613579565b611ebb82612ba3565b9073ffffffffffffffffffffffffffffffffffffffff8216156120ff57611f2d8b92604051907f23b872dd00000000000000000000000000000000000000000000000000000000602083015233602483015230604483015283606483015260648252611f28608483612c15565b6139f5565b60248701358082106120d0575b73ffffffffffffffffffffffffffffffffffffffff611f5c611acb8987612aeb565b16611f6a575b509694611a9f565b611f7384612ba3565b90611f81611acb8987612aeb565b916020856040519361201085611fe4858201937f095ea7b300000000000000000000000000000000000000000000000000000000855289602484016020909392919373ffffffffffffffffffffffffffffffffffffffff60408201951681520152565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101875286612c15565b84519082855af185513d8261209e575b50501561202f575b5050611f62565b611f286120969373ffffffffffffffffffffffffffffffffffffffff604051917f095ea7b300000000000000000000000000000000000000000000000000000000602084015216602482015286604482015260448152612090606482612c15565b826139f5565b388080612028565b9091506120c8575073ffffffffffffffffffffffffffffffffffffffff81163b15155b3880612020565b6001146120c1565b97506120dc8189613140565b976120e9858a1115613809565b6120fa81611e0f30611ae888612ba3565b611f3a565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f546f6b656e5574696c733a20455448207472616e7366657246726f6d206d757360448201527f742062652063616c6c65720000000000000000000000000000000000000000006064820152fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4450523a206e6f7420455243323020746f6b656e0000000000000000000000006044820152fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4450523a2077726f6e67206861736800000000000000000000000000000000006044820152fd5b50346104c85760c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760043567ffffffffffffffff81116104c45761228f9036906004016129fd565b90612298612a33565b60443567ffffffffffffffff81116104bc576101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104bc5760643567ffffffffffffffff81116104b8576122f79036906004016129fd565b909260843567ffffffffffffffff81116104b4579061231e889594939236906004016129fd565b9690976123296132ed565b60a435600155865b8181106124205750505073ffffffffffffffffffffffffffffffffffffffff16803b156104bc576123a28580946123d2604051978896879586947f13f167a5000000000000000000000000000000000000000000000000000000008652604060048701526044860190600401612edf565b917ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc85840301602486015261303b565b03925af1801561044b5761240b575b505b8181106123f257836001805580f35b8061240585806103ef6001958789612b1e565b016123e3565b8161241591612c15565b6104475782386123e1565b6124388884959697989961046d848660019798612b1e565b019089969594939291612331565b50346104c85760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85761247e612a33565b3373ffffffffffffffffffffffffffffffffffffffff8216036124a75761052f906004356134a5565b6004827f6697b232000000000000000000000000000000000000000000000000000000008152fd5b50346104c85760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85761052f60043561250d612a33565b9061252961052582600052600060205260016040600020015490565b6133c6565b50346104c85760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c857602061257a600435600052600060205260016040600020015490565b604051908152f35b506101207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c8578060043567ffffffffffffffff811161293c576125cf9036906004016129fd565b91906125d9612a33565b6044359373ffffffffffffffffffffffffffffffffffffffff851685036104c0576064359267ffffffffffffffff84116104bc576101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc85360301126104bc5760843567ffffffffffffffff81116104b85761265a9036906004016129fd565b9360a43567ffffffffffffffff81116104b45761267b9036906004016129fd565b9160c43567ffffffffffffffff81116108a15761269c903690600401612a77565b95909660e43567ffffffffffffffff8111611503576126bf9036906004016129fd565b9b909c6126ca6132ed565b61010435600155815b878110612919575031036128bb578c5b8d8282106128a2575050505073ffffffffffffffffffffffffffffffffffffffff1695863b15610cba5791612758979593918b97959360206040519a8b997f775ece72000000000000000000000000000000000000000000000000000000008b52608060048c015260848b0190600401612edf565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8a82030160248b0152828152019390895b81811061285a575050509387936127d184612801948a987ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8a80990301604489015261303b565b917ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc858403016064860152612e51565b03925af1801561284f5761283b575b50825b81811061282257836001805580f35b8061283585806103ef6001958789612b1e565b01612813565b8361284891949294612c15565b9138612810565b6040513d86823e3d90fd5b92946020919496989a5082979950819073ffffffffffffffffffffffffffffffffffffffff61288a600195612a56565b1681520196019101908c989694928a9896949261278a565b906128b58260019361046d848789612b1e565b016126e3565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4450523a2077726f6e67206e61746976652062616c616e6365000000000000006044820152fd5b91612935600191602061292d868c8c612b1e565b013590612b67565b92016126d3565b50fd5b9050346104c45760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c4576004357fffffffff00000000000000000000000000000000000000000000000000000000811680910361044757602092507f7965db0b0000000000000000000000000000000000000000000000000000000081149081156129d3575b5015158152f35b7f01ffc9a700000000000000000000000000000000000000000000000000000000915014386129cc565b9181601f84011215612a2e5782359167ffffffffffffffff8311612a2e576020808501948460051b010111612a2e57565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff82168203612a2e57565b359073ffffffffffffffffffffffffffffffffffffffff82168203612a2e57565b9181601f84011215612a2e5782359167ffffffffffffffff8311612a2e5760208381860195010111612a2e57565b6064359073ffffffffffffffffffffffffffffffffffffffff82168203612a2e57565b6004359073ffffffffffffffffffffffffffffffffffffffff82168203612a2e57565b9035907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa181360301821215612a2e570190565b90821015612b3857612b359160051b810190612aeb565b90565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b91908201809211612b7457565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b3573ffffffffffffffffffffffffffffffffffffffff81168103612a2e5790565b9035907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe181360301821215612a2e570180359067ffffffffffffffff8211612a2e57602001918136038313612a2e57565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117612c5657604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b3d15612cde573d9067ffffffffffffffff8211612c565760405191612cd260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8401160184612c15565b82523d6000602084013e565b606090565b15612cea57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4450523a2070726543616c6c206661696c6564000000000000000000000000006044820152fd5b60e43573ffffffffffffffffffffffffffffffffffffffff8116809103612a2e578152602061010435910152565b60843573ffffffffffffffffffffffffffffffffffffffff8116809103612a2e578152602060a435910152565b6020809173ffffffffffffffffffffffffffffffffffffffff612dc582612a56565b1684520135910152565b90357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa182360301811215612a2e570190565b90357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe182360301811215612a2e57016020813591019167ffffffffffffffff8211612a2e578136038313612a2e57565b601f82602094937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0938186528686013760008582860101520116010190565b906060612ecf612b359373ffffffffffffffffffffffffffffffffffffffff612eb882612a56565b168452602081013560208501526040810190612e01565b9190928160408201520191612e51565b9061014081018235825260208301357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811215612a2e5783016020813591019167ffffffffffffffff8211612a2e578160061b36038313612a2e57610140602085015281905261016083019060005b81811061301b575050612f8a9150612f706040840160408601612da3565b612f7d6080850185612dcf565b8382036080850152612e90565b9173ffffffffffffffffffffffffffffffffffffffff612fac60a08301612a56565b1660a083015260c081013573ffffffffffffffffffffffffffffffffffffffff8116809103612a2e5761012091829160c085015273ffffffffffffffffffffffffffffffffffffffff61300160e08301612a56565b1660e0850152610100810135610100850152013591015290565b90916040808261302d60019488612da3565b019401910192919092612f52565b90602083828152019260208260051b82010193836000925b8484106130635750505050505090565b9091929394956020806130a8837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe086600196030188526130a38b88612dcf565b612e90565b9801940194019294939190613053565b156130bf57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4450523a20706f737443616c6c206661696c65640000000000000000000000006044820152fd5b60643573ffffffffffffffffffffffffffffffffffffffff81168103612a2e5790565b91908203918211612b7457565b908135815273ffffffffffffffffffffffffffffffffffffffff61317360208401612a56565b16602082015273ffffffffffffffffffffffffffffffffffffffff61319a60408401612a56565b16604082015273ffffffffffffffffffffffffffffffffffffffff6131c160608401612a56565b1660608201526131ea6131d76080840184612e01565b6101806080850152610180840191612e51565b9173ffffffffffffffffffffffffffffffffffffffff61320c60a08301612a56565b1660a083015260c081013573ffffffffffffffffffffffffffffffffffffffff8116809103612a2e5760c083015260e081013573ffffffffffffffffffffffffffffffffffffffff8116809103612a2e5761016091829160e0850152610100810135610100850152610120810135610120850152610140810135610140850152013591015290565b9060806132dd612b359373ffffffffffffffffffffffffffffffffffffffff6132bc82612a56565b16845260208101356020850152604081013560408501526060810190612e01565b9190928160608201520191612e51565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff161561332657565b7fe2517d3f0000000000000000000000000000000000000000000000000000000060005233600452600060245260446000fd5b806000526000602052604060002073ffffffffffffffffffffffffffffffffffffffff331660005260205260ff60406000205416156133955750565b7fe2517d3f000000000000000000000000000000000000000000000000000000006000523360045260245260446000fd5b806000526000602052604060002073ffffffffffffffffffffffffffffffffffffffff831660005260205260ff604060002054161560001461349e57806000526000602052604060002073ffffffffffffffffffffffffffffffffffffffff8316600052602052604060002060017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082541617905573ffffffffffffffffffffffffffffffffffffffff339216907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d600080a4600190565b5050600090565b806000526000602052604060002073ffffffffffffffffffffffffffffffffffffffff831660005260205260ff6040600020541660001461349e57806000526000602052604060002073ffffffffffffffffffffffffffffffffffffffff831660005260205260406000207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00815416905573ffffffffffffffffffffffffffffffffffffffff339216907ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b600080a4600190565b73ffffffffffffffffffffffffffffffffffffffff168061359957503190565b9073ffffffffffffffffffffffffffffffffffffffff602460209260405194859384927f70a082310000000000000000000000000000000000000000000000000000000084521660048301525afa908115613628576000916135f9575090565b90506020813d602011613620575b8161361460209383612c15565b81010312612a2e575190565b3d9150613607565b6040513d6000823e3d90fd5b9060e082019073ffffffffffffffffffffffffffffffffffffffff61365883612ba3565b16156136ea576020830135808211156136e45773ffffffffffffffffffffffffffffffffffffffff806136d76136d16136b46020957f4cfc6e7eef9170f5ac10331741bbedde754d86e10bfb40c9d81f79646632a2e097613140565b96611acb886136c28b612ba3565b6136cb84612ba3565b906136ef565b96612ba3565b16946040519485521692a3565b50505050565b505050565b919073ffffffffffffffffffffffffffffffffffffffff16913083146136ea5773ffffffffffffffffffffffffffffffffffffffff811615613790576040517fa9059cbb00000000000000000000000000000000000000000000000000000000602082015273ffffffffffffffffffffffffffffffffffffffff93909316602484015260448084019290925290825261378e9190611f28606483612c15565b565b5060008080939281935af16137a3612c85565b50156137ab57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f546f6b656e5574696c733a20455448207472616e73666572206661696c6564006044820152fd5b1561381057565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4450523a206578636573736976652070726520746970000000000000000000006044820152fd5b1561387557565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4450523a2062616c616e6365206c657373207468616e2072657175697265642060448201527f696e7075740000000000000000000000000000000000000000000000000000006064820152fd5b604051906020600073ffffffffffffffffffffffffffffffffffffffff828501957f095ea7b300000000000000000000000000000000000000000000000000000000875216948560248601528160448601526044855261395a606486612c15565b84519082855af16000513d826139c3575b50501561397757505050565b611f2861378e93604051907f095ea7b300000000000000000000000000000000000000000000000000000000602083015260248201526000604482015260448152612090606482612c15565b9091506139ed575073ffffffffffffffffffffffffffffffffffffffff81163b15155b388061396b565b6001146139e6565b906000602091828151910182855af115613628576000513d613a77575073ffffffffffffffffffffffffffffffffffffffff81163b155b613a335750565b73ffffffffffffffffffffffffffffffffffffffff907f5274afe7000000000000000000000000000000000000000000000000000000006000521660045260246000fd5b60011415613a2c56fea2646970667358221220d861e9b80e94b098b21adbe1bf1ea93a6492f0a954a25687074a6770e18c192264736f6c634300081a0033ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5000000000000000000000000723a63fb50da50a26997fb99a2eb151e4f8c5227
Deployed Bytecode
0x608080604052600436101561001d575b50361561001b57600080fd5b005b600090813560e01c90816301ffc9a71461293f575080630f3cd96314612582578063248a9ca31461252e5780632f2ff15d146124cf57806336568abe146124465780634343433c1461223f5780634ac8f446146118e15780635910c39714611507578063729fc85e14611156578063736fe56514611105578063756af45f1461109557806391d148541461101e578063a217fddf14610fe4578063a44bd31b14610cd7578063b1502f3d146108eb578063c8f7140b14610533578063d547741f146104cb5763ea213c580361000f57346104c8576101807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760043567ffffffffffffffff81116104c45761013c9036906004016129fd565b610147929192612a33565b9260443567ffffffffffffffff81116104c0576101807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104c05760643567ffffffffffffffff81116104bc576101a79036906004016129fd565b60407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7c9392933601126104b85760c43567ffffffffffffffff81116104565760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104565760e4359067ffffffffffffffff82116104b45760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc83360301126104b4576101443567ffffffffffffffff81116104b0576102729036906004016129fd565b96909761027d6132ed565b61016435600155895b81811061045a5750505073ffffffffffffffffffffffffffffffffffffffff8899989697981691823b156104565786946103aa8692610377610308956103386040519b8c9a8b998a987fb8a7cc48000000000000000000000000000000000000000000000000000000008a5261010060048b01526101048a019060040161314d565b917ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8984030160248a015261303b565b9061034560448701612d76565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc868303016084870152600401613294565b907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8483030160a4850152600401613294565b6101043560c48301526101243560e483015203925af1801561044b57610432575b505b8181106103dc57836001805580f35b8061042c85806103ef6001958789612b1e565b60206103fa82612ba3565b6104076040840184612bc4565b9290836040519485928337810186815203930135905af1610426612c85565b506130b8565b016103cd565b8161043c91612c15565b6104475782386103cb565b8280fd5b6040513d84823e3d90fd5b8680fd5b806104aa8c8061046d6001958789612b1e565b602061047882612ba3565b6104856040840184612bc4565b9290836040519485928337810186815203930135905af16104a4612c85565b50612ce3565b01610286565b8880fd5b8780fd5b8580fd5b8480fd5b8380fd5b5080fd5b80fd5b50346104c85760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85761052f600435610509612a33565b9061052a61052582600052600060205260016040600020015490565b613359565b6134a5565b5080f35b50346104c8576101007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760043567ffffffffffffffff81116104c4576105849036906004016129fd565b61058c612a33565b916044359067ffffffffffffffff82116104bc576101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc83360301126104bc5760407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9c3601126104bc5760a43567ffffffffffffffff81116104b8576106179036906004016129fd565b60c49391933567ffffffffffffffff81116104b45761063a9036906004016129fd565b9390956106456132ed565b60e435600155885b8181106108d25750505061068473ffffffffffffffffffffffffffffffffffffffff61067761311d565b97169687608435916136ef565b6040938451906106948683612c15565b6001825260208201927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe087013685376106cb61311d565b8351156108a55773ffffffffffffffffffffffffffffffffffffffff168452883b156108a1576107698a959493926020926107398a51977f0bbc44c3000000000000000000000000000000000000000000000000000000008952606060048a01526064890190600401612edf565b917ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc88840301602489015261303b565b917ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8584030160448601525191828152019190845b81811061087257505050818084920381838a5af1801561086857610853575b505b8181106108055785856107d061311d565b9073ffffffffffffffffffffffffffffffffffffffff82166107f5575b826001805580f35b6107fe916138f9565b81806107ed565b8061084d8780610818600195878a612b1e565b602061082382612ba3565b61082f8a840184612bc4565b9290838c519485928337810186815203930135905af1610426612c85565b016107bf565b8161085d91612c15565b6104bc5784386107bd565b84513d84823e3d90fd5b825173ffffffffffffffffffffffffffffffffffffffff1684528a95506020938401939092019160010161079e565b8980fd5b60248b7f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b806108e58b8061046d6001958789612b1e565b0161064d565b506101e07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760043567ffffffffffffffff81116104c4576109379036906004016129fd565b610942929192612a33565b9260443567ffffffffffffffff81116104c0576101807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104c05760407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9c3601126104c05760c43567ffffffffffffffff81116104bc5760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104bc5760407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1c3601126104bc57610124359067ffffffffffffffff82116104b85760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc83360301126104b8576101643567ffffffffffffffff811161045657610a759036906004016129fd565b6101849291923567ffffffffffffffff81116104b057610a99903690600401612a77565b9290946101a43567ffffffffffffffff8111610cba57610abd9036906004016129fd565b989099610ac86132ed565b6101c4356001558b5b818110610cbe5750505073ffffffffffffffffffffffffffffffffffffffff8a9b9a98999a1693843b156104b057610b3f604051987fc8df57a0000000000000000000000000000000000000000000000000000000008a5261016060048b01526101648a019060040161314d565b966064359173ffffffffffffffffffffffffffffffffffffffff8316809303610cba57610c3b8a988997610c0089978f9d610bc1908f9b610c6c9a60248d015260843560448d015260a43560648d01527ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8c83030160848d0152600401613294565b90610bce60a48b01612d48565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8a83030160e48b0152600401613294565b91610144356101048901527ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8884030161012489015261303b565b917ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc85840301610144860152612e51565b03925af1801561044b57610ca5575b505b818110610c8c57836001805580f35b80610c9f85806103ef6001958789612b1e565b01610c7d565b81610caf91612c15565b610447578238610c7b565b8a80fd5b80610cd18e8061046d6001958789612b1e565b01610ad1565b506101207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760043567ffffffffffffffff81116104c457610d239036906004016129fd565b610d2e929192612a33565b9260443567ffffffffffffffff81116104c0576101807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104c057610d76612aa5565b906084359167ffffffffffffffff83116104b85760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc84360301126104b85760a4359167ffffffffffffffff83116104565760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc84360301126104565760c43567ffffffffffffffff81116104b457610e159036906004016129fd565b909260e43567ffffffffffffffff81116108a157610e379036906004016129fd565b979098610e426132ed565b610104356001558a5b818110610fcb5750505073ffffffffffffffffffffffffffffffffffffffff899a999798991692833b156104b457610f7d73ffffffffffffffffffffffffffffffffffffffff95610ee194610f4d8b99610f1a8b976040519d8e9c8d9b8c9a7f06a5b66d000000000000000000000000000000000000000000000000000000008c5260a060048d015260a48c019060040161314d565b921660248a01527ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8983030160448a0152600401613294565b907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc878303016064880152600401613294565b917ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc85840301608486015261303b565b03925af1801561044b57610fb6575b505b818110610f9d57836001805580f35b80610fb085806103ef6001958789612b1e565b01610f8e565b81610fc091612c15565b610447578238610f8c565b80610fde8d8061046d6001958789612b1e565b01610e4b565b50346104c857807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c857602090604051908152f35b50346104c85760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85773ffffffffffffffffffffffffffffffffffffffff604061106d612a33565b92600435815280602052209116600052602052602060ff604060002054166040519015158152f35b50346104c85760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760206110cf612ac8565b6110d76132ed565b6110e13082613579565b9081806110f3575b5050604051908152f35b6110fe9133906136ef565b82816110e9565b50346104c85760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c857611153611140612ac8565b6111486132ed565b6024359033906136ef565b80f35b506101a07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760043567ffffffffffffffff81116104c4576111a29036906004016129fd565b6111ad929192612a33565b9260443567ffffffffffffffff81116104c0576101807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104c0576111f5612aa5565b60407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7c3601126104bc5760c4359067ffffffffffffffff82116104b85760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc83360301126104b85760e4359267ffffffffffffffff84116104565760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8536030112610456576101243567ffffffffffffffff81116104b4576112be9036906004016129fd565b6101449491943567ffffffffffffffff81116108a1576112e2903690600401612a77565b93906101643567ffffffffffffffff8111611503576113059036906004016129fd565b99909a6113106132ed565b610184356001558c5b8181106114ea5750505073ffffffffffffffffffffffffffffffffffffffff8b9c9b999a9b1694853b156108a157899788946040519a8b998a9889977f3ea3640c000000000000000000000000000000000000000000000000000000008952600489016101209052610124890190600401906113949161314d565b9173ffffffffffffffffffffffffffffffffffffffff166024890152604488016113bd90612d76565b8782037ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc016084890152600401906113f491613294565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8782030160a488015261142a91600401613294565b906101043560c48701528582037ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0160e48701526114679261303b565b908382037ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0161010485015261149c92612e51565b03925af1801561044b576114d5575b505b8181106114bc57836001805580f35b806114cf85806103ef6001958789612b1e565b016114ad565b816114df91612c15565b6104475782386114ab565b806114fd8f8061046d6001958789612b1e565b01611319565b8b80fd5b506101c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760043567ffffffffffffffff81116104c4576115539036906004016129fd565b61155b612a33565b9160443567ffffffffffffffff81116104bc576101807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104bc5760407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9c3601126104bc5760a43567ffffffffffffffff81116104b85760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104b85760c43567ffffffffffffffff81116104565760807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104565760407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1c360112610456576101443567ffffffffffffffff81116104b45761168c9036906004016129fd565b9390926101843567ffffffffffffffff81116108a157906116b68a969594939236906004016129fd565b9790986116c16132ed565b6101a435600155875b8181106118b95750505061170173ffffffffffffffffffffffffffffffffffffffff6116f461311d565b9a16998a608435916136ef565b61170961311d565b92893b15610456576117e0611777946118139373ffffffffffffffffffffffffffffffffffffffff6117a78b996040519b8c9a8b9a7fe1ab8afc000000000000000000000000000000000000000000000000000000008c5261012060048d01526101248c019060040161314d565b917ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8b84030160248c015261303b565b921660448701527ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc868303016064870152600401613294565b907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc848303016084850152600401613294565b61181f60a48301612d48565b6101243560e483015261016435610104830152038183895af1801561044b576118a4575b505b81811061188b5750505061185761311d565b9073ffffffffffffffffffffffffffffffffffffffff821661187b57826001805580f35b611884916138f9565b38806107ed565b8061189e86806103ef6001958789612b1e565b01611845565b816118ae91612c15565b6104c0578338611843565b6118d2898495969798999a61046d848660019798612b1e565b01908b979695949392916116ca565b5060207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760043567ffffffffffffffff81116104c457806004016101007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc833603011261044757604051906020820192602084526119696040840183612da3565b604481019261197b6080820185612da3565b6084820135948560c083015260a4830135908160e084015260c4840192611a0f816119bb6119a9878a612dcf565b61010080840152610140830190612e90565b73ffffffffffffffffffffffffffffffffffffffff6119dc60e48a01612a56565b16610120830152037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101835282612c15565b519020600154036121e15760018055611a31611a2a86612ba3565b3090613579565b9573ffffffffffffffffffffffffffffffffffffffff611a5086612ba3565b16611e7957879473ffffffffffffffffffffffffffffffffffffffff611a7582612ba3565b16611e1b576024850135803410611de5575b6020611a938684612aeb565b013511611d8757883496945b611aa98884613634565b73ffffffffffffffffffffffffffffffffffffffff611ad0611acb8386612aeb565b612ba3565b16611ccb575b5050611af4611aed30611ae88a612ba3565b613579565b9889613140565b97611afe82612ba3565b73ffffffffffffffffffffffffffffffffffffffff80611b1d8b612ba3565b16911614611cba575b60648a96013590818a10611bb8575b5073ffffffffffffffffffffffffffffffffffffffff611b678193611acb611b6e94611b608d612ba3565b33906136ef565b1697612ba3565b1696604051958652602086015260408501526060840152608083015260a08201527fca859a0385f905c81661afe8296a437676d201bf45432e4684a450bbfcd428d460c03392a480f35b9550611bc48982613140565b95848711611c5c578111611bd85738611b35565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4450523a2062616c616e6365206c657373207468616e2072657175697265642060448201527f6f757470757400000000000000000000000000000000000000000000000000006064820152fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4450523a2065786365737369766520706f7374207469700000000000000000006044820152fd5b9784611cc591612b67565b97611b26565b80611cda611acb849386612aeb565b90611d00611cf66020611ced8489612aeb565b01359287612aeb565b6040810190612bc4565b9190826040519384928337810185815203925af1611d1c612c85565b5015611d29578838611ad6565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4450523a20696e6e65722073776170206661696c6564000000000000000000006044820152fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4450523a2077726f6e6720696e6e657220737761702076616c756500000000006044820152fd5b9550611df13487613140565b95611dfe83881115613809565b611e1681611e0f30611ae886612ba3565b101561386e565b611a87565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4450523a206e6f74206e617469766520746f6b656e00000000000000000000006044820152fd5b879473ffffffffffffffffffffffffffffffffffffffff611e9982612ba3565b161561218357611eb2611eab82612ba3565b3390613579565b611ebb82612ba3565b9073ffffffffffffffffffffffffffffffffffffffff8216156120ff57611f2d8b92604051907f23b872dd00000000000000000000000000000000000000000000000000000000602083015233602483015230604483015283606483015260648252611f28608483612c15565b6139f5565b60248701358082106120d0575b73ffffffffffffffffffffffffffffffffffffffff611f5c611acb8987612aeb565b16611f6a575b509694611a9f565b611f7384612ba3565b90611f81611acb8987612aeb565b916020856040519361201085611fe4858201937f095ea7b300000000000000000000000000000000000000000000000000000000855289602484016020909392919373ffffffffffffffffffffffffffffffffffffffff60408201951681520152565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101875286612c15565b84519082855af185513d8261209e575b50501561202f575b5050611f62565b611f286120969373ffffffffffffffffffffffffffffffffffffffff604051917f095ea7b300000000000000000000000000000000000000000000000000000000602084015216602482015286604482015260448152612090606482612c15565b826139f5565b388080612028565b9091506120c8575073ffffffffffffffffffffffffffffffffffffffff81163b15155b3880612020565b6001146120c1565b97506120dc8189613140565b976120e9858a1115613809565b6120fa81611e0f30611ae888612ba3565b611f3a565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f546f6b656e5574696c733a20455448207472616e7366657246726f6d206d757360448201527f742062652063616c6c65720000000000000000000000000000000000000000006064820152fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4450523a206e6f7420455243323020746f6b656e0000000000000000000000006044820152fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4450523a2077726f6e67206861736800000000000000000000000000000000006044820152fd5b50346104c85760c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85760043567ffffffffffffffff81116104c45761228f9036906004016129fd565b90612298612a33565b60443567ffffffffffffffff81116104bc576101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc82360301126104bc5760643567ffffffffffffffff81116104b8576122f79036906004016129fd565b909260843567ffffffffffffffff81116104b4579061231e889594939236906004016129fd565b9690976123296132ed565b60a435600155865b8181106124205750505073ffffffffffffffffffffffffffffffffffffffff16803b156104bc576123a28580946123d2604051978896879586947f13f167a5000000000000000000000000000000000000000000000000000000008652604060048701526044860190600401612edf565b917ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc85840301602486015261303b565b03925af1801561044b5761240b575b505b8181106123f257836001805580f35b8061240585806103ef6001958789612b1e565b016123e3565b8161241591612c15565b6104475782386123e1565b6124388884959697989961046d848660019798612b1e565b019089969594939291612331565b50346104c85760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85761247e612a33565b3373ffffffffffffffffffffffffffffffffffffffff8216036124a75761052f906004356134a5565b6004827f6697b232000000000000000000000000000000000000000000000000000000008152fd5b50346104c85760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c85761052f60043561250d612a33565b9061252961052582600052600060205260016040600020015490565b6133c6565b50346104c85760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c857602061257a600435600052600060205260016040600020015490565b604051908152f35b506101207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c8578060043567ffffffffffffffff811161293c576125cf9036906004016129fd565b91906125d9612a33565b6044359373ffffffffffffffffffffffffffffffffffffffff851685036104c0576064359267ffffffffffffffff84116104bc576101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc85360301126104bc5760843567ffffffffffffffff81116104b85761265a9036906004016129fd565b9360a43567ffffffffffffffff81116104b45761267b9036906004016129fd565b9160c43567ffffffffffffffff81116108a15761269c903690600401612a77565b95909660e43567ffffffffffffffff8111611503576126bf9036906004016129fd565b9b909c6126ca6132ed565b61010435600155815b878110612919575031036128bb578c5b8d8282106128a2575050505073ffffffffffffffffffffffffffffffffffffffff1695863b15610cba5791612758979593918b97959360206040519a8b997f775ece72000000000000000000000000000000000000000000000000000000008b52608060048c015260848b0190600401612edf565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8a82030160248b0152828152019390895b81811061285a575050509387936127d184612801948a987ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8a80990301604489015261303b565b917ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc858403016064860152612e51565b03925af1801561284f5761283b575b50825b81811061282257836001805580f35b8061283585806103ef6001958789612b1e565b01612813565b8361284891949294612c15565b9138612810565b6040513d86823e3d90fd5b92946020919496989a5082979950819073ffffffffffffffffffffffffffffffffffffffff61288a600195612a56565b1681520196019101908c989694928a9896949261278a565b906128b58260019361046d848789612b1e565b016126e3565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4450523a2077726f6e67206e61746976652062616c616e6365000000000000006044820152fd5b91612935600191602061292d868c8c612b1e565b013590612b67565b92016126d3565b50fd5b9050346104c45760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104c4576004357fffffffff00000000000000000000000000000000000000000000000000000000811680910361044757602092507f7965db0b0000000000000000000000000000000000000000000000000000000081149081156129d3575b5015158152f35b7f01ffc9a700000000000000000000000000000000000000000000000000000000915014386129cc565b9181601f84011215612a2e5782359167ffffffffffffffff8311612a2e576020808501948460051b010111612a2e57565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff82168203612a2e57565b359073ffffffffffffffffffffffffffffffffffffffff82168203612a2e57565b9181601f84011215612a2e5782359167ffffffffffffffff8311612a2e5760208381860195010111612a2e57565b6064359073ffffffffffffffffffffffffffffffffffffffff82168203612a2e57565b6004359073ffffffffffffffffffffffffffffffffffffffff82168203612a2e57565b9035907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa181360301821215612a2e570190565b90821015612b3857612b359160051b810190612aeb565b90565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b91908201809211612b7457565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b3573ffffffffffffffffffffffffffffffffffffffff81168103612a2e5790565b9035907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe181360301821215612a2e570180359067ffffffffffffffff8211612a2e57602001918136038313612a2e57565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117612c5657604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b3d15612cde573d9067ffffffffffffffff8211612c565760405191612cd260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8401160184612c15565b82523d6000602084013e565b606090565b15612cea57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4450523a2070726543616c6c206661696c6564000000000000000000000000006044820152fd5b60e43573ffffffffffffffffffffffffffffffffffffffff8116809103612a2e578152602061010435910152565b60843573ffffffffffffffffffffffffffffffffffffffff8116809103612a2e578152602060a435910152565b6020809173ffffffffffffffffffffffffffffffffffffffff612dc582612a56565b1684520135910152565b90357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa182360301811215612a2e570190565b90357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe182360301811215612a2e57016020813591019167ffffffffffffffff8211612a2e578136038313612a2e57565b601f82602094937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0938186528686013760008582860101520116010190565b906060612ecf612b359373ffffffffffffffffffffffffffffffffffffffff612eb882612a56565b168452602081013560208501526040810190612e01565b9190928160408201520191612e51565b9061014081018235825260208301357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811215612a2e5783016020813591019167ffffffffffffffff8211612a2e578160061b36038313612a2e57610140602085015281905261016083019060005b81811061301b575050612f8a9150612f706040840160408601612da3565b612f7d6080850185612dcf565b8382036080850152612e90565b9173ffffffffffffffffffffffffffffffffffffffff612fac60a08301612a56565b1660a083015260c081013573ffffffffffffffffffffffffffffffffffffffff8116809103612a2e5761012091829160c085015273ffffffffffffffffffffffffffffffffffffffff61300160e08301612a56565b1660e0850152610100810135610100850152013591015290565b90916040808261302d60019488612da3565b019401910192919092612f52565b90602083828152019260208260051b82010193836000925b8484106130635750505050505090565b9091929394956020806130a8837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe086600196030188526130a38b88612dcf565b612e90565b9801940194019294939190613053565b156130bf57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4450523a20706f737443616c6c206661696c65640000000000000000000000006044820152fd5b60643573ffffffffffffffffffffffffffffffffffffffff81168103612a2e5790565b91908203918211612b7457565b908135815273ffffffffffffffffffffffffffffffffffffffff61317360208401612a56565b16602082015273ffffffffffffffffffffffffffffffffffffffff61319a60408401612a56565b16604082015273ffffffffffffffffffffffffffffffffffffffff6131c160608401612a56565b1660608201526131ea6131d76080840184612e01565b6101806080850152610180840191612e51565b9173ffffffffffffffffffffffffffffffffffffffff61320c60a08301612a56565b1660a083015260c081013573ffffffffffffffffffffffffffffffffffffffff8116809103612a2e5760c083015260e081013573ffffffffffffffffffffffffffffffffffffffff8116809103612a2e5761016091829160e0850152610100810135610100850152610120810135610120850152610140810135610140850152013591015290565b9060806132dd612b359373ffffffffffffffffffffffffffffffffffffffff6132bc82612a56565b16845260208101356020850152604081013560408501526060810190612e01565b9190928160608201520191612e51565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff161561332657565b7fe2517d3f0000000000000000000000000000000000000000000000000000000060005233600452600060245260446000fd5b806000526000602052604060002073ffffffffffffffffffffffffffffffffffffffff331660005260205260ff60406000205416156133955750565b7fe2517d3f000000000000000000000000000000000000000000000000000000006000523360045260245260446000fd5b806000526000602052604060002073ffffffffffffffffffffffffffffffffffffffff831660005260205260ff604060002054161560001461349e57806000526000602052604060002073ffffffffffffffffffffffffffffffffffffffff8316600052602052604060002060017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082541617905573ffffffffffffffffffffffffffffffffffffffff339216907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d600080a4600190565b5050600090565b806000526000602052604060002073ffffffffffffffffffffffffffffffffffffffff831660005260205260ff6040600020541660001461349e57806000526000602052604060002073ffffffffffffffffffffffffffffffffffffffff831660005260205260406000207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00815416905573ffffffffffffffffffffffffffffffffffffffff339216907ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b600080a4600190565b73ffffffffffffffffffffffffffffffffffffffff168061359957503190565b9073ffffffffffffffffffffffffffffffffffffffff602460209260405194859384927f70a082310000000000000000000000000000000000000000000000000000000084521660048301525afa908115613628576000916135f9575090565b90506020813d602011613620575b8161361460209383612c15565b81010312612a2e575190565b3d9150613607565b6040513d6000823e3d90fd5b9060e082019073ffffffffffffffffffffffffffffffffffffffff61365883612ba3565b16156136ea576020830135808211156136e45773ffffffffffffffffffffffffffffffffffffffff806136d76136d16136b46020957f4cfc6e7eef9170f5ac10331741bbedde754d86e10bfb40c9d81f79646632a2e097613140565b96611acb886136c28b612ba3565b6136cb84612ba3565b906136ef565b96612ba3565b16946040519485521692a3565b50505050565b505050565b919073ffffffffffffffffffffffffffffffffffffffff16913083146136ea5773ffffffffffffffffffffffffffffffffffffffff811615613790576040517fa9059cbb00000000000000000000000000000000000000000000000000000000602082015273ffffffffffffffffffffffffffffffffffffffff93909316602484015260448084019290925290825261378e9190611f28606483612c15565b565b5060008080939281935af16137a3612c85565b50156137ab57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f546f6b656e5574696c733a20455448207472616e73666572206661696c6564006044820152fd5b1561381057565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4450523a206578636573736976652070726520746970000000000000000000006044820152fd5b1561387557565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4450523a2062616c616e6365206c657373207468616e2072657175697265642060448201527f696e7075740000000000000000000000000000000000000000000000000000006064820152fd5b604051906020600073ffffffffffffffffffffffffffffffffffffffff828501957f095ea7b300000000000000000000000000000000000000000000000000000000875216948560248601528160448601526044855261395a606486612c15565b84519082855af16000513d826139c3575b50501561397757505050565b611f2861378e93604051907f095ea7b300000000000000000000000000000000000000000000000000000000602083015260248201526000604482015260448152612090606482612c15565b9091506139ed575073ffffffffffffffffffffffffffffffffffffffff81163b15155b388061396b565b6001146139e6565b906000602091828151910182855af115613628576000513d613a77575073ffffffffffffffffffffffffffffffffffffffff81163b155b613a335750565b73ffffffffffffffffffffffffffffffffffffffff907f5274afe7000000000000000000000000000000000000000000000000000000006000521660045260246000fd5b60011415613a2c56fea2646970667358221220d861e9b80e94b098b21adbe1bf1ea93a6492f0a954a25687074a6770e18c192264736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000723a63fb50da50a26997fb99a2eb151e4f8c5227
-----Decoded View---------------
Arg [0] : admin (address): 0x723A63fb50dA50A26997Fb99A2Eb151E4F8c5227
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000723a63fb50da50a26997fb99a2eb151e4f8c5227
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.