More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Loading...
Loading
Contract Name:
DexWeeklyUpdateHandler
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.19; import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import {ArcBaseWithRainbowRoad} from "../bases/ArcBaseWithRainbowRoad.sol"; import {IHandler} from "../interfaces/IHandler.sol"; import {IMinter} from "../interfaces/IMinter.sol"; /** * Dex Weekly Update Handler */ contract DexWeeklyUpdateHandler is ArcBaseWithRainbowRoad, IHandler { IMinter public minter; event PeriodUpdatedSucccessfully(address target, bytes payload, uint period, uint256 timestamp); constructor(address _rainbowRoad, address _minter) ArcBaseWithRainbowRoad(_rainbowRoad) { require(_minter != address(0), 'Minter cannot be zero address'); minter = IMinter(_minter); _transferOwnership(rainbowRoad.team()); } function encodePayload() pure external returns (bytes memory payload) { return ''; } function setMinter(address _minter) external onlyOwner { require(_minter != address(0), 'Minter cannot be zero address'); minter = IMinter(_minter); } function handleSend(address target, bytes calldata payload) external view onlyRainbowRoad whenNotPaused { require(target != address(0), 'Target cannot be zero address'); require(payload.length == 0, 'Invalid payload'); } function handleReceive(address target, bytes calldata payload) external onlyRainbowRoad whenNotPaused { require(target != address(0), 'Target cannot be zero address'); require(payload.length == 0, 'Invalid payload'); uint period = minter.update_period(); emit PeriodUpdatedSucccessfully(target, payload, period, block.timestamp); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. 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 { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol) pragma solidity ^0.8.0; import "./Ownable.sol"; /** * @dev Contract module which provides access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner"); _transferOwnership(sender); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @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 ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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 v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.19; import {Ownable2Step} from "@openzeppelin/contracts/access/Ownable2Step.sol"; import {Pausable} from "@openzeppelin/contracts/security/Pausable.sol"; import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /** * Provides set of properties, functions, and modifiers to help with * security and access control of extending contracts */ contract ArcBase is Ownable2Step, Pausable, ReentrancyGuard { function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function withdrawNative(address beneficiary) public onlyOwner { uint256 amount = address(this).balance; (bool sent, ) = beneficiary.call{value: amount}(""); require(sent, 'Unable to withdraw'); } function withdrawToken(address beneficiary, address token) public onlyOwner { uint256 amount = IERC20(token).balanceOf(address(this)); IERC20(token).transfer(beneficiary, amount); } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.19; import {ArcBase} from "./ArcBase.sol"; import {IRainbowRoad} from "../interfaces/IRainbowRoad.sol"; /** * Extends the ArcBase contract to provide * for interactions with the Rainbow Road */ contract ArcBaseWithRainbowRoad is ArcBase { IRainbowRoad public rainbowRoad; constructor(address _rainbowRoad) { require(_rainbowRoad != address(0), 'Rainbow Road cannot be zero address'); rainbowRoad = IRainbowRoad(_rainbowRoad); } function setRainbowRoad(address _rainbowRoad) external onlyOwner { require(_rainbowRoad != address(0), 'Rainbow Road cannot be zero address'); rainbowRoad = IRainbowRoad(_rainbowRoad); } /// @dev Only calls from the Rainbow Road are accepted. modifier onlyRainbowRoad() { require(msg.sender == address(rainbowRoad), 'Must be called by Rainbow Road'); _; } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.19; interface IArc { function approve(address _spender, uint _value) external returns (bool); function burn(uint amount) external; function mint(address account, uint amount) external; function transfer(address, uint) external returns (bool); function transferFrom(address _from, address _to, uint _value) external; }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.19; interface IHandler { function handleReceive(address target, bytes calldata payload) external; function handleSend(address target, bytes calldata payload) external; }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.19; interface IMinter { function update_period() external returns (uint); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.19; import {IArc} from "./IArc.sol"; interface IRainbowRoad { function acceptTeam() external; function actionHandlers(string calldata action) external view returns (address); function arc() external view returns (IArc); function blockToken(address tokenAddress) external; function disableFeeManager(address feeManager) external; function disableOpenTokenWhitelisting() external; function disableReceiver(address receiver) external; function disableSender(address sender) external; function disableSendFeeBurn() external; function disableSendFeeCharge() external; function disableWhitelistingFeeBurn() external; function disableWhitelistingFeeCharge() external; function enableFeeManager(address feeManager) external; function enableOpenTokenWhitelisting() external; function enableReceiver(address receiver) external; function enableSendFeeBurn() external; function enableSender(address sender) external; function enableSendFeeCharge() external; function enableWhitelistingFeeBurn() external; function enableWhitelistingFeeCharge() external; function sendFee() external view returns (uint256); function whitelistingFee() external view returns (uint256); function chargeSendFee() external view returns (bool); function chargeWhitelistingFee() external view returns (bool); function burnSendFee() external view returns (bool); function burnWhitelistingFee() external view returns (bool); function openTokenWhitelisting() external view returns (bool); function config(string calldata configName) external view returns (bytes memory); function blockedTokens(address tokenAddress) external view returns (bool); function feeManagers(address feeManager) external view returns (bool); function receiveAction(string calldata action, address to, bytes calldata payload) external; function sendAction(string calldata action, address from, bytes calldata payload) external; function setActionHandler(string memory action, address handler) external; function setArc(address _arc) external; function setSendFee(uint256 _fee) external; function setTeam(address _team) external; function setTeamRate(uint256 _teamRate) external; function setToken(string calldata tokenSymbol, address tokenAddress) external; function setWhitelistingFee(uint256 _fee) external; function team() external view returns (address); function teamRate() external view returns (uint256); function tokens(string calldata tokenSymbol) external view returns (address); function MAX_TEAM_RATE() external view returns (uint256); function receivers(address receiver) external view returns (bool); function senders(address sender) external view returns (bool); function unblockToken(address tokenAddress) external; function whitelist(address tokenAddress) external; }
{ "optimizer": { "enabled": true, "runs": 10000 }, "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":"_rainbowRoad","type":"address"},{"internalType":"address","name":"_minter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes","name":"payload","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"period","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"PeriodUpdatedSucccessfully","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"encodePayload","outputs":[{"internalType":"bytes","name":"payload","type":"bytes"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"payload","type":"bytes"}],"name":"handleReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"payload","type":"bytes"}],"name":"handleSend","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"contract IMinter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rainbowRoad","outputs":[{"internalType":"contract IRainbowRoad","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rainbowRoad","type":"address"}],"name":"setRainbowRoad","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"withdrawNative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"address","name":"token","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620012b4380380620012b4833981016040819052620000349162000248565b816200004633620001bd565b620001bd565b6001805460ff60a01b191681556002556001600160a01b038116620000be5760405162461bcd60e51b815260206004820152602360248201527f5261696e626f7720526f61642063616e6e6f74206265207a65726f206164647260448201526265737360e81b60648201526084015b60405180910390fd5b600380546001600160a01b0319166001600160a01b0392831617905581166200012a5760405162461bcd60e51b815260206004820152601d60248201527f4d696e7465722063616e6e6f74206265207a65726f20616464726573730000006044820152606401620000b5565b600480546001600160a01b0319166001600160a01b03838116919091178255600354604080516342f9577960e11b81529051620001b59492909316926385f2aef2928281019260209291908290030181865afa1580156200018f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000040919062000280565b5050620002a5565b600180546001600160a01b0319169055620001d881620001db565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146200024357600080fd5b919050565b600080604083850312156200025c57600080fd5b62000267836200022b565b915062000277602084016200022b565b90509250929050565b6000602082840312156200029357600080fd5b6200029e826200022b565b9392505050565b610fff80620002b56000396000f3fe608060405234801561001057600080fd5b506004361061011b5760003560e01c8063715018a6116100b2578063bfb5944a11610081578063e30c397811610066578063e30c397814610271578063f2fde38b1461028f578063fca3b5aa146102a257600080fd5b8063bfb5944a1461024b578063c18272fc1461025e57600080fd5b8063715018a61461021557806379ba50971461021d5780638456cb59146102255780638da5cb5b1461022d57600080fd5b80633f4ba83a116100ee5780633f4ba83a146101a5578063426b80f6146101ad5780635c975abb146101c75780636a936817146101f557600080fd5b806307546172146101205780632f622e6b1461016a5780633aeac4e11461017f5780633ed0da7f14610192575b600080fd5b6004546101409073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b61017d610178366004610dcf565b6102b5565b005b61017d61018d366004610df1565b610377565b61017d6101a0366004610e24565b6104b3565b61017d6105d3565b604080516020810182526000815290516101619190610ea7565b60015474010000000000000000000000000000000000000000900460ff166040519015158152602001610161565b6003546101409073ffffffffffffffffffffffffffffffffffffffff1681565b61017d6105e5565b61017d6105f7565b61017d610692565b60005473ffffffffffffffffffffffffffffffffffffffff16610140565b61017d610259366004610dcf565b6106a2565b61017d61026c366004610e24565b61077a565b60015473ffffffffffffffffffffffffffffffffffffffff16610140565b61017d61029d366004610dcf565b610976565b61017d6102b0366004610dcf565b610a26565b6102bd610ad8565b604051479060009073ffffffffffffffffffffffffffffffffffffffff84169083908381818185875af1925050503d8060008114610317576040519150601f19603f3d011682016040523d82523d6000602084013e61031c565b606091505b50509050806103725760405162461bcd60e51b815260206004820152601260248201527f556e61626c6520746f207769746864726177000000000000000000000000000060448201526064015b60405180910390fd5b505050565b61037f610ad8565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa1580156103ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104109190610f13565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018390529192509083169063a9059cbb906044016020604051808303816000875af1158015610489573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ad9190610f2c565b50505050565b60035473ffffffffffffffffffffffffffffffffffffffff16331461051a5760405162461bcd60e51b815260206004820152601e60248201527f4d7573742062652063616c6c6564206279205261696e626f7720526f616400006044820152606401610369565b610522610b3f565b73ffffffffffffffffffffffffffffffffffffffff83166105855760405162461bcd60e51b815260206004820152601d60248201527f5461726765742063616e6e6f74206265207a65726f20616464726573730000006044820152606401610369565b80156103725760405162461bcd60e51b815260206004820152600f60248201527f496e76616c6964207061796c6f616400000000000000000000000000000000006044820152606401610369565b6105db610ad8565b6105e3610baa565b565b6105ed610ad8565b6105e36000610c27565b600154339073ffffffffffffffffffffffffffffffffffffffff1681146106865760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e657200000000000000000000000000000000000000000000006064820152608401610369565b61068f81610c27565b50565b61069a610ad8565b6105e3610c58565b6106aa610ad8565b73ffffffffffffffffffffffffffffffffffffffff81166107335760405162461bcd60e51b815260206004820152602360248201527f5261696e626f7720526f61642063616e6e6f74206265207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610369565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60035473ffffffffffffffffffffffffffffffffffffffff1633146107e15760405162461bcd60e51b815260206004820152601e60248201527f4d7573742062652063616c6c6564206279205261696e626f7720526f616400006044820152606401610369565b6107e9610b3f565b73ffffffffffffffffffffffffffffffffffffffff831661084c5760405162461bcd60e51b815260206004820152601d60248201527f5461726765742063616e6e6f74206265207a65726f20616464726573730000006044820152606401610369565b801561089a5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c6964207061796c6f616400000000000000000000000000000000006044820152606401610369565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ed29fc116040518163ffffffff1660e01b81526004016020604051808303816000875af115801561090b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092f9190610f13565b90507f395e7eb7afad547e535a87d695d9f9323decdc806e271fa304cb733676340fb98484848442604051610968959493929190610f4e565b60405180910390a150505050565b61097e610ad8565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff000000000000000000000000000000000000000090911681179091556109e160005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610a2e610ad8565b73ffffffffffffffffffffffffffffffffffffffff8116610a915760405162461bcd60e51b815260206004820152601d60248201527f4d696e7465722063616e6e6f74206265207a65726f20616464726573730000006044820152606401610369565b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105e35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610369565b60015474010000000000000000000000000000000000000000900460ff16156105e35760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610369565b610bb2610cc7565b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b600180547fffffffffffffffffffffffff000000000000000000000000000000000000000016905561068f81610d31565b610c60610b3f565b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610bfd3390565b60015474010000000000000000000000000000000000000000900460ff166105e35760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610369565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610dca57600080fd5b919050565b600060208284031215610de157600080fd5b610dea82610da6565b9392505050565b60008060408385031215610e0457600080fd5b610e0d83610da6565b9150610e1b60208401610da6565b90509250929050565b600080600060408486031215610e3957600080fd5b610e4284610da6565b9250602084013567ffffffffffffffff80821115610e5f57600080fd5b818601915086601f830112610e7357600080fd5b813581811115610e8257600080fd5b876020828501011115610e9457600080fd5b6020830194508093505050509250925092565b600060208083528351808285015260005b81811015610ed457858101830151858201604001528201610eb8565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b600060208284031215610f2557600080fd5b5051919050565b600060208284031215610f3e57600080fd5b81518015158114610dea57600080fd5b73ffffffffffffffffffffffffffffffffffffffff8616815260806020820152836080820152838560a0830137600060a08583010152600060a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8701168301019050836040830152826060830152969550505050505056fea2646970667358221220ce8c124bd20e4683e9453dfa3b38f2055e9916767043a20c1e3faed526af00ba64736f6c634300081300330000000000000000000000009412316dc6c882ffc4fa1a01413b0c701b147b9e00000000000000000000000014eafc4ceb334d4f913204647708abad1cef0854
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061011b5760003560e01c8063715018a6116100b2578063bfb5944a11610081578063e30c397811610066578063e30c397814610271578063f2fde38b1461028f578063fca3b5aa146102a257600080fd5b8063bfb5944a1461024b578063c18272fc1461025e57600080fd5b8063715018a61461021557806379ba50971461021d5780638456cb59146102255780638da5cb5b1461022d57600080fd5b80633f4ba83a116100ee5780633f4ba83a146101a5578063426b80f6146101ad5780635c975abb146101c75780636a936817146101f557600080fd5b806307546172146101205780632f622e6b1461016a5780633aeac4e11461017f5780633ed0da7f14610192575b600080fd5b6004546101409073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b61017d610178366004610dcf565b6102b5565b005b61017d61018d366004610df1565b610377565b61017d6101a0366004610e24565b6104b3565b61017d6105d3565b604080516020810182526000815290516101619190610ea7565b60015474010000000000000000000000000000000000000000900460ff166040519015158152602001610161565b6003546101409073ffffffffffffffffffffffffffffffffffffffff1681565b61017d6105e5565b61017d6105f7565b61017d610692565b60005473ffffffffffffffffffffffffffffffffffffffff16610140565b61017d610259366004610dcf565b6106a2565b61017d61026c366004610e24565b61077a565b60015473ffffffffffffffffffffffffffffffffffffffff16610140565b61017d61029d366004610dcf565b610976565b61017d6102b0366004610dcf565b610a26565b6102bd610ad8565b604051479060009073ffffffffffffffffffffffffffffffffffffffff84169083908381818185875af1925050503d8060008114610317576040519150601f19603f3d011682016040523d82523d6000602084013e61031c565b606091505b50509050806103725760405162461bcd60e51b815260206004820152601260248201527f556e61626c6520746f207769746864726177000000000000000000000000000060448201526064015b60405180910390fd5b505050565b61037f610ad8565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa1580156103ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104109190610f13565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018390529192509083169063a9059cbb906044016020604051808303816000875af1158015610489573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ad9190610f2c565b50505050565b60035473ffffffffffffffffffffffffffffffffffffffff16331461051a5760405162461bcd60e51b815260206004820152601e60248201527f4d7573742062652063616c6c6564206279205261696e626f7720526f616400006044820152606401610369565b610522610b3f565b73ffffffffffffffffffffffffffffffffffffffff83166105855760405162461bcd60e51b815260206004820152601d60248201527f5461726765742063616e6e6f74206265207a65726f20616464726573730000006044820152606401610369565b80156103725760405162461bcd60e51b815260206004820152600f60248201527f496e76616c6964207061796c6f616400000000000000000000000000000000006044820152606401610369565b6105db610ad8565b6105e3610baa565b565b6105ed610ad8565b6105e36000610c27565b600154339073ffffffffffffffffffffffffffffffffffffffff1681146106865760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e657200000000000000000000000000000000000000000000006064820152608401610369565b61068f81610c27565b50565b61069a610ad8565b6105e3610c58565b6106aa610ad8565b73ffffffffffffffffffffffffffffffffffffffff81166107335760405162461bcd60e51b815260206004820152602360248201527f5261696e626f7720526f61642063616e6e6f74206265207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610369565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60035473ffffffffffffffffffffffffffffffffffffffff1633146107e15760405162461bcd60e51b815260206004820152601e60248201527f4d7573742062652063616c6c6564206279205261696e626f7720526f616400006044820152606401610369565b6107e9610b3f565b73ffffffffffffffffffffffffffffffffffffffff831661084c5760405162461bcd60e51b815260206004820152601d60248201527f5461726765742063616e6e6f74206265207a65726f20616464726573730000006044820152606401610369565b801561089a5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c6964207061796c6f616400000000000000000000000000000000006044820152606401610369565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ed29fc116040518163ffffffff1660e01b81526004016020604051808303816000875af115801561090b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092f9190610f13565b90507f395e7eb7afad547e535a87d695d9f9323decdc806e271fa304cb733676340fb98484848442604051610968959493929190610f4e565b60405180910390a150505050565b61097e610ad8565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff000000000000000000000000000000000000000090911681179091556109e160005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610a2e610ad8565b73ffffffffffffffffffffffffffffffffffffffff8116610a915760405162461bcd60e51b815260206004820152601d60248201527f4d696e7465722063616e6e6f74206265207a65726f20616464726573730000006044820152606401610369565b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105e35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610369565b60015474010000000000000000000000000000000000000000900460ff16156105e35760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610369565b610bb2610cc7565b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b600180547fffffffffffffffffffffffff000000000000000000000000000000000000000016905561068f81610d31565b610c60610b3f565b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610bfd3390565b60015474010000000000000000000000000000000000000000900460ff166105e35760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610369565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610dca57600080fd5b919050565b600060208284031215610de157600080fd5b610dea82610da6565b9392505050565b60008060408385031215610e0457600080fd5b610e0d83610da6565b9150610e1b60208401610da6565b90509250929050565b600080600060408486031215610e3957600080fd5b610e4284610da6565b9250602084013567ffffffffffffffff80821115610e5f57600080fd5b818601915086601f830112610e7357600080fd5b813581811115610e8257600080fd5b876020828501011115610e9457600080fd5b6020830194508093505050509250925092565b600060208083528351808285015260005b81811015610ed457858101830151858201604001528201610eb8565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b600060208284031215610f2557600080fd5b5051919050565b600060208284031215610f3e57600080fd5b81518015158114610dea57600080fd5b73ffffffffffffffffffffffffffffffffffffffff8616815260806020820152836080820152838560a0830137600060a08583010152600060a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8701168301019050836040830152826060830152969550505050505056fea2646970667358221220ce8c124bd20e4683e9453dfa3b38f2055e9916767043a20c1e3faed526af00ba64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009412316dc6c882ffc4fa1a01413b0c701b147b9e00000000000000000000000014eafc4ceb334d4f913204647708abad1cef0854
-----Decoded View---------------
Arg [0] : _rainbowRoad (address): 0x9412316DC6C882ffc4FA1A01413b0C701b147B9E
Arg [1] : _minter (address): 0x14EAfc4ceB334d4f913204647708aBAD1ceF0854
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000009412316dc6c882ffc4fa1a01413b0c701b147b9e
Arg [1] : 00000000000000000000000014eafc4ceb334d4f913204647708abad1cef0854
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.