More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 42 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Swap Tokens For ... | 17989199 | 463 days ago | IN | 0 ETH | 0.00045962 | ||||
Remove Liquidity... | 17945340 | 469 days ago | IN | 0 ETH | 0.00032661 | ||||
Remove Liquidity... | 17945326 | 469 days ago | IN | 0 ETH | 0.00036153 | ||||
Swap Exact Token... | 17713626 | 501 days ago | IN | 0 ETH | 0.0007369 | ||||
Swap Exact Token... | 17713623 | 501 days ago | IN | 0 ETH | 0.00071413 | ||||
Swap Exact Token... | 17538432 | 526 days ago | IN | 0 ETH | 0.00038916 | ||||
Swap Exact Token... | 17538430 | 526 days ago | IN | 0 ETH | 0.00036704 | ||||
Swap Exact Token... | 17538415 | 526 days ago | IN | 0 ETH | 0.00034128 | ||||
Swap Exact Token... | 17521083 | 528 days ago | IN | 0 ETH | 0.0003554 | ||||
Swap Exact Token... | 17521077 | 528 days ago | IN | 0 ETH | 0.00036644 | ||||
Swap Exact Token... | 17521074 | 528 days ago | IN | 0 ETH | 0.00037683 | ||||
Swap Exact Token... | 17502064 | 531 days ago | IN | 0 ETH | 0.00035269 | ||||
Swap Exact Token... | 17449853 | 538 days ago | IN | 0 ETH | 0.00041932 | ||||
Swap Exact Token... | 17368745 | 550 days ago | IN | 0 ETH | 0.00058585 | ||||
Swap Exact Token... | 17352970 | 552 days ago | IN | 0 ETH | 0.00049487 | ||||
Swap Exact Token... | 17348118 | 553 days ago | IN | 0 ETH | 0.00074219 | ||||
Swap Exact Token... | 17324592 | 556 days ago | IN | 0 ETH | 0.00107541 | ||||
Swap Exact Token... | 17319805 | 557 days ago | IN | 0 ETH | 0.00097229 | ||||
Swap Exact Token... | 17318027 | 557 days ago | IN | 0 ETH | 0.00078504 | ||||
Swap Exact Token... | 17311489 | 558 days ago | IN | 0 ETH | 0.00068851 | ||||
Swap Exact Token... | 17311330 | 558 days ago | IN | 0 ETH | 0.00081074 | ||||
Swap Exact Token... | 17310317 | 558 days ago | IN | 0 ETH | 0.0011165 | ||||
Swap Exact Token... | 17310286 | 558 days ago | IN | 0 ETH | 0.00088618 | ||||
Swap Exact Token... | 17309709 | 558 days ago | IN | 0 ETH | 0.00112715 | ||||
Swap Exact Token... | 17307698 | 558 days ago | IN | 0 ETH | 0.00061599 |
Latest 25 internal transactions (View All)
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
TokenFactory
Compiler Version
v0.7.5+commit.eb77ed08
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-15 */ // File: contracts/upgradeability/Proxy.sol pragma solidity 0.7.5; /** * @title Proxy * @dev Gives the possibility to delegate any call to a foreign implementation. */ abstract contract Proxy { /** * @dev Tells the address of the implementation where every call will be delegated. * @return address of the implementation to which it will be delegated */ function implementation() public view virtual returns (address); /** * @dev Fallback function allowing to perform a delegatecall to the given implementation. * This function will return whatever the implementation call returns */ fallback() external payable { // solhint-disable-previous-line no-complex-fallback address _impl = implementation(); require(_impl != address(0)); assembly { /* 0x40 is the "free memory slot", meaning a pointer to next slot of empty memory. mload(0x40) loads the data in the free memory slot, so `ptr` is a pointer to the next slot of empty memory. It's needed because we're going to write the return data of delegatecall to the free memory slot. */ let ptr := mload(0x40) /* `calldatacopy` is copy calldatasize bytes from calldata First argument is the destination to which data is copied(ptr) Second argument specifies the start position of the copied data. Since calldata is sort of its own unique location in memory, 0 doesn't refer to 0 in memory or 0 in storage - it just refers to the zeroth byte of calldata. That's always going to be the zeroth byte of the function selector. Third argument, calldatasize, specifies how much data will be copied. calldata is naturally calldatasize bytes long (same thing as msg.data.length) */ calldatacopy(ptr, 0, calldatasize()) /* delegatecall params explained: gas: the amount of gas to provide for the call. `gas` is an Opcode that gives us the amount of gas still available to execution _impl: address of the contract to delegate to ptr: to pass copied data calldatasize: loads the size of `bytes memory data`, same as msg.data.length 0, 0: These are for the `out` and `outsize` params. Because the output could be dynamic, these are set to 0, 0 so the output data will not be written to memory. The output data will be read using `returndatasize` and `returdatacopy` instead. result: This will be 0 if the call fails and 1 if it succeeds */ let result := delegatecall(gas(), _impl, ptr, calldatasize(), 0, 0) /* */ /* ptr current points to the value stored at 0x40, because we assigned it like ptr := mload(0x40). Because we use 0x40 as a free memory pointer, we want to make sure that the next time we want to allocate memory, we aren't overwriting anything important. So, by adding ptr and returndatasize, we get a memory location beyond the end of the data we will be copying to ptr. We place this in at 0x40, and any reads from 0x40 will now read from free memory */ mstore(0x40, add(ptr, returndatasize())) /* `returndatacopy` is an Opcode that copies the last return data to a slot. `ptr` is the slot it will copy to, 0 means copy from the beginning of the return data, and size is the amount of data to copy. `returndatasize` is an Opcode that gives us the size of the last return data. In this case, that is the size of the data returned from delegatecall */ returndatacopy(ptr, 0, returndatasize()) /* if `result` is 0, revert. if `result` is 1, return `size` amount of data from `ptr`. This is the data that was copied to `ptr` from the delegatecall return data */ switch result case 0 { revert(ptr, returndatasize()) } default { return(ptr, returndatasize()) } } } } // File: contracts/upgradeable_contracts/modules/factory/TokenProxy.sol pragma solidity 0.7.5; interface IPermittableTokenVersion { function version() external pure returns (string memory); } /** * @title TokenProxy * @dev Helps to reduces the size of the deployed bytecode for automatically created tokens, by using a proxy contract. */ contract TokenProxy is Proxy { // storage layout is copied from PermittableToken.sol string internal name; string internal symbol; uint8 internal decimals; mapping(address => uint256) internal balances; uint256 internal totalSupply; mapping(address => mapping(address => uint256)) internal allowed; address internal owner; bool internal mintingFinished; address internal bridgeContractAddr; // string public constant version = "1"; bytes32 internal DOMAIN_SEPARATOR; // bytes32 public constant PERMIT_TYPEHASH = 0xea2aa0a1be11a07ed86d755c93467f4f82362b452371d1ba94d1715123511acb; mapping(address => uint256) internal nonces; mapping(address => mapping(address => uint256)) internal expirations; /** * @dev Creates a non-upgradeable token proxy for PermitableToken.sol, initializes its eternalStorage. * @param _tokenImage address of the token image used for mirroring all functions. * @param _name token name. * @param _symbol token symbol. * @param _decimals token decimals. * @param _chainId chain id for current network. * @param _owner address of the owner for this contract. */ constructor( address _tokenImage, string memory _name, string memory _symbol, uint8 _decimals, uint256 _chainId, address _owner ) { string memory version = IPermittableTokenVersion(_tokenImage).version(); assembly { // EIP 1967 // bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1) sstore(0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc, _tokenImage) } name = _name; symbol = _symbol; decimals = _decimals; owner = _owner; // _owner == HomeOmnibridge/ForeignOmnibridge mediator bridgeContractAddr = _owner; DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes(_name)), keccak256(bytes(version)), _chainId, address(this) ) ); } /** * @dev Retrieves the implementation contract address, mirrored token image. * @return impl token image address. */ function implementation() public view override returns (address impl) { assembly { impl := sload(0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc) } } /** * @dev Tells the current version of the token proxy interfaces. */ function getTokenProxyInterfacesVersion() external pure returns ( uint64 major, uint64 minor, uint64 patch ) { return (1, 0, 0); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.7.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: contracts/upgradeable_contracts/modules/OwnableModule.sol pragma solidity 0.7.5; /** * @title OwnableModule * @dev Common functionality for multi-token extension non-upgradeable module. */ contract OwnableModule { address public owner; /** * @dev Initializes this contract. * @param _owner address of the owner that is allowed to perform additional actions on the particular module. */ constructor(address _owner) { owner = _owner; } /** * @dev Throws if sender is not the owner of this contract. */ modifier onlyOwner { require(msg.sender == owner); _; } /** * @dev Changes the owner of this contract. * @param _newOwner address of the new owner. */ function transferOwnership(address _newOwner) external onlyOwner { owner = _newOwner; } } // File: contracts/upgradeable_contracts/modules/factory/TokenFactory.sol pragma solidity 0.7.5; /** * @title TokenFactory * @dev Factory contract for deployment of new TokenProxy contracts. */ contract TokenFactory is OwnableModule { address public tokenImage; /** * @dev Initializes this contract * @param _owner of this factory contract. * @param _tokenImage address of the token image contract that should be used for creation of new tokens. */ constructor(address _owner, address _tokenImage) OwnableModule(_owner) { tokenImage = _tokenImage; } /** * @dev Tells the module interface version that this contract supports. * @return major value of the version * @return minor value of the version * @return patch value of the version */ function getModuleInterfacesVersion() external pure returns ( uint64 major, uint64 minor, uint64 patch ) { return (1, 0, 0); } /** * @dev Updates the address of the used token image contract. * Only owner can call this method. * @param _tokenImage address of the new token image used for further deployments. */ function setTokenImage(address _tokenImage) external onlyOwner { require(Address.isContract(_tokenImage)); tokenImage = _tokenImage; } /** * @dev Deploys a new TokenProxy contract, using saved token image contract as a template. * @param _name deployed token name. * @param _symbol deployed token symbol. * @param _decimals deployed token decimals. * @param _chainId chain id of the current environment. * @return address of a newly created contract. */ function deploy( string calldata _name, string calldata _symbol, uint8 _decimals, uint256 _chainId ) external returns (address) { return address(new TokenProxy(tokenImage, _name, _symbol, _decimals, _chainId, msg.sender)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_tokenImage","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"uint256","name":"_chainId","type":"uint256"}],"name":"deploy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getModuleInterfacesVersion","outputs":[{"internalType":"uint64","name":"major","type":"uint64"},{"internalType":"uint64","name":"minor","type":"uint64"},{"internalType":"uint64","name":"patch","type":"uint64"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenImage","type":"address"}],"name":"setTokenImage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenImage","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051610a38380380610a388339818101604052604081101561003357600080fd5b508051602090910151600080546001600160a01b039384166001600160a01b031991821617909155600180549390921692169190911790556109be8061007a6000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631fa2195f1461006757806381e1351f1461008f5780638da5cb5b146100c3578063a39d6acf146100e7578063c1aef4f2146101b2578063f2fde38b146101ba575b600080fd5b61008d6004803603602081101561007d57600080fd5b50356001600160a01b03166101e0565b005b61009761022b565b6040805167ffffffffffffffff9485168152928416602084015292168183015290519081900360600190f35b6100cb610234565b604080516001600160a01b039092168252519081900360200190f35b6100cb600480360360808110156100fd57600080fd5b81019060208101813564010000000081111561011857600080fd5b82018360208201111561012a57600080fd5b8035906020019184600183028401116401000000008311171561014c57600080fd5b91939092909160208101903564010000000081111561016a57600080fd5b82018360208201111561017c57600080fd5b8035906020019184600183028401116401000000008311171561019e57600080fd5b919350915060ff8135169060200135610243565b6100cb61031b565b61008d600480360360208110156101d057600080fd5b50356001600160a01b031661032a565b6000546001600160a01b031633146101f757600080fd5b61020081610363565b61020957600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60016000809192565b6000546001600160a01b031681565b6000600160009054906101000a90046001600160a01b03168787878787873360405161026e9061039f565b6001600160a01b03808a16825260ff8516606083015260808201849052821660a082015260c0602082018181529082018890526040820160e083018a8a80828437600083820152601f01601f1916909101848103835288815260200190508888808284376000838201819052604051601f909201601f19169093018190039d509b50909950505050505050505050f08015801561030f573d6000803e3d6000fd5b50979650505050505050565b6001546001600160a01b031681565b6000546001600160a01b0316331461034157600080fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061039757508115155b949350505050565b6105dc806103ad8339019056fe608060405234801561001057600080fd5b506040516105dc3803806105dc833981810160405260c081101561003357600080fd5b81516020830180516040519294929383019291908464010000000082111561005a57600080fd5b90830190602082018581111561006f57600080fd5b825164010000000081118282018810171561008957600080fd5b82525081516020918201929091019080838360005b838110156100b657818101518382015260200161009e565b50505050905090810190601f1680156100e35780820380516001836020036101000a031916815260200191505b506040526020018051604051939291908464010000000082111561010657600080fd5b90830190602082018581111561011b57600080fd5b825164010000000081118282018810171561013557600080fd5b82525081516020918201929091019080838360005b8381101561016257818101518382015260200161014a565b50505050905090810190601f16801561018f5780820380516001836020036101000a031916815260200191505b50604081815260208301518382015160609485015163054fd4d560e41b8552925191965094509092916001600160a01b038916916354fd4d5091600480820192600092909190829003018186803b1580156101e957600080fd5b505afa1580156101fd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561022657600080fd5b810190808051604051939291908464010000000082111561024657600080fd5b90830190602082018581111561025b57600080fd5b825164010000000081118282018810171561027557600080fd5b82525081516020918201929091019080838360005b838110156102a257818101518382015260200161028a565b50505050905090810190601f1680156102cf5780820380516001836020036101000a031916815260200191505b506040525050507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc88905586519091506103109060009060208901906103e4565b5084516103249060019060208801906103e4565b506002805460ff90951660ff1990951694909417909355600680546001600160a01b039092166001600160a01b03199283168117909155600780549092161790558351602094850120825192850192909220604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8188015280820194909452606084019190915260808301919091523060a0808401919091528151808403909101815260c090920190528051920191909120600855506104859050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261041a5760008555610460565b82601f1061043357805160ff1916838001178555610460565b82800160010185558215610460579182015b82811115610460578251825591602001919060010190610445565b5061046c929150610470565b5090565b5b8082111561046c5760008155600101610471565b610148806104946000396000f3fe6080604052600436106100295760003560e01c80632f95b6aa146100725780635c60da1b146100b3575b60006100336100e4565b90506001600160a01b03811661004857600080fd5b60405136600082376000803683855af43d82016040523d6000833e80801561006e573d83f35b3d83fd5b34801561007e57600080fd5b50610087610109565b6040805167ffffffffffffffff9485168152928416602084015292168183015290519081900360600190f35b3480156100bf57600080fd5b506100c86100e4565b604080516001600160a01b039092168252519081900360200190f35b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6001600080919256fea264697066735822122040db1113837ecb2e0e28391d7311689866d1e7f80d4b14dc5df8ed9778f95c0d64736f6c63430007050033a26469706673582212202e690c9099f9b71b8513c2ce41e8134b0ecf9e51e4824a8cdcd181c63182d14d64736f6c63430007050033000000000000000000000000610094ab29d1bf683719d2ce3495d8635a47bfc6000000000000000000000000a1077a294dde1b09bb078844df40758a5d0f9a27
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100625760003560e01c80631fa2195f1461006757806381e1351f1461008f5780638da5cb5b146100c3578063a39d6acf146100e7578063c1aef4f2146101b2578063f2fde38b146101ba575b600080fd5b61008d6004803603602081101561007d57600080fd5b50356001600160a01b03166101e0565b005b61009761022b565b6040805167ffffffffffffffff9485168152928416602084015292168183015290519081900360600190f35b6100cb610234565b604080516001600160a01b039092168252519081900360200190f35b6100cb600480360360808110156100fd57600080fd5b81019060208101813564010000000081111561011857600080fd5b82018360208201111561012a57600080fd5b8035906020019184600183028401116401000000008311171561014c57600080fd5b91939092909160208101903564010000000081111561016a57600080fd5b82018360208201111561017c57600080fd5b8035906020019184600183028401116401000000008311171561019e57600080fd5b919350915060ff8135169060200135610243565b6100cb61031b565b61008d600480360360208110156101d057600080fd5b50356001600160a01b031661032a565b6000546001600160a01b031633146101f757600080fd5b61020081610363565b61020957600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60016000809192565b6000546001600160a01b031681565b6000600160009054906101000a90046001600160a01b03168787878787873360405161026e9061039f565b6001600160a01b03808a16825260ff8516606083015260808201849052821660a082015260c0602082018181529082018890526040820160e083018a8a80828437600083820152601f01601f1916909101848103835288815260200190508888808284376000838201819052604051601f909201601f19169093018190039d509b50909950505050505050505050f08015801561030f573d6000803e3d6000fd5b50979650505050505050565b6001546001600160a01b031681565b6000546001600160a01b0316331461034157600080fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061039757508115155b949350505050565b6105dc806103ad8339019056fe608060405234801561001057600080fd5b506040516105dc3803806105dc833981810160405260c081101561003357600080fd5b81516020830180516040519294929383019291908464010000000082111561005a57600080fd5b90830190602082018581111561006f57600080fd5b825164010000000081118282018810171561008957600080fd5b82525081516020918201929091019080838360005b838110156100b657818101518382015260200161009e565b50505050905090810190601f1680156100e35780820380516001836020036101000a031916815260200191505b506040526020018051604051939291908464010000000082111561010657600080fd5b90830190602082018581111561011b57600080fd5b825164010000000081118282018810171561013557600080fd5b82525081516020918201929091019080838360005b8381101561016257818101518382015260200161014a565b50505050905090810190601f16801561018f5780820380516001836020036101000a031916815260200191505b50604081815260208301518382015160609485015163054fd4d560e41b8552925191965094509092916001600160a01b038916916354fd4d5091600480820192600092909190829003018186803b1580156101e957600080fd5b505afa1580156101fd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561022657600080fd5b810190808051604051939291908464010000000082111561024657600080fd5b90830190602082018581111561025b57600080fd5b825164010000000081118282018810171561027557600080fd5b82525081516020918201929091019080838360005b838110156102a257818101518382015260200161028a565b50505050905090810190601f1680156102cf5780820380516001836020036101000a031916815260200191505b506040525050507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc88905586519091506103109060009060208901906103e4565b5084516103249060019060208801906103e4565b506002805460ff90951660ff1990951694909417909355600680546001600160a01b039092166001600160a01b03199283168117909155600780549092161790558351602094850120825192850192909220604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8188015280820194909452606084019190915260808301919091523060a0808401919091528151808403909101815260c090920190528051920191909120600855506104859050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261041a5760008555610460565b82601f1061043357805160ff1916838001178555610460565b82800160010185558215610460579182015b82811115610460578251825591602001919060010190610445565b5061046c929150610470565b5090565b5b8082111561046c5760008155600101610471565b610148806104946000396000f3fe6080604052600436106100295760003560e01c80632f95b6aa146100725780635c60da1b146100b3575b60006100336100e4565b90506001600160a01b03811661004857600080fd5b60405136600082376000803683855af43d82016040523d6000833e80801561006e573d83f35b3d83fd5b34801561007e57600080fd5b50610087610109565b6040805167ffffffffffffffff9485168152928416602084015292168183015290519081900360600190f35b3480156100bf57600080fd5b506100c86100e4565b604080516001600160a01b039092168252519081900360200190f35b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6001600080919256fea264697066735822122040db1113837ecb2e0e28391d7311689866d1e7f80d4b14dc5df8ed9778f95c0d64736f6c63430007050033a26469706673582212202e690c9099f9b71b8513c2ce41e8134b0ecf9e51e4824a8cdcd181c63182d14d64736f6c63430007050033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000610094ab29d1bf683719d2ce3495d8635a47bfc6000000000000000000000000a1077a294dde1b09bb078844df40758a5d0f9a27
-----Decoded View---------------
Arg [0] : _owner (address): 0x610094aB29D1bf683719d2Ce3495d8635A47bfc6
Arg [1] : _tokenImage (address): 0xA1077a294dDE1B09bB078844df40758a5D0f9a27
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000610094ab29d1bf683719d2ce3495d8635a47bfc6
Arg [1] : 000000000000000000000000a1077a294dde1b09bb078844df40758a5d0f9a27
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.