Source Code
Overview
ETH Balance
0 ETH
Token Holdings
More Info
ContractCreator
Multichain Info
N/A
Latest 25 from a total of 105 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
Amount
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Forward Message ... | 122556346 | 346 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 122556345 | 346 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 121735340 | 349 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 121735339 | 349 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 121468454 | 350 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 121468453 | 350 days ago | IN | 0 ETH | 0.00001756 | ||||
| Forward Message ... | 120869476 | 352 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 120869475 | 352 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 120572550 | 353 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 120572549 | 353 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 119298834 | 357 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 119298833 | 357 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 118951757 | 358 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 118951756 | 358 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 118618826 | 359 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 118618825 | 359 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 118299204 | 360 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 118299203 | 360 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 117314405 | 363 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 117314402 | 363 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 117023359 | 364 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 117023356 | 364 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 116738036 | 365 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 116738035 | 365 days ago | IN | 0 ETH | 0.00001757 | ||||
| Forward Message ... | 116466460 | 366 days ago | IN | 0 ETH | 0.00001757 |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x77aA68E0...D0d55B286 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
ApeChainMessageForwarder
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.19;
import {Ownable2Step} from "@openzeppelin/contracts/access/Ownable2Step.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {IApeChainInbox} from "./interfaces/IApeChainInbox.sol";
contract ApeChainMessageForwarder is Ownable2Step {
address public crossDomainMsgSender;
IApeChainInbox public immutable apeChainInbox;
IERC20 public immutable apeCoin;
constructor(IApeChainInbox _apeChainInbox, IERC20 _apeCoin) Ownable(msg.sender) {
apeChainInbox = _apeChainInbox;
apeCoin = _apeCoin;
}
function forwardMessageToApeChain(
address l3Target,
uint l3MaxSubmissionCost,
uint l3GasLimit,
uint l3MaxFeePerGas,
uint tokenTotalFeeAmount,
bytes calldata messageData
) external payable {
require(msg.sender == crossDomainMsgSender, "Not authorized cross-domain message. Only cross-domain counterpart can call this function.");
apeCoin.approve(address(apeChainInbox), tokenTotalFeeAmount);
apeChainInbox.createRetryableTicket(l3Target, 0, l3MaxSubmissionCost, address(this), address(0), l3GasLimit, l3MaxFeePerGas, tokenTotalFeeAmount, messageData);
}
function transferFunds(address recipient, uint amount) external onlyOwner {
apeCoin.transfer(recipient, amount);
}
function setCrossDomainMsgSender(address _crossDomainMsgSender) external onlyOwner {
crossDomainMsgSender = _crossDomainMsgSender;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* The initial owner is set to the address provided by the deployer. This can
* later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable2Step.sol)
pragma solidity ^0.8.20;
import {Ownable} from "./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.
*
* The initial owner is specified at deployment time in the constructor for `Ownable`. 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();
if (pendingOwner() != sender) {
revert OwnableUnauthorizedAccount(sender);
}
_transferOwnership(sender);
}
}// 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/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.19;
interface IApeChainInbox {
/**
* @notice Put a message in the L2 inbox that can be reexecuted for some fixed amount of time if it reverts
* @dev all tokenTotalFeeAmount will be deposited to callValueRefundAddress on L2
* @dev Gas limit and maxFeePerGas should not be set to 1 as that is used to trigger the RetryableData error
* @param to destination L2 contract address
* @param l2CallValue call value for retryable L2 message
* @param maxSubmissionCost Max gas deducted from user's L2 balance to cover base submission fee
* @param excessFeeRefundAddress gasLimit x maxFeePerGas - execution cost gets credited here on L2 balance
* @param callValueRefundAddress l2Callvalue gets credited here on L2 if retryable txn times out or gets cancelled
* @param gasLimit Max gas deducted from user's L2 balance to cover L2 execution. Should not be set to 1 (magic value used to trigger the RetryableData error)
* @param maxFeePerGas price bid for L2 execution. Should not be set to 1 (magic value used to trigger the RetryableData error)
* @param tokenTotalFeeAmount amount of fees to be deposited in native token to cover for retryable ticket cost
* @param data ABI encoded data of L2 message
* @return unique message number of the retryable transaction
*/
function createRetryableTicket(
address to,
uint256 l2CallValue,
uint256 maxSubmissionCost,
address excessFeeRefundAddress,
address callValueRefundAddress,
uint256 gasLimit,
uint256 maxFeePerGas,
uint256 tokenTotalFeeAmount,
bytes calldata data
) external returns (uint256);
}{
"viaIR": true,
"optimizer": {
"enabled": true,
"runs": 200,
"details": {
"yulDetails": {
"optimizerSteps": "u"
}
}
},
"evmVersion": "paris",
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract ABI
API[{"inputs":[{"internalType":"contract IApeChainInbox","name":"_apeChainInbox","type":"address"},{"internalType":"contract IERC20","name":"_apeCoin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"apeChainInbox","outputs":[{"internalType":"contract IApeChainInbox","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"apeCoin","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crossDomainMsgSender","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"l3Target","type":"address"},{"internalType":"uint256","name":"l3MaxSubmissionCost","type":"uint256"},{"internalType":"uint256","name":"l3GasLimit","type":"uint256"},{"internalType":"uint256","name":"l3MaxFeePerGas","type":"uint256"},{"internalType":"uint256","name":"tokenTotalFeeAmount","type":"uint256"},{"internalType":"bytes","name":"messageData","type":"bytes"}],"name":"forwardMessageToApeChain","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_crossDomainMsgSender","type":"address"}],"name":"setCrossDomainMsgSender","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
0x60c06040523462000058576200001f620000186200010c565b9062000133565b604051610a2d620002f882396080518181816103460152610849015260a05181818161038701528181610817015261096b0152610a2d90f35b600080fd5b634e487b7160e01b600052604160045260246000fd5b90601f01601f191681019081106001600160401b038211176200009557604052565b6200005d565b90620000b2620000aa60405190565b928362000073565b565b6001600160a01b031690565b90565b6001600160a01b038116036200005857565b90505190620000b282620000c3565b91906040838203126200005857620000c090620001028185620000d5565b93602001620000d5565b6200012f62000d258038038062000123816200009b565b928339810190620000e4565b9091565b6200013e3362000146565b60805260a052565b620000b2906200016c565b620000b4620000c0620000c09290565b620000c09062000151565b62000178600062000161565b6001600160a01b0381166001600160a01b038316146200019e5750620000b29062000250565b620001d190620001ad60405190565b631e4fbdf760e01b8152918291600483016001600160a01b03909116815260200190565b0390fd5b916001600160a01b0360089290920291821b911b5b9181191691161790565b620000c090620000b4906001600160a01b031682565b620000c090620001f4565b620000c0906200020a565b919062000235620000c06200023e9362000215565b908354620001d5565b9055565b620000b29160009162000220565b620000b290620002636000600162000242565b62000295565b906001600160a01b0390620001ea565b906200028d620000c06200023e9262000215565b825462000269565b6000546001600160a01b031690620002af81600062000279565b620002e6620002df7f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09362000215565b9162000215565b91620002f160405190565b600090a356fe6080604052600436101561001257600080fd5b60003560e01c806342e2944c146100c2578063459c2d0e146100bd57806361bfd0b0146100b8578063715018a6146100b357806379ba5097146100ae5780638da5cb5b146100a9578063990dc9db146100a45780639e2228c81461009f578063ac7ad9ba1461009a578063e30c3978146100955763f2fde38b036100d2576103c6565b6103ab565b610372565b610331565b6102d9565b61029b565b610283565b61026b565b610251565b610181565b610125565b60009103126100d257565b600080fd5b6100ec916008021c5b6001600160a01b031690565b90565b906100ec91546100d7565b6100ec600060026100ef565b61010f906100e0565b9052565b6020810192916101239190610106565b565b346100d2576101353660046100c7565b61014c6101406100fa565b60405191829182610113565b0390f35b610159816100e0565b036100d257565b9050359061012382610150565b906020828203126100d2576100ec91610160565b346100d25761019961019436600461016d565b6109ee565b604051005b80610159565b905035906101238261019e565b909182601f830112156100d25781359167ffffffffffffffff83116100d25760200192600183028401116100d257565b9160c0838303126100d2576101f68284610160565b9261020483602083016101a4565b9261021281604084016101a4565b9261022082606085016101a4565b9261022e83608083016101a4565b9260a082013567ffffffffffffffff81116100d25761024d92016101b1565b9091565b61019961025f3660046101e1565b959490949391936107e7565b346100d25761027b3660046100c7565b610199610433565b346100d2576102933660046100c7565b6101996105c2565b346100d2576102ab3660046100c7565b61014c6101406103f1565b91906040838203126100d2576100ec906102d08185610160565b936020016101a4565b346100d2576101996102ec3660046102b6565b906109cd565b6100ec906100e0906001600160a01b031682565b6100ec906102f2565b6100ec90610306565b61010f9061030f565b6020810192916101239190610318565b346100d2576103413660046100c7565b61014c7f00000000000000000000000000000000000000000000000000000000000000005b60405191829182610321565b346100d2576103823660046100c7565b61014c7f0000000000000000000000000000000000000000000000000000000000000000610366565b346100d2576103bb3660046100c7565b61014c610140610486565b346100d2576101996103d936600461016d565b610528565b6100ec906100e0565b6100ec90546103de565b6100ec60006103e7565b61040361043b565b610123610421565b6100e06100ec6100ec9290565b6100ec9061040b565b61012361042e6000610418565b61056f565b6101236103fb565b6104436103f1565b3390610457610451836100e0565b916100e0565b0361045f5750565b6104829061046c60405190565b63118cdaa760e01b815291829160048301610113565b0390fd5b6100ec60016103e7565b6101239061049c61043b565b6104d1565b906001600160a01b03905b9181191691161790565b906104c66100ec6104cd9261030f565b82546104a1565b9055565b6104dc8160016104b6565b6104e46103f1565b906105186105127f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e227009361030f565b9161030f565b9161052260405190565b600090a3565b61012390610490565b916001600160a01b0360089290920291821b911b6104ac565b919061055b6100ec6104cd9361030f565b908354610531565b6101239160009161054a565b6101239061057f60006001610563565b61058960006103e7565b906105958160006104b6565b6105186105127f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09361030f565b336105cb610486565b6105d7610451836100e0565b0361045f576101239061056f565b0190565b156105f057565b60405162461bcd60e51b815260206004820152605a60248201527f4e6f7420617574686f72697a65642063726f73732d646f6d61696e206d65737360448201527f6167652e204f6e6c792063726f73732d646f6d61696e20636f756e746572706160648201527f72742063616e2063616c6c20746869732066756e6374696f6e2e000000000000608482015260a490fd5b634e487b7160e01b600052604160045260246000fd5b90601f01601f1916810190811067ffffffffffffffff8211176106b957604052565b610681565b801515610159565b90505190610123826106be565b906020828203126100d2576100ec916106c6565b91602061012392949361070260408201966000830190610106565b0152565b6040513d6000823e3d90fd5b905051906101238261019e565b906020828203126100d2576100ec91610712565b6100ec6100ec6100ec9290565b61010f90610733565b90826000939282370152565b91906107738161076c816105e59560209181520190565b8095610749565b601f01601f191690565b969492909899979593916101208801996000890161079a91610106565b602088016107a791610740565b6040870152606086016107b991610106565b608085016107c691610106565b60a084015260c083015260e08201528083039061010001526100ec92610755565b60009591929694939461080f3361080961045161080460026103e7565b6100e0565b146105e9565b84602061083b7f000000000000000000000000000000000000000000000000000000000000000061030f565b63095ea7b39061088961086d7f000000000000000000000000000000000000000000000000000000000000000061030f565b9b8c9361089461087c60405190565b9788968795869460e01b90565b8452600484016106e7565b03925af180156109255761092a575b5063549e842692600095306108b79061030f565b976108c188610418565b9a6108cb60405190565b9b8c9a8b998a9960e01b8a528b60048b01996108e69a61077d565b03915a94602095f18015610925576108fb5750565b61091b9060203d811161091e575b6109138183610697565b81019061071f565b50565b503d610909565b610706565b61094a9060203d811161094f575b6109428183610697565b8101906106d3565b6108a3565b503d610938565b906101239161096361043b565b60209061098f7f000000000000000000000000000000000000000000000000000000000000000061030f565b610889600063a9059cbb6109a561087c60405190565b03925af18015610925576109b65750565b61091b9060203d811161094f576109428183610697565b9061012391610956565b610123906109e361043b565b6101239060026104b6565b610123906109d756fea26469706673582212208e14c74a4ff8ea5e90a37a2dc41b6e9cc5cc8541644ee676c4de9a613a50ca8f64736f6c63430008140033000000000000000000000000990a3402f3358a1ac9886c42d12a5c47ad97cb940000000000000000000000006cb8cc1e323357af5da49d90fcb7160b7f09e6cd
Deployed Bytecode
0x6080604052600436101561001257600080fd5b60003560e01c806342e2944c146100c2578063459c2d0e146100bd57806361bfd0b0146100b8578063715018a6146100b357806379ba5097146100ae5780638da5cb5b146100a9578063990dc9db146100a45780639e2228c81461009f578063ac7ad9ba1461009a578063e30c3978146100955763f2fde38b036100d2576103c6565b6103ab565b610372565b610331565b6102d9565b61029b565b610283565b61026b565b610251565b610181565b610125565b60009103126100d257565b600080fd5b6100ec916008021c5b6001600160a01b031690565b90565b906100ec91546100d7565b6100ec600060026100ef565b61010f906100e0565b9052565b6020810192916101239190610106565b565b346100d2576101353660046100c7565b61014c6101406100fa565b60405191829182610113565b0390f35b610159816100e0565b036100d257565b9050359061012382610150565b906020828203126100d2576100ec91610160565b346100d25761019961019436600461016d565b6109ee565b604051005b80610159565b905035906101238261019e565b909182601f830112156100d25781359167ffffffffffffffff83116100d25760200192600183028401116100d257565b9160c0838303126100d2576101f68284610160565b9261020483602083016101a4565b9261021281604084016101a4565b9261022082606085016101a4565b9261022e83608083016101a4565b9260a082013567ffffffffffffffff81116100d25761024d92016101b1565b9091565b61019961025f3660046101e1565b959490949391936107e7565b346100d25761027b3660046100c7565b610199610433565b346100d2576102933660046100c7565b6101996105c2565b346100d2576102ab3660046100c7565b61014c6101406103f1565b91906040838203126100d2576100ec906102d08185610160565b936020016101a4565b346100d2576101996102ec3660046102b6565b906109cd565b6100ec906100e0906001600160a01b031682565b6100ec906102f2565b6100ec90610306565b61010f9061030f565b6020810192916101239190610318565b346100d2576103413660046100c7565b61014c7f000000000000000000000000990a3402f3358a1ac9886c42d12a5c47ad97cb945b60405191829182610321565b346100d2576103823660046100c7565b61014c7f0000000000000000000000006cb8cc1e323357af5da49d90fcb7160b7f09e6cd610366565b346100d2576103bb3660046100c7565b61014c610140610486565b346100d2576101996103d936600461016d565b610528565b6100ec906100e0565b6100ec90546103de565b6100ec60006103e7565b61040361043b565b610123610421565b6100e06100ec6100ec9290565b6100ec9061040b565b61012361042e6000610418565b61056f565b6101236103fb565b6104436103f1565b3390610457610451836100e0565b916100e0565b0361045f5750565b6104829061046c60405190565b63118cdaa760e01b815291829160048301610113565b0390fd5b6100ec60016103e7565b6101239061049c61043b565b6104d1565b906001600160a01b03905b9181191691161790565b906104c66100ec6104cd9261030f565b82546104a1565b9055565b6104dc8160016104b6565b6104e46103f1565b906105186105127f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e227009361030f565b9161030f565b9161052260405190565b600090a3565b61012390610490565b916001600160a01b0360089290920291821b911b6104ac565b919061055b6100ec6104cd9361030f565b908354610531565b6101239160009161054a565b6101239061057f60006001610563565b61058960006103e7565b906105958160006104b6565b6105186105127f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09361030f565b336105cb610486565b6105d7610451836100e0565b0361045f576101239061056f565b0190565b156105f057565b60405162461bcd60e51b815260206004820152605a60248201527f4e6f7420617574686f72697a65642063726f73732d646f6d61696e206d65737360448201527f6167652e204f6e6c792063726f73732d646f6d61696e20636f756e746572706160648201527f72742063616e2063616c6c20746869732066756e6374696f6e2e000000000000608482015260a490fd5b634e487b7160e01b600052604160045260246000fd5b90601f01601f1916810190811067ffffffffffffffff8211176106b957604052565b610681565b801515610159565b90505190610123826106be565b906020828203126100d2576100ec916106c6565b91602061012392949361070260408201966000830190610106565b0152565b6040513d6000823e3d90fd5b905051906101238261019e565b906020828203126100d2576100ec91610712565b6100ec6100ec6100ec9290565b61010f90610733565b90826000939282370152565b91906107738161076c816105e59560209181520190565b8095610749565b601f01601f191690565b969492909899979593916101208801996000890161079a91610106565b602088016107a791610740565b6040870152606086016107b991610106565b608085016107c691610106565b60a084015260c083015260e08201528083039061010001526100ec92610755565b60009591929694939461080f3361080961045161080460026103e7565b6100e0565b146105e9565b84602061083b7f0000000000000000000000006cb8cc1e323357af5da49d90fcb7160b7f09e6cd61030f565b63095ea7b39061088961086d7f000000000000000000000000990a3402f3358a1ac9886c42d12a5c47ad97cb9461030f565b9b8c9361089461087c60405190565b9788968795869460e01b90565b8452600484016106e7565b03925af180156109255761092a575b5063549e842692600095306108b79061030f565b976108c188610418565b9a6108cb60405190565b9b8c9a8b998a9960e01b8a528b60048b01996108e69a61077d565b03915a94602095f18015610925576108fb5750565b61091b9060203d811161091e575b6109138183610697565b81019061071f565b50565b503d610909565b610706565b61094a9060203d811161094f575b6109428183610697565b8101906106d3565b6108a3565b503d610938565b906101239161096361043b565b60209061098f7f0000000000000000000000006cb8cc1e323357af5da49d90fcb7160b7f09e6cd61030f565b610889600063a9059cbb6109a561087c60405190565b03925af18015610925576109b65750565b61091b9060203d811161094f576109428183610697565b9061012391610956565b610123906109e361043b565b6101239060026104b6565b610123906109d756fea26469706673582212208e14c74a4ff8ea5e90a37a2dc41b6e9cc5cc8541644ee676c4de9a613a50ca8f64736f6c63430008140033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.