Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
CrossSwapEntrance
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 0 runs
Other Settings:
london EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.24; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol"; import "./interfaces/IBridge.sol"; import "./interfaces/ICrossSwap.sol"; import "./interfaces/IEIP5164.sol"; contract CrossSwapEntrance is OwnableUpgradeable, ReentrancyGuardUpgradeable, ICrossSwap { using SafeERC20 for IERC20; address public bridge; address public executor; address public gateway; uint256 public constant WAN_CHAIN_ID = 2153201998; event CrossSwap(bytes32 messageId, ICrossSwap.CrossSwapParams params); constructor() { // _disableInitializers(); } function initialize( address _owner, address _bridge, address _executor, address _gateway ) public initializer { bridge = _bridge; executor = _executor; gateway = _gateway; __Ownable_init(_owner); __ReentrancyGuard_init(); } function crossSwap( ICrossSwap.CrossSwapParams calldata params ) external payable override nonReentrant { require( msg.value >= (params.messageFee + params.networkFee0), "CrossSwapExecutor: insufficient fee" ); bytes32 messageId = SingleMessageDispatcher(gateway).dispatchMessage{ value: params.messageFee }(WAN_CHAIN_ID, executor, abi.encode(params)); if (params.fromToken != address(0)) { IERC20(params.fromToken).safeTransferFrom( msg.sender, address(this), params.fromAmount ); if (params.crossType0 == CrossType.UserLock) { IERC20(params.fromToken).safeIncreaseAllowance( bridge, params.fromAmount ); IBridge(bridge).userLock{value: params.networkFee0}( params.smgID, params.tokenPairID0, params.fromAmount, abi.encodePacked(executor) ); } else { IBridge(bridge).userBurn{value: params.networkFee0}( params.smgID, params.tokenPairID0, params.fromAmount, 0, params.fromToken, abi.encodePacked(executor) ); } } else { require( msg.value >= (params.messageFee + params.networkFee0 + params.fromAmount), "CrossSwapExecutor: insufficient fee" ); IBridge(bridge).userLock{ value: params.networkFee0 + params.fromAmount }( params.smgID, params.tokenPairID0, params.fromAmount, abi.encodePacked(executor) ); } emit CrossSwap(messageId, params); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // EIP-5164 defines a cross-chain execution interface for EVM-based blockchains. // Implementations of this specification will allow contracts on one chain to call contracts on another by sending a cross-chain message. // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-5164.md struct Message { address to; bytes data; } interface MessageDispatcher { event MessageDispatched( bytes32 indexed messageId, address indexed from, uint256 indexed toChainId, address to, bytes data ); event MessageBatchDispatched( bytes32 indexed messageId, address indexed from, uint256 indexed toChainId, Message[] messages ); } interface SingleMessageDispatcher is MessageDispatcher { /** * @notice Sends a message to a specified chain and address with the given data. * @dev This function is used to dispatch a message to a specified chain and address with the given data. * @param toChainId The chain ID of the destination chain. * @param to The address of the destination contract on the destination chain. * @param data The data to be sent to the destination contract. * @return messageId A unique identifier for the dispatched message. */ function dispatchMessage(uint256 toChainId, address to, bytes calldata data) external payable returns (bytes32 messageId); } interface BatchedMessageDispatcher is MessageDispatcher { /** * @notice Sends a batch of messages to a specified chain. * @dev This function is used to dispatch a batch of messages to a specified chain and returns a unique identifier for the dispatched batch. * @param toChainId The chain ID of the destination chain. * @param messages An array of Message struct objects containing the destination addresses and data to be sent to each destination contract. * @return messageId A unique identifier for the dispatched batch. */ function dispatchMessageBatch(uint256 toChainId, Message[] calldata messages) external payable returns (bytes32 messageId); } /** * MessageExecutor * * MessageExecutors MUST append the ABI-packed (messageId, fromChainId, from) to the calldata for each message being executed. * * to: The address of the contract to call. * data: The data to cross-chain. * messageId: The unique identifier of the message being executed. * fromChainId: The ID of the chain the message originated from. * from: The address of the sender of the message. * to.call(abi.encodePacked(data, messageId, fromChainId, from)); */ interface MessageExecutor { error MessageIdAlreadyExecuted( bytes32 messageId ); error MessageFailure( bytes32 messageId, bytes errorData ); error MessageBatchFailure( bytes32 messageId, uint256 messageIndex, bytes errorData ); event MessageIdExecuted( uint256 indexed fromChainId, bytes32 indexed messageId ); } interface IEIP5164 is SingleMessageDispatcher, BatchedMessageDispatcher, MessageExecutor {}
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; interface ICrossSwap { enum CrossType { UserLock, UserBurn } enum CrossStatus { Pending, Success, Failed, RefundedToFromChain, RefundedToWanchain } struct CrossSwapParams { uint256 fromChain; uint256 toChain; address fromToken; address refundAddress; // default to use fromAccount must be an EOA address uint256 fromAmount; // This amount not include networkFee0 and messageFee, but includes serviceFee0 and gasStation bytes toAddress; uint256 amountOutMin; address wrappedFromToken; address wrappedToToken; bytes32 smgID; uint256 tokenPairID0; // from chain to wanchain token pair id uint256 networkFee0; uint256 serviceFee0; CrossType crossType0; // 0: userLock, 1: userBurn uint256 tokenPairID1; // wanchain to destination chain token pair id CrossType crossType1; // 0: userLock, 1: userBurn uint256 messageFee; uint256 gasStation; // wrappedFromToken amount for destination chain gas fee uint24 swapFee0; // 500, 3000, 10000 means 0.05%, 0.3%, 1% uint24 swapFee1; // 500, 3000, 10000 means 0.05%, 0.3%, 1% } struct CrossSwapResult { bytes32 messageId; address fromToken; uint256 fromAmount; address toToken; uint256 toAmount; } function crossSwap(CrossSwapParams calldata params) external payable; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; interface IBridge { /// @notice request exchange orignal coin or token with WRC20 on wanchain /// @param smgID ID of storeman /// @param tokenPairID token pair ID of cross chain coin/token /// @param value exchange value /// @param userAccount account of user, used to receive shadow chain token function userLock( bytes32 smgID, uint tokenPairID, uint value, bytes calldata userAccount ) external payable; /// @notice request exchange RC20 token with WRC20 on wanchain /// @param smgID ID of storeman /// @param tokenPairID token pair ID of cross chain token /// @param value exchange value /// @param userAccount account of user, used to receive original chain token function userBurn( bytes32 smgID, uint tokenPairID, uint value, uint fee, address tokenAccount, bytes calldata userAccount ) external payable; struct GetFeesParam { uint256 srcChainID; uint256 destChainID; } struct GetFeesReturn { uint256 contractFee; uint256 agentFee; } function getFee( GetFeesParam calldata param ) external view returns (GetFeesReturn memory fee); function getTokenPairFee(uint256 tokenPairID) external view returns(uint256 contractFee); function currentChainID() external view returns (uint256); function getPartners() external view returns ( address tokenManager, address smgAdminProxy, address smgFeeProxy, address quota, address sigVerifier ); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @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 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 ReentrancyGuardUpgradeable is Initializable { // 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; /// @custom:storage-location erc7201:openzeppelin.storage.ReentrancyGuard struct ReentrancyGuardStorage { uint256 _status; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.ReentrancyGuard")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant ReentrancyGuardStorageLocation = 0x9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00; function _getReentrancyGuardStorage() private pure returns (ReentrancyGuardStorage storage $) { assembly { $.slot := ReentrancyGuardStorageLocation } } /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); function __ReentrancyGuard_init() internal onlyInitializing { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal onlyInitializing { ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage(); $._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 { ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage(); // 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 { ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage(); // 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) { ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage(); return $._status == ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol"; import {Initializable} from "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable { /// @custom:storage-location erc7201:openzeppelin.storage.Ownable struct OwnableStorage { address _owner; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Ownable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant OwnableStorageLocation = 0x9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300; function _getOwnableStorage() private pure returns (OwnableStorage storage $) { assembly { $.slot := OwnableStorageLocation } } /** * @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. */ function __Ownable_init(address initialOwner) internal onlyInitializing { __Ownable_init_unchained(initialOwner); } function __Ownable_init_unchained(address initialOwner) internal onlyInitializing { 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) { OwnableStorage storage $ = _getOwnableStorage(); 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 { OwnableStorage storage $ = _getOwnableStorage(); address oldOwner = $._owner; $._owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../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; /** * @dev An operation with an ERC20 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 Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ 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. */ 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. */ 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 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); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { 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 silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // 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 cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 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.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @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 AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @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 * {FailedInnerCall} 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 AddressInsufficientBalance(address(this)); } (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 {FailedInnerCall}) 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 {FailedInnerCall} 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 {FailedInnerCall}. */ 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @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. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ 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]. * * CAUTION: See Security Considerations above. */ 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); }
// 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 reininitialization) 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 Returns a pointer to the storage namespace. */ // solhint-disable-next-line var-name-mixedcase function _getInitializableStorage() private pure returns (InitializableStorage storage $) { assembly { $.slot := INITIALIZABLE_STORAGE } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } 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; } }
{ "optimizer": { "enabled": true, "runs": 0 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "remappings": [], "evmVersion": "london" }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"messageId","type":"bytes32"},{"components":[{"internalType":"uint256","name":"fromChain","type":"uint256"},{"internalType":"uint256","name":"toChain","type":"uint256"},{"internalType":"address","name":"fromToken","type":"address"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint256","name":"fromAmount","type":"uint256"},{"internalType":"bytes","name":"toAddress","type":"bytes"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"address","name":"wrappedFromToken","type":"address"},{"internalType":"address","name":"wrappedToToken","type":"address"},{"internalType":"bytes32","name":"smgID","type":"bytes32"},{"internalType":"uint256","name":"tokenPairID0","type":"uint256"},{"internalType":"uint256","name":"networkFee0","type":"uint256"},{"internalType":"uint256","name":"serviceFee0","type":"uint256"},{"internalType":"enum ICrossSwap.CrossType","name":"crossType0","type":"uint8"},{"internalType":"uint256","name":"tokenPairID1","type":"uint256"},{"internalType":"enum ICrossSwap.CrossType","name":"crossType1","type":"uint8"},{"internalType":"uint256","name":"messageFee","type":"uint256"},{"internalType":"uint256","name":"gasStation","type":"uint256"},{"internalType":"uint24","name":"swapFee0","type":"uint24"},{"internalType":"uint24","name":"swapFee1","type":"uint24"}],"indexed":false,"internalType":"struct ICrossSwap.CrossSwapParams","name":"params","type":"tuple"}],"name":"CrossSwap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"WAN_CHAIN_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bridge","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"fromChain","type":"uint256"},{"internalType":"uint256","name":"toChain","type":"uint256"},{"internalType":"address","name":"fromToken","type":"address"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint256","name":"fromAmount","type":"uint256"},{"internalType":"bytes","name":"toAddress","type":"bytes"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"address","name":"wrappedFromToken","type":"address"},{"internalType":"address","name":"wrappedToToken","type":"address"},{"internalType":"bytes32","name":"smgID","type":"bytes32"},{"internalType":"uint256","name":"tokenPairID0","type":"uint256"},{"internalType":"uint256","name":"networkFee0","type":"uint256"},{"internalType":"uint256","name":"serviceFee0","type":"uint256"},{"internalType":"enum ICrossSwap.CrossType","name":"crossType0","type":"uint8"},{"internalType":"uint256","name":"tokenPairID1","type":"uint256"},{"internalType":"enum ICrossSwap.CrossType","name":"crossType1","type":"uint8"},{"internalType":"uint256","name":"messageFee","type":"uint256"},{"internalType":"uint256","name":"gasStation","type":"uint256"},{"internalType":"uint24","name":"swapFee0","type":"uint24"},{"internalType":"uint24","name":"swapFee1","type":"uint24"}],"internalType":"struct ICrossSwap.CrossSwapParams","name":"params","type":"tuple"}],"name":"crossSwap","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"executor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gateway","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_bridge","type":"address"},{"internalType":"address","name":"_executor","type":"address"},{"internalType":"address","name":"_gateway","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50611249806100206000396000f3fe6080604052600436106100765760003560e01c8063116191b61461007b5780634bcb403a146100b1578063715018a6146100c65780638da5cb5b146100db578063c34c08e5146100f0578063e78cea9214610110578063f2fde38b14610130578063f5a077f614610150578063f8c8765e14610176575b600080fd5b34801561008757600080fd5b5060025461009b906001600160a01b031681565b6040516100a89190610cd0565b60405180910390f35b6100c46100bf366004610ce4565b610196565b005b3480156100d257600080fd5b506100c46105a5565b3480156100e757600080fd5b5061009b6105b9565b3480156100fc57600080fd5b5060015461009b906001600160a01b031681565b34801561011c57600080fd5b5060005461009b906001600160a01b031681565b34801561013c57600080fd5b506100c461014b366004610d3b565b6105d4565b34801561015c57600080fd5b50610168638057414e81565b6040519081526020016100a8565b34801561018257600080fd5b506100c4610191366004610d56565b61060f565b61019e610750565b6101b2610160820135610200830135610daa565b3410156101da5760405162461bcd60e51b81526004016101d190610dcb565b60405180910390fd5b6002546001546040516000926001600160a01b039081169263fe39827b9261020087013592638057414e92169061021590889060200161104e565b6040516020818303038152906040526040518563ffffffff1660e01b8152600401610242939291906110b1565b60206040518083038185885af1158015610260573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061028591906110db565b905060006102996060840160408501610d3b565b6001600160a01b031614610467576102d2333060808501356102c16060870160408801610d3b565b6001600160a01b0316929190610786565b60006102e66101c084016101a085016110f4565b60018111156102f7576102f7610e92565b036103dc57600054610331906001600160a01b031660808401356103216060860160408701610d3b565b6001600160a01b031691906107f3565b6000546001546040516001600160a01b039283169263257011b69261016087013592610120880135926101408901359260808a013592610377929091169060200161110f565b6040516020818303038152906040526040518663ffffffff1660e01b81526004016103a59493929190611127565b6000604051808303818588803b1580156103be57600080fd5b505af11580156103d2573d6000803e3d6000fd5b5050505050610560565b600080546001600160a01b0316906341ff1bcc9061016085013590610120860135906101408701359060808801359061041b60608a0160408b01610d3b565b600154604051610437916001600160a01b03169060200161110f565b6040516020818303038152906040526040518863ffffffff1660e01b81526004016103a596959493929190611156565b6080820135610480610160840135610200850135610daa565b61048a9190610daa565b3410156104a95760405162461bcd60e51b81526004016101d190610dcb565b6000546001600160a01b031663257011b66104cd6080850135610160860135610daa565b60015460405161012087013591610140880135916080890135916104ff916001600160a01b039091169060200161110f565b6040516020818303038152906040526040518663ffffffff1660e01b815260040161052d9493929190611127565b6000604051808303818588803b15801561054657600080fd5b505af115801561055a573d6000803e3d6000fd5b50505050505b7f864de11ebc6ea03566009e5f6ec682d79f32e30396e57ff4d086eef48f583328818360405161059192919061119b565b60405180910390a1506105a261087d565b50565b6105ad61088e565b6105b760006108c0565b565b6000806105c461091c565b546001600160a01b031692915050565b6105dc61088e565b6001600160a01b038116610606576000604051631e4fbdf760e01b81526004016101d19190610cd0565b6105a2816108c0565b6000610619610940565b805490915060ff600160401b82041615906001600160401b03166000811580156106405750825b90506000826001600160401b0316600114801561065c5750303b155b90508115801561066a575080155b156106885760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b031916600117855583156106b157845460ff60401b1916600160401b1785555b600080546001600160a01b03808b166001600160a01b031992831617909255600180548a841690831617905560028054928916929091169190911790556106f789610964565b6106ff610975565b831561074557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b600061075a610985565b80549091506001190161078057604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b6040516001600160a01b0384811660248301528381166044830152606482018390526107ed9186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506109a9565b50505050565b604051636eb1769f60e11b81523060048201526001600160a01b0383811660248301526000919085169063dd62ed3e90604401602060405180830381865afa158015610843573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086791906110db565b90506107ed84846108788585610daa565b610a08565b6000610887610985565b6001905550565b336108976105b9565b6001600160a01b0316146105b7573360405163118cdaa760e01b81526004016101d19190610cd0565b60006108ca61091c565b80546001600160a01b038481166001600160a01b031983168117845560405193945091169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930090565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0090565b61096c610a9a565b6105a281610abf565b61097d610a9a565b6105b7610ac7565b7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0090565b60006109be6001600160a01b03841683610acf565b905080516000141580156109e35750808060200190518101906109e191906111bc565b155b15610a035782604051635274afe760e01b81526004016101d19190610cd0565b505050565b6000836001600160a01b031663095ea7b38484604051602401610a2c9291906111de565b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050509050610a658482610ae6565b6107ed57610a9084856001600160a01b031663095ea7b38660006040516024016107bb9291906111de565b6107ed84826109a9565b610aa2610b8e565b6105b757604051631afcd79f60e31b815260040160405180910390fd5b6105dc610a9a565b61087d610a9a565b6060610add83836000610ba8565b90505b92915050565b6000806000846001600160a01b031684604051610b0391906111f7565b6000604051808303816000865af19150503d8060008114610b40576040519150601f19603f3d011682016040523d82523d6000602084013e610b45565b606091505b5091509150818015610b6f575080511580610b6f575080806020019051810190610b6f91906111bc565b8015610b8557506000856001600160a01b03163b115b95945050505050565b6000610b98610940565b54600160401b900460ff16919050565b606081471015610bcd573060405163cd78605960e01b81526004016101d19190610cd0565b600080856001600160a01b03168486604051610be991906111f7565b60006040518083038185875af1925050503d8060008114610c26576040519150601f19603f3d011682016040523d82523d6000602084013e610c2b565b606091505b5091509150610c3b868383610c47565b925050505b9392505050565b606082610c5c57610c5782610c9a565b610c40565b8151158015610c7357506001600160a01b0384163b155b15610c935783604051639996b31560e01b81526004016101d19190610cd0565b5080610c40565b805115610caa5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b600060208284031215610cf657600080fd5b81356001600160401b03811115610d0c57600080fd5b82016102808185031215610c4057600080fd5b80356001600160a01b0381168114610d3657600080fd5b919050565b600060208284031215610d4d57600080fd5b610add82610d1f565b60008060008060808587031215610d6c57600080fd5b610d7585610d1f565b9350610d8360208601610d1f565b9250610d9160408601610d1f565b9150610d9f60608601610d1f565b905092959194509250565b80820180821115610ae057634e487b7160e01b600052601160045260246000fd5b60208082526023908201527f43726f7373537761704578656375746f723a20696e73756666696369656e742060408201526266656560e81b606082015260800190565b6000808335601e19843603018112610e2557600080fd5b83016020810192503590506001600160401b03811115610e4457600080fd5b803603821315610e5357600080fd5b9250929050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b803560028110610d3657600080fd5b634e487b7160e01b600052602160045260246000fd5b60028110610ec657634e487b7160e01b600052602160045260246000fd5b9052565b803562ffffff81168114610d3657600080fd5b60006102808235845260208301356020850152610efc60408401610d1f565b610f096040860182610cc3565b50610f1660608401610d1f565b610f236060860182610cc3565b5060808301356080850152610f3b60a0840184610e0e565b8260a0870152610f4e8387018284610e5a565b9250505060c083013560c0850152610f6860e08401610d1f565b610f7560e0860182610cc3565b50610100610f84818501610d1f565b610f9082870182610cc3565b505061012083810135908501526101408084013590850152610160808401359085015261018080840135908501526101a0610fcc818501610e83565b610fd882870182610ea8565b50506101c083810135908501526101e0610ff3818501610e83565b610fff82870182610ea8565b505061020083810135908501526102208084013590850152610240611025818501610eca565b62ffffff169085015261026061103c848201610eca565b62ffffff169401939093525090919050565b602081526000610add6020830184610edd565b60005b8381101561107c578181015183820152602001611064565b50506000910152565b6000815180845261109d816020860160208601611061565b601f01601f19169290920160200192915050565b8381526001600160a01b0383166020820152606060408201819052600090610b8590830184611085565b6000602082840312156110ed57600080fd5b5051919050565b60006020828403121561110657600080fd5b610add82610e83565b60609190911b6001600160601b031916815260140190565b84815283602082015282604082015260806060820152600061114c6080830184611085565b9695505050505050565b86815285602082015284604082015283606082015260018060a01b038316608082015260c060a0820152600061118f60c0830184611085565b98975050505050505050565b8281526040602082015260006111b46040830184610edd565b949350505050565b6000602082840312156111ce57600080fd5b81518015158114610c4057600080fd5b6001600160a01b03929092168252602082015260400190565b60008251611209818460208701611061565b919091019291505056fea26469706673582212205252146335241bdbd29e5b52a90b9e52f4472e50db5f3c6207717a30a50507b664736f6c63430008180033
Deployed Bytecode
0x6080604052600436106100765760003560e01c8063116191b61461007b5780634bcb403a146100b1578063715018a6146100c65780638da5cb5b146100db578063c34c08e5146100f0578063e78cea9214610110578063f2fde38b14610130578063f5a077f614610150578063f8c8765e14610176575b600080fd5b34801561008757600080fd5b5060025461009b906001600160a01b031681565b6040516100a89190610cd0565b60405180910390f35b6100c46100bf366004610ce4565b610196565b005b3480156100d257600080fd5b506100c46105a5565b3480156100e757600080fd5b5061009b6105b9565b3480156100fc57600080fd5b5060015461009b906001600160a01b031681565b34801561011c57600080fd5b5060005461009b906001600160a01b031681565b34801561013c57600080fd5b506100c461014b366004610d3b565b6105d4565b34801561015c57600080fd5b50610168638057414e81565b6040519081526020016100a8565b34801561018257600080fd5b506100c4610191366004610d56565b61060f565b61019e610750565b6101b2610160820135610200830135610daa565b3410156101da5760405162461bcd60e51b81526004016101d190610dcb565b60405180910390fd5b6002546001546040516000926001600160a01b039081169263fe39827b9261020087013592638057414e92169061021590889060200161104e565b6040516020818303038152906040526040518563ffffffff1660e01b8152600401610242939291906110b1565b60206040518083038185885af1158015610260573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061028591906110db565b905060006102996060840160408501610d3b565b6001600160a01b031614610467576102d2333060808501356102c16060870160408801610d3b565b6001600160a01b0316929190610786565b60006102e66101c084016101a085016110f4565b60018111156102f7576102f7610e92565b036103dc57600054610331906001600160a01b031660808401356103216060860160408701610d3b565b6001600160a01b031691906107f3565b6000546001546040516001600160a01b039283169263257011b69261016087013592610120880135926101408901359260808a013592610377929091169060200161110f565b6040516020818303038152906040526040518663ffffffff1660e01b81526004016103a59493929190611127565b6000604051808303818588803b1580156103be57600080fd5b505af11580156103d2573d6000803e3d6000fd5b5050505050610560565b600080546001600160a01b0316906341ff1bcc9061016085013590610120860135906101408701359060808801359061041b60608a0160408b01610d3b565b600154604051610437916001600160a01b03169060200161110f565b6040516020818303038152906040526040518863ffffffff1660e01b81526004016103a596959493929190611156565b6080820135610480610160840135610200850135610daa565b61048a9190610daa565b3410156104a95760405162461bcd60e51b81526004016101d190610dcb565b6000546001600160a01b031663257011b66104cd6080850135610160860135610daa565b60015460405161012087013591610140880135916080890135916104ff916001600160a01b039091169060200161110f565b6040516020818303038152906040526040518663ffffffff1660e01b815260040161052d9493929190611127565b6000604051808303818588803b15801561054657600080fd5b505af115801561055a573d6000803e3d6000fd5b50505050505b7f864de11ebc6ea03566009e5f6ec682d79f32e30396e57ff4d086eef48f583328818360405161059192919061119b565b60405180910390a1506105a261087d565b50565b6105ad61088e565b6105b760006108c0565b565b6000806105c461091c565b546001600160a01b031692915050565b6105dc61088e565b6001600160a01b038116610606576000604051631e4fbdf760e01b81526004016101d19190610cd0565b6105a2816108c0565b6000610619610940565b805490915060ff600160401b82041615906001600160401b03166000811580156106405750825b90506000826001600160401b0316600114801561065c5750303b155b90508115801561066a575080155b156106885760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b031916600117855583156106b157845460ff60401b1916600160401b1785555b600080546001600160a01b03808b166001600160a01b031992831617909255600180548a841690831617905560028054928916929091169190911790556106f789610964565b6106ff610975565b831561074557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b600061075a610985565b80549091506001190161078057604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b6040516001600160a01b0384811660248301528381166044830152606482018390526107ed9186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506109a9565b50505050565b604051636eb1769f60e11b81523060048201526001600160a01b0383811660248301526000919085169063dd62ed3e90604401602060405180830381865afa158015610843573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086791906110db565b90506107ed84846108788585610daa565b610a08565b6000610887610985565b6001905550565b336108976105b9565b6001600160a01b0316146105b7573360405163118cdaa760e01b81526004016101d19190610cd0565b60006108ca61091c565b80546001600160a01b038481166001600160a01b031983168117845560405193945091169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930090565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0090565b61096c610a9a565b6105a281610abf565b61097d610a9a565b6105b7610ac7565b7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0090565b60006109be6001600160a01b03841683610acf565b905080516000141580156109e35750808060200190518101906109e191906111bc565b155b15610a035782604051635274afe760e01b81526004016101d19190610cd0565b505050565b6000836001600160a01b031663095ea7b38484604051602401610a2c9291906111de565b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050509050610a658482610ae6565b6107ed57610a9084856001600160a01b031663095ea7b38660006040516024016107bb9291906111de565b6107ed84826109a9565b610aa2610b8e565b6105b757604051631afcd79f60e31b815260040160405180910390fd5b6105dc610a9a565b61087d610a9a565b6060610add83836000610ba8565b90505b92915050565b6000806000846001600160a01b031684604051610b0391906111f7565b6000604051808303816000865af19150503d8060008114610b40576040519150601f19603f3d011682016040523d82523d6000602084013e610b45565b606091505b5091509150818015610b6f575080511580610b6f575080806020019051810190610b6f91906111bc565b8015610b8557506000856001600160a01b03163b115b95945050505050565b6000610b98610940565b54600160401b900460ff16919050565b606081471015610bcd573060405163cd78605960e01b81526004016101d19190610cd0565b600080856001600160a01b03168486604051610be991906111f7565b60006040518083038185875af1925050503d8060008114610c26576040519150601f19603f3d011682016040523d82523d6000602084013e610c2b565b606091505b5091509150610c3b868383610c47565b925050505b9392505050565b606082610c5c57610c5782610c9a565b610c40565b8151158015610c7357506001600160a01b0384163b155b15610c935783604051639996b31560e01b81526004016101d19190610cd0565b5080610c40565b805115610caa5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160a01b03169052565b6001600160a01b0391909116815260200190565b600060208284031215610cf657600080fd5b81356001600160401b03811115610d0c57600080fd5b82016102808185031215610c4057600080fd5b80356001600160a01b0381168114610d3657600080fd5b919050565b600060208284031215610d4d57600080fd5b610add82610d1f565b60008060008060808587031215610d6c57600080fd5b610d7585610d1f565b9350610d8360208601610d1f565b9250610d9160408601610d1f565b9150610d9f60608601610d1f565b905092959194509250565b80820180821115610ae057634e487b7160e01b600052601160045260246000fd5b60208082526023908201527f43726f7373537761704578656375746f723a20696e73756666696369656e742060408201526266656560e81b606082015260800190565b6000808335601e19843603018112610e2557600080fd5b83016020810192503590506001600160401b03811115610e4457600080fd5b803603821315610e5357600080fd5b9250929050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b803560028110610d3657600080fd5b634e487b7160e01b600052602160045260246000fd5b60028110610ec657634e487b7160e01b600052602160045260246000fd5b9052565b803562ffffff81168114610d3657600080fd5b60006102808235845260208301356020850152610efc60408401610d1f565b610f096040860182610cc3565b50610f1660608401610d1f565b610f236060860182610cc3565b5060808301356080850152610f3b60a0840184610e0e565b8260a0870152610f4e8387018284610e5a565b9250505060c083013560c0850152610f6860e08401610d1f565b610f7560e0860182610cc3565b50610100610f84818501610d1f565b610f9082870182610cc3565b505061012083810135908501526101408084013590850152610160808401359085015261018080840135908501526101a0610fcc818501610e83565b610fd882870182610ea8565b50506101c083810135908501526101e0610ff3818501610e83565b610fff82870182610ea8565b505061020083810135908501526102208084013590850152610240611025818501610eca565b62ffffff169085015261026061103c848201610eca565b62ffffff169401939093525090919050565b602081526000610add6020830184610edd565b60005b8381101561107c578181015183820152602001611064565b50506000910152565b6000815180845261109d816020860160208601611061565b601f01601f19169290920160200192915050565b8381526001600160a01b0383166020820152606060408201819052600090610b8590830184611085565b6000602082840312156110ed57600080fd5b5051919050565b60006020828403121561110657600080fd5b610add82610e83565b60609190911b6001600160601b031916815260140190565b84815283602082015282604082015260806060820152600061114c6080830184611085565b9695505050505050565b86815285602082015284604082015283606082015260018060a01b038316608082015260c060a0820152600061118f60c0830184611085565b98975050505050505050565b8281526040602082015260006111b46040830184610edd565b949350505050565b6000602082840312156111ce57600080fd5b81518015158114610c4057600080fd5b6001600160a01b03929092168252602082015260400190565b60008251611209818460208701611061565b919091019291505056fea26469706673582212205252146335241bdbd29e5b52a90b9e52f4472e50db5f3c6207717a30a50507b664736f6c63430008180033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.