Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 5 from a total of 5 transactions
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
CowSwapDex
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
// External
import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
// Libs
import { ImmutableModule } from "../../shared/ImmutableModule.sol";
import { ICowSettlement } from "../../peripheral/Cowswap/ICowSettlement.sol";
import { DexSwapData, IDexAsyncSwap } from "../../interfaces/IDexSwap.sol";
/**
* @title CowSwapDex allows to swap tokens between via CowSwap.
* @author mStable
* @notice
* @dev VERSION: 1.0
* DATE: 2022-06-17
*/
contract CowSwapDex is ImmutableModule, IDexAsyncSwap {
using SafeERC20 for IERC20;
/// @notice Contract GPv2VaultRelayer to give allowance to perform swaps
address public immutable RELAYER;
/// @notice GPv2Settlement contract
ICowSettlement public immutable SETTLEMENT;
/// @notice Event emitted when a order is cancelled.
event SwapCancelled(bytes indexed orderUid);
/**
* @param _nexus Address of the Nexus contract that resolves protocol modules and roles.
* @param _relayer Address of the GPv2VaultRelayer contract to set allowance to perform swaps
* @param _settlement Address of the GPv2Settlement contract that pre-signs orders.
*/
constructor(
address _nexus,
address _relayer,
address _settlement
) ImmutableModule(_nexus) {
RELAYER = _relayer;
SETTLEMENT = ICowSettlement(_settlement);
}
/**
* @dev Modifier to allow function calls only from the Liquidator or the Keeper EOA.
*/
modifier onlyKeeperOrLiquidator() {
_keeperOrLiquidator();
_;
}
function _keeperOrLiquidator() internal view {
require(
msg.sender == _keeper() || msg.sender == _liquidatorV2(),
"Only keeper or liquidator"
);
}
/***************************************
Core
****************************************/
/**
* @notice Initialises a cow swap order.
* @dev This function is used in order to be compliant with IDexSwap interface.
* @param swapData The data of the swap {fromAsset, toAsset, fromAssetAmount, fromAssetFeeAmount, data}.
*/
function _initiateSwap(DexSwapData memory swapData) internal {
// unpack the CowSwap specific params from the generic swap.data field
(bytes memory orderUid, bool transfer) = abi.decode(swapData.data, (bytes, bool));
if (transfer) {
// transfer in the fromAsset
require(
IERC20(swapData.fromAsset).balanceOf(msg.sender) >= swapData.fromAssetAmount,
"not enough from assets"
);
// Transfer rewards from the liquidator
IERC20(swapData.fromAsset).safeTransferFrom(
msg.sender,
address(this),
swapData.fromAssetAmount
);
}
// sign the order on-chain so the order will happen
SETTLEMENT.setPreSignature(orderUid, true);
}
/**
* @notice Initialises a cow swap order.
* @dev Orders must be created off-chain.
* In case that an order fails, a new order uid is created there is no need to transfer "fromAsset".
* @param swapData The data of the swap {fromAsset, toAsset, fromAssetAmount, fromAssetFeeAmount, data}.
*/
function initiateSwap(DexSwapData calldata swapData) external override onlyKeeperOrLiquidator {
_initiateSwap(swapData);
}
/**
* @notice Initiate cow swap orders in bulk.
* @dev Orders must be created off-chain.
* @param swapsData Array of swap data {fromAsset, toAsset, fromAssetAmount, fromAssetFeeAmount, data}.
*/
function initiateSwaps(DexSwapData[] calldata swapsData) external onlyKeeperOrLiquidator {
uint256 len = swapsData.length;
for (uint256 i = 0; i < len; ) {
_initiateSwap(swapsData[i]);
// Increment index with low gas consumption, no need to check for overflow.
unchecked {
i += 1;
}
}
}
/**
* @notice It reverts as cowswap allows to provide a "receiver" while creating an order. Therefore
* @dev The method is kept to have compatibility with IDexAsyncSwap.
*/
function settleSwap(DexSwapData memory) external pure {
revert("!not supported");
}
/**
* @notice Allows to cancel a cowswap order perhaps if it took too long or was with invalid parameters
* @dev This function performs no checks, there's a high change it will revert if you send it with fluff parameters
* Emits the `SwapCancelled` event with the `orderUid`.
* @param orderUid The order uid of the swap.
*/
function cancelSwap(bytes calldata orderUid) external override onlyKeeperOrLiquidator {
SETTLEMENT.setPreSignature(orderUid, false);
}
/**
* @notice Cancels cow swap orders in bulk.
* @dev It invokes the `cancelSwap` function for each order in the array.
* For each order uid it emits the `SwapCancelled` event with the `orderUid`.
* @param orderUids Array of swaps order uids
*/
function cancelSwaps(bytes[] calldata orderUids) external onlyKeeperOrLiquidator {
uint256 len = orderUids.length;
for (uint256 i = 0; i < len; ) {
SETTLEMENT.setPreSignature(orderUids[i], false);
// Increment index with low gas consumption, no need to check for overflow.
unchecked {
i += 1;
}
}
}
/**
* @notice Approves a token to be sold using cow swap.
* @dev this approves the cow swap router to transfer the specified token from this contract.
* @param token Address of the token that is to be sold.
*/
function approveToken(address token) external onlyGovernor {
IERC20(token).safeApprove(RELAYER, type(uint256).max);
}
/**
* @notice Revokes cow swap from selling a token.
* @dev this removes the allowance for the cow swap router to transfer the specified token from this contract.
* @param token Address of the token that is to no longer be sold.
*/
function revokeToken(address token) external onlyGovernor {
IERC20(token).safeApprove(RELAYER, 0);
}
/**
* @notice Rescues tokens from the contract in case of a cancellation or failure and sends it to governor.
* @dev only governor can invoke.
* Even if a swap fails, the order can be created again and keep trying, rescueToken must be the last resource,
* ie, cowswap is not availabler for N hours.
*/
function rescueToken(address _erc20, uint256 amount) external onlyGovernor {
IERC20(_erc20).safeTransfer(_governor(), amount);
}
}// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity 0.8.17;
import { ModuleKeys } from "./ModuleKeys.sol";
import { INexus } from "../interfaces/INexus.sol";
/**
* @notice Provides modifiers and internal functions to check modules and roles in the `Nexus` registry.
* For example, the `onlyGovernor` modifier validates the caller is the `Governor` in the `Nexus`.
* @author mStable
* @dev Subscribes to module updates from a given publisher and reads from its registry.
* Contract is used for upgradable proxy contracts.
*/
abstract contract ImmutableModule is ModuleKeys {
/// @notice `Nexus` contract that resolves protocol modules and roles.
INexus public immutable nexus;
/**
* @dev Initialization function for upgradable proxy contracts
* @param _nexus Address of the Nexus contract that resolves protocol modules and roles.
*/
constructor(address _nexus) {
require(_nexus != address(0), "Nexus address is zero");
nexus = INexus(_nexus);
}
/// @dev Modifier to allow function calls only from the Governor.
modifier onlyGovernor() {
_onlyGovernor();
_;
}
function _onlyGovernor() internal view {
require(msg.sender == _governor(), "Only governor can execute");
}
/// @dev Modifier to allow function calls only from the Governor or the Keeper EOA.
modifier onlyKeeperOrGovernor() {
_keeperOrGovernor();
_;
}
function _keeperOrGovernor() internal view {
require(msg.sender == _keeper() || msg.sender == _governor(), "Only keeper or governor");
}
/**
* @dev Modifier to allow function calls only from the Governance.
* Governance is either Governor address or Governance address.
*/
modifier onlyGovernance() {
require(
msg.sender == _governor() || msg.sender == _governance(),
"Only governance can execute"
);
_;
}
/**
* @dev Returns Governor address from the Nexus
* @return Address of Governor Contract
*/
function _governor() internal view returns (address) {
return nexus.governor();
}
/**
* @dev Returns Governance Module address from the Nexus
* @return Address of the Governance (Phase 2)
*/
function _governance() internal view returns (address) {
return nexus.getModule(KEY_GOVERNANCE);
}
/**
* @dev Return Keeper address from the Nexus.
* This account is used for operational transactions that
* don't need multiple signatures.
* @return Address of the Keeper externally owned account.
*/
function _keeper() internal view returns (address) {
return nexus.getModule(KEY_KEEPER);
}
/**
* @dev Return Liquidator module address from the Nexus
* @return Address of the Liquidator contract
*/
function _liquidator() internal view returns (address) {
return nexus.getModule(KEY_LIQUIDATOR);
}
/**
* @dev Return Liquidator V2 module address from the Nexus
* @return Address of the Liquidator V2 contract
*/
function _liquidatorV2() internal view returns (address) {
return nexus.getModule(KEY_LIQUIDATOR_V2);
}
/**
* @dev Return ProxyAdmin module address from the Nexus
* @return Address of the ProxyAdmin contract
*/
function _proxyAdmin() internal view returns (address) {
return nexus.getModule(KEY_PROXY_ADMIN);
}
}// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity 0.8.17;
struct DexSwapData {
address fromAsset;
uint256 fromAssetAmount;
address toAsset;
uint256 minToAssetAmount;
bytes data; // Data required for a specific swap implementation. eg 1Inch
}
/**
* @title Dex Swap interface
* @author mStable
* @notice Generic on-chain ABI to Swap tokens on a DEX.
* @dev VERSION: 1.0
* DATE: 2022-03-07
*/
interface IDexSwap {
function swap(DexSwapData memory _swap) external returns (uint256 toAssetAmount);
}
/**
* @title Dex Asynchronous Swap interface
* @author mStable
* @notice Generic on-chain ABI to Swap asynchronous tokens on a DEX.
* @dev VERSION: 1.0
* DATE: 2022-06-07
*/
interface IDexAsyncSwap {
function initiateSwap(DexSwapData memory _swap) external;
function settleSwap(DexSwapData memory _swap) external;
function cancelSwap(bytes calldata orderUid) external;
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity 0.8.17;
/// @notice Gnosis Protocol v2 Settlement Interface.
interface ICowSettlement {
function setPreSignature(bytes calldata orderUid, bool signed) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity 0.8.17;
/**
* @title ModuleKeys
* @author mStable
* @notice Provides system wide access to the byte32 represntations of system modules
* This allows each system module to be able to reference and update one another in a
* friendly way
* @dev keccak256() values are hardcoded to avoid re-evaluation of the constants at runtime.
*/
contract ModuleKeys {
// Governance
// ===========
// keccak256("Governance");
bytes32 internal constant KEY_GOVERNANCE =
0x9409903de1e6fd852dfc61c9dacb48196c48535b60e25abf92acc92dd689078d;
//keccak256("Staking");
bytes32 internal constant KEY_STAKING =
0x1df41cd916959d1163dc8f0671a666ea8a3e434c13e40faef527133b5d167034;
//keccak256("ProxyAdmin");
bytes32 internal constant KEY_PROXY_ADMIN =
0x96ed0203eb7e975a4cbcaa23951943fa35c5d8288117d50c12b3d48b0fab48d1;
// mStable
// =======
// keccak256("OracleHub");
bytes32 internal constant KEY_ORACLE_HUB =
0x8ae3a082c61a7379e2280f3356a5131507d9829d222d853bfa7c9fe1200dd040;
// keccak256("Manager");
bytes32 internal constant KEY_MANAGER =
0x6d439300980e333f0256d64be2c9f67e86f4493ce25f82498d6db7f4be3d9e6f;
//keccak256("MetaToken");
bytes32 internal constant KEY_META_TOKEN =
0xea7469b14936af748ee93c53b2fe510b9928edbdccac3963321efca7eb1a57a2;
// keccak256("Liquidator");
bytes32 internal constant KEY_LIQUIDATOR =
0x1e9cb14d7560734a61fa5ff9273953e971ff3cd9283c03d8346e3264617933d4;
// keccak256("LiquidatorV2");
bytes32 internal constant KEY_LIQUIDATOR_V2 =
0x4609f0c2814c5fc06ab61e580b24d36b621602ec696fa6680495a87fc21afb80;
// keccak256("Keeper");
bytes32 internal constant KEY_KEEPER =
0x4f78afe9dfc9a0cb0441c27b9405070cd2a48b490636a7bdd09f355e33a5d7de;
}// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity 0.8.17;
/**
* @title INexus
* @dev Basic interface for interacting with the Nexus i.e. SystemKernel
*/
interface INexus {
function governor() external view returns (address);
function getModule(bytes32 key) external view returns (address);
function proposeModule(bytes32 _key, address _addr) external;
function cancelProposedModule(bytes32 _key) external;
function acceptProposedModule(bytes32 _key) external;
function acceptProposedModules(bytes32[] calldata _keys) external;
function requestLockModule(bytes32 _key) external;
function cancelLockModule(bytes32 _key) external;
function lockModule(bytes32 _key) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_nexus","type":"address"},{"internalType":"address","name":"_relayer","type":"address"},{"internalType":"address","name":"_settlement","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes","name":"orderUid","type":"bytes"}],"name":"SwapCancelled","type":"event"},{"inputs":[],"name":"RELAYER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SETTLEMENT","outputs":[{"internalType":"contract ICowSettlement","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"approveToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"orderUid","type":"bytes"}],"name":"cancelSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"orderUids","type":"bytes[]"}],"name":"cancelSwaps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"fromAsset","type":"address"},{"internalType":"uint256","name":"fromAssetAmount","type":"uint256"},{"internalType":"address","name":"toAsset","type":"address"},{"internalType":"uint256","name":"minToAssetAmount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct DexSwapData","name":"swapData","type":"tuple"}],"name":"initiateSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"fromAsset","type":"address"},{"internalType":"uint256","name":"fromAssetAmount","type":"uint256"},{"internalType":"address","name":"toAsset","type":"address"},{"internalType":"uint256","name":"minToAssetAmount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct DexSwapData[]","name":"swapsData","type":"tuple[]"}],"name":"initiateSwaps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nexus","outputs":[{"internalType":"contract INexus","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"revokeToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"fromAsset","type":"address"},{"internalType":"uint256","name":"fromAssetAmount","type":"uint256"},{"internalType":"address","name":"toAsset","type":"address"},{"internalType":"uint256","name":"minToAssetAmount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct DexSwapData","name":"","type":"tuple"}],"name":"settleSwap","outputs":[],"stateMutability":"pure","type":"function"}]Contract Creation Code
60e060405234801561001057600080fd5b506040516200139e3803806200139e833981016040819052610031916100c6565b826001600160a01b03811661008c5760405162461bcd60e51b815260206004820152601560248201527f4e657875732061646472657373206973207a65726f0000000000000000000000604482015260640160405180910390fd5b6001600160a01b0390811660805291821660a0521660c05250610109565b80516001600160a01b03811681146100c157600080fd5b919050565b6000806000606084860312156100db57600080fd5b6100e4846100aa565b92506100f2602085016100aa565b9150610100604085016100aa565b90509250925092565b60805160a05160c05161122e62000170600039600081816101b7015281816102200152818161037c015261077401526000818160b30152818161033c015261044101526000818161017d015281816104e901528181610a020152610a8a015261122e6000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c806380b2edd81161007157806380b2edd81461013f5780638a82564d14610152578063933f4eef14610165578063a3f5c1d214610178578063e55389231461019f578063ef0fe245146101b257600080fd5b80632483e715146100ae57806333f3d628146100f15780635dc013e3146101065780637265279514610119578063777bf7281461012c575b600080fd5b6100d57f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200160405180910390f35b6101046100ff366004610c91565b6101d9565b005b610104610114366004610cbd565b610201565b610104610127366004610d7b565b610290565b61010461013a366004610f14565b6102e7565b61010461014d366004610f51565b610325565b610104610160366004610d7b565b610366565b610104610173366004610f51565b61042a565b6100d57f000000000000000000000000000000000000000000000000000000000000000081565b6101046101ad366004610f6e565b610467565b6100d57f000000000000000000000000000000000000000000000000000000000000000081565b6101e161047b565b6101fd6101ec6104e5565b6001600160a01b038416908361056e565b5050565b6102096105d6565b60405163ec6cb13f60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063ec6cb13f9061025a9085908590600090600401610fa9565b600060405180830381600087803b15801561027457600080fd5b505af1158015610288573d6000803e3d6000fd5b505050505050565b6102986105d6565b8060005b818110156102e1576102d98484838181106102b9576102b9610fe1565b90506020028101906102cb9190610ff7565b6102d490611017565b610661565b60010161029c565b50505050565b60405162461bcd60e51b815260206004820152600e60248201526d085b9bdd081cdd5c1c1bdc9d195960921b60448201526064015b60405180910390fd5b61032d61047b565b6103636001600160a01b0382167f00000000000000000000000000000000000000000000000000000000000000006000196107e3565b50565b61036e6105d6565b8060005b818110156102e1577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ec6cb13f8585848181106103bb576103bb610fe1565b90506020028101906103cd9190611029565b60006040518463ffffffff1660e01b81526004016103ed93929190610fa9565b600060405180830381600087803b15801561040757600080fd5b505af115801561041b573d6000803e3d6000fd5b50505050600181019050610372565b61043261047b565b6103636001600160a01b0382167f000000000000000000000000000000000000000000000000000000000000000060006107e3565b61046f6105d6565b6103636102d482611017565b6104836104e5565b6001600160a01b0316336001600160a01b0316146104e35760405162461bcd60e51b815260206004820152601960248201527f4f6e6c7920676f7665726e6f722063616e206578656375746500000000000000604482015260640161031c565b565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015610545573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105699190611070565b905090565b6040516001600160a01b0383166024820152604481018290526105d190849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526108f8565b505050565b6105de6109ca565b6001600160a01b0316336001600160a01b031614806106155750610600610a52565b6001600160a01b0316336001600160a01b0316145b6104e35760405162461bcd60e51b815260206004820152601960248201527f4f6e6c79206b6565706572206f72206c697175696461746f7200000000000000604482015260640161031c565b600080826080015180602001905181019061067c91906110c6565b91509150801561075d57602083015183516040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa1580156106d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f6919061114f565b101561073d5760405162461bcd60e51b81526020600482015260166024820152756e6f7420656e6f7567682066726f6d2061737365747360501b604482015260640161031c565b6020830151835161075d916001600160a01b039091169033903090610ac1565b60405163ec6cb13f60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063ec6cb13f906107ac908590600190600401611194565b600060405180830381600087803b1580156107c657600080fd5b505af11580156107da573d6000803e3d6000fd5b50505050505050565b80158061085d5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610837573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085b919061114f565b155b6108c85760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606482015260840161031c565b6040516001600160a01b0383166024820152604481018290526105d190849063095ea7b360e01b9060640161059a565b600061094d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610af99092919063ffffffff16565b8051909150156105d1578080602001905181019061096b91906111b8565b6105d15760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161031c565b6040516385acd64160e01b81527f4f78afe9dfc9a0cb0441c27b9405070cd2a48b490636a7bdd09f355e33a5d7de60048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906385acd641906024015b602060405180830381865afa158015610545573d6000803e3d6000fd5b6040516385acd64160e01b81527f4609f0c2814c5fc06ab61e580b24d36b621602ec696fa6680495a87fc21afb8060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906385acd64190602401610a35565b6040516001600160a01b03808516602483015283166044820152606481018290526102e19085906323b872dd60e01b9060840161059a565b6060610b088484600085610b12565b90505b9392505050565b606082471015610b735760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161031c565b6001600160a01b0385163b610bca5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161031c565b600080866001600160a01b03168587604051610be691906111d3565b60006040518083038185875af1925050503d8060008114610c23576040519150601f19603f3d011682016040523d82523d6000602084013e610c28565b606091505b5091509150610c38828286610c43565b979650505050505050565b60608315610c52575081610b0b565b825115610c625782518084602001fd5b8160405162461bcd60e51b815260040161031c91906111e5565b6001600160a01b038116811461036357600080fd5b60008060408385031215610ca457600080fd5b8235610caf81610c7c565b946020939093013593505050565b60008060208385031215610cd057600080fd5b823567ffffffffffffffff80821115610ce857600080fd5b818501915085601f830112610cfc57600080fd5b813581811115610d0b57600080fd5b866020828501011115610d1d57600080fd5b60209290920196919550909350505050565b60008083601f840112610d4157600080fd5b50813567ffffffffffffffff811115610d5957600080fd5b6020830191508360208260051b8501011115610d7457600080fd5b9250929050565b60008060208385031215610d8e57600080fd5b823567ffffffffffffffff811115610da557600080fd5b610db185828601610d2f565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b60405160a0810167ffffffffffffffff81118282101715610df657610df6610dbd565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715610e2557610e25610dbd565b604052919050565b600067ffffffffffffffff821115610e4757610e47610dbd565b50601f01601f191660200190565b600060a08284031215610e6757600080fd5b610e6f610dd3565b90508135610e7c81610c7c565b8152602082810135818301526040830135610e9681610c7c565b604083015260608381013590830152608083013567ffffffffffffffff811115610ebf57600080fd5b8301601f81018513610ed057600080fd5b8035610ee3610ede82610e2d565b610dfc565b8181528684838501011115610ef757600080fd5b818484018583013760009181019093015250608082015292915050565b600060208284031215610f2657600080fd5b813567ffffffffffffffff811115610f3d57600080fd5b610f4984828501610e55565b949350505050565b600060208284031215610f6357600080fd5b8135610b0b81610c7c565b600060208284031215610f8057600080fd5b813567ffffffffffffffff811115610f9757600080fd5b820160a08185031215610b0b57600080fd5b6040815282604082015282846060830137600060608483018101919091529115156020820152601f909201601f191690910101919050565b634e487b7160e01b600052603260045260246000fd5b60008235609e1983360301811261100d57600080fd5b9190910192915050565b60006110233683610e55565b92915050565b6000808335601e1984360301811261104057600080fd5b83018035915067ffffffffffffffff82111561105b57600080fd5b602001915036819003821315610d7457600080fd5b60006020828403121561108257600080fd5b8151610b0b81610c7c565b60005b838110156110a8578181015183820152602001611090565b50506000910152565b805180151581146110c157600080fd5b919050565b600080604083850312156110d957600080fd5b825167ffffffffffffffff8111156110f057600080fd5b8301601f8101851361110157600080fd5b805161110f610ede82610e2d565b81815286602083850101111561112457600080fd5b61113582602083016020860161108d565b9350611146915050602084016110b1565b90509250929050565b60006020828403121561116157600080fd5b5051919050565b6000815180845261118081602086016020860161108d565b601f01601f19169290920160200192915050565b6040815260006111a76040830185611168565b905082151560208301529392505050565b6000602082840312156111ca57600080fd5b610b0b826110b1565b6000825161100d81846020870161108d565b602081526000610b0b602083018461116856fea26469706673582212205bffd426b54d4af9473e69639d2471be85b9e6aab3a2f775160f9967f05ab18564736f6c63430008110033000000000000000000000000afce80b19a8ce13dec0739a1aab7a028d6845eb3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe01100000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c806380b2edd81161007157806380b2edd81461013f5780638a82564d14610152578063933f4eef14610165578063a3f5c1d214610178578063e55389231461019f578063ef0fe245146101b257600080fd5b80632483e715146100ae57806333f3d628146100f15780635dc013e3146101065780637265279514610119578063777bf7281461012c575b600080fd5b6100d57f000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe011081565b6040516001600160a01b03909116815260200160405180910390f35b6101046100ff366004610c91565b6101d9565b005b610104610114366004610cbd565b610201565b610104610127366004610d7b565b610290565b61010461013a366004610f14565b6102e7565b61010461014d366004610f51565b610325565b610104610160366004610d7b565b610366565b610104610173366004610f51565b61042a565b6100d57f000000000000000000000000afce80b19a8ce13dec0739a1aab7a028d6845eb381565b6101046101ad366004610f6e565b610467565b6100d57f0000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab4181565b6101e161047b565b6101fd6101ec6104e5565b6001600160a01b038416908361056e565b5050565b6102096105d6565b60405163ec6cb13f60e01b81526001600160a01b037f0000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41169063ec6cb13f9061025a9085908590600090600401610fa9565b600060405180830381600087803b15801561027457600080fd5b505af1158015610288573d6000803e3d6000fd5b505050505050565b6102986105d6565b8060005b818110156102e1576102d98484838181106102b9576102b9610fe1565b90506020028101906102cb9190610ff7565b6102d490611017565b610661565b60010161029c565b50505050565b60405162461bcd60e51b815260206004820152600e60248201526d085b9bdd081cdd5c1c1bdc9d195960921b60448201526064015b60405180910390fd5b61032d61047b565b6103636001600160a01b0382167f000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe01106000196107e3565b50565b61036e6105d6565b8060005b818110156102e1577f0000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab416001600160a01b031663ec6cb13f8585848181106103bb576103bb610fe1565b90506020028101906103cd9190611029565b60006040518463ffffffff1660e01b81526004016103ed93929190610fa9565b600060405180830381600087803b15801561040757600080fd5b505af115801561041b573d6000803e3d6000fd5b50505050600181019050610372565b61043261047b565b6103636001600160a01b0382167f000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe011060006107e3565b61046f6105d6565b6103636102d482611017565b6104836104e5565b6001600160a01b0316336001600160a01b0316146104e35760405162461bcd60e51b815260206004820152601960248201527f4f6e6c7920676f7665726e6f722063616e206578656375746500000000000000604482015260640161031c565b565b60007f000000000000000000000000afce80b19a8ce13dec0739a1aab7a028d6845eb36001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015610545573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105699190611070565b905090565b6040516001600160a01b0383166024820152604481018290526105d190849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526108f8565b505050565b6105de6109ca565b6001600160a01b0316336001600160a01b031614806106155750610600610a52565b6001600160a01b0316336001600160a01b0316145b6104e35760405162461bcd60e51b815260206004820152601960248201527f4f6e6c79206b6565706572206f72206c697175696461746f7200000000000000604482015260640161031c565b600080826080015180602001905181019061067c91906110c6565b91509150801561075d57602083015183516040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa1580156106d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f6919061114f565b101561073d5760405162461bcd60e51b81526020600482015260166024820152756e6f7420656e6f7567682066726f6d2061737365747360501b604482015260640161031c565b6020830151835161075d916001600160a01b039091169033903090610ac1565b60405163ec6cb13f60e01b81526001600160a01b037f0000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41169063ec6cb13f906107ac908590600190600401611194565b600060405180830381600087803b1580156107c657600080fd5b505af11580156107da573d6000803e3d6000fd5b50505050505050565b80158061085d5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610837573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085b919061114f565b155b6108c85760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606482015260840161031c565b6040516001600160a01b0383166024820152604481018290526105d190849063095ea7b360e01b9060640161059a565b600061094d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610af99092919063ffffffff16565b8051909150156105d1578080602001905181019061096b91906111b8565b6105d15760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161031c565b6040516385acd64160e01b81527f4f78afe9dfc9a0cb0441c27b9405070cd2a48b490636a7bdd09f355e33a5d7de60048201526000907f000000000000000000000000afce80b19a8ce13dec0739a1aab7a028d6845eb36001600160a01b0316906385acd641906024015b602060405180830381865afa158015610545573d6000803e3d6000fd5b6040516385acd64160e01b81527f4609f0c2814c5fc06ab61e580b24d36b621602ec696fa6680495a87fc21afb8060048201526000907f000000000000000000000000afce80b19a8ce13dec0739a1aab7a028d6845eb36001600160a01b0316906385acd64190602401610a35565b6040516001600160a01b03808516602483015283166044820152606481018290526102e19085906323b872dd60e01b9060840161059a565b6060610b088484600085610b12565b90505b9392505050565b606082471015610b735760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161031c565b6001600160a01b0385163b610bca5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161031c565b600080866001600160a01b03168587604051610be691906111d3565b60006040518083038185875af1925050503d8060008114610c23576040519150601f19603f3d011682016040523d82523d6000602084013e610c28565b606091505b5091509150610c38828286610c43565b979650505050505050565b60608315610c52575081610b0b565b825115610c625782518084602001fd5b8160405162461bcd60e51b815260040161031c91906111e5565b6001600160a01b038116811461036357600080fd5b60008060408385031215610ca457600080fd5b8235610caf81610c7c565b946020939093013593505050565b60008060208385031215610cd057600080fd5b823567ffffffffffffffff80821115610ce857600080fd5b818501915085601f830112610cfc57600080fd5b813581811115610d0b57600080fd5b866020828501011115610d1d57600080fd5b60209290920196919550909350505050565b60008083601f840112610d4157600080fd5b50813567ffffffffffffffff811115610d5957600080fd5b6020830191508360208260051b8501011115610d7457600080fd5b9250929050565b60008060208385031215610d8e57600080fd5b823567ffffffffffffffff811115610da557600080fd5b610db185828601610d2f565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b60405160a0810167ffffffffffffffff81118282101715610df657610df6610dbd565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715610e2557610e25610dbd565b604052919050565b600067ffffffffffffffff821115610e4757610e47610dbd565b50601f01601f191660200190565b600060a08284031215610e6757600080fd5b610e6f610dd3565b90508135610e7c81610c7c565b8152602082810135818301526040830135610e9681610c7c565b604083015260608381013590830152608083013567ffffffffffffffff811115610ebf57600080fd5b8301601f81018513610ed057600080fd5b8035610ee3610ede82610e2d565b610dfc565b8181528684838501011115610ef757600080fd5b818484018583013760009181019093015250608082015292915050565b600060208284031215610f2657600080fd5b813567ffffffffffffffff811115610f3d57600080fd5b610f4984828501610e55565b949350505050565b600060208284031215610f6357600080fd5b8135610b0b81610c7c565b600060208284031215610f8057600080fd5b813567ffffffffffffffff811115610f9757600080fd5b820160a08185031215610b0b57600080fd5b6040815282604082015282846060830137600060608483018101919091529115156020820152601f909201601f191690910101919050565b634e487b7160e01b600052603260045260246000fd5b60008235609e1983360301811261100d57600080fd5b9190910192915050565b60006110233683610e55565b92915050565b6000808335601e1984360301811261104057600080fd5b83018035915067ffffffffffffffff82111561105b57600080fd5b602001915036819003821315610d7457600080fd5b60006020828403121561108257600080fd5b8151610b0b81610c7c565b60005b838110156110a8578181015183820152602001611090565b50506000910152565b805180151581146110c157600080fd5b919050565b600080604083850312156110d957600080fd5b825167ffffffffffffffff8111156110f057600080fd5b8301601f8101851361110157600080fd5b805161110f610ede82610e2d565b81815286602083850101111561112457600080fd5b61113582602083016020860161108d565b9350611146915050602084016110b1565b90509250929050565b60006020828403121561116157600080fd5b5051919050565b6000815180845261118081602086016020860161108d565b601f01601f19169290920160200192915050565b6040815260006111a76040830185611168565b905082151560208301529392505050565b6000602082840312156111ca57600080fd5b610b0b826110b1565b6000825161100d81846020870161108d565b602081526000610b0b602083018461116856fea26469706673582212205bffd426b54d4af9473e69639d2471be85b9e6aab3a2f775160f9967f05ab18564736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000afce80b19a8ce13dec0739a1aab7a028d6845eb3000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe01100000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41
-----Decoded View---------------
Arg [0] : _nexus (address): 0xAFcE80b19A8cE13DEc0739a1aaB7A028d6845Eb3
Arg [1] : _relayer (address): 0xC92E8bdf79f0507f65a392b0ab4667716BFE0110
Arg [2] : _settlement (address): 0x9008D19f58AAbD9eD0D60971565AA8510560ab41
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000afce80b19a8ce13dec0739a1aab7a028d6845eb3
Arg [1] : 000000000000000000000000c92e8bdf79f0507f65a392b0ab4667716bfe0110
Arg [2] : 0000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.