More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 4,438 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Upgrade To | 21491137 | 37 days ago | IN | 0 ETH | 0.00012253 | ||||
0xb0b6cf75 | 21486719 | 38 days ago | IN | 0.00041415 ETH | 0.00071527 | ||||
0xc4c15cdb | 21486654 | 38 days ago | IN | 0 ETH | 0.00298779 | ||||
0xc4c15cdb | 21470511 | 40 days ago | IN | 0 ETH | 0.00211336 | ||||
0xb0b6cf75 | 21470391 | 40 days ago | IN | 0 ETH | 0.00062052 | ||||
0xc4c15cdb | 21470371 | 40 days ago | IN | 0 ETH | 0.00172581 | ||||
0xb0b6cf75 | 21470322 | 40 days ago | IN | 0 ETH | 0.00076464 | ||||
0xc4c15cdb | 21470273 | 40 days ago | IN | 0 ETH | 0.00230311 | ||||
0xb0b6cf75 | 21470006 | 40 days ago | IN | 0.00000024 ETH | 0.00076651 | ||||
0xb2c9fdf8 | 21469952 | 40 days ago | IN | 0 ETH | 0.00046096 | ||||
0x8a18bc30 | 21455014 | 42 days ago | IN | 0.00003697 ETH | 0.00074273 | ||||
0x8a18bc30 | 21455006 | 42 days ago | IN | 0.00003697 ETH | 0.00075599 | ||||
0x8a18bc30 | 21455003 | 42 days ago | IN | 0.00003697 ETH | 0.00069123 | ||||
0x8a18bc30 | 21454475 | 42 days ago | IN | 0.00003706 ETH | 0.00090629 | ||||
0x8a18bc30 | 21454460 | 42 days ago | IN | 0.00003706 ETH | 0.00107492 | ||||
0xc4c15cdb | 21441557 | 44 days ago | IN | 0 ETH | 0.00426902 | ||||
0xc4c15cdb | 21436482 | 45 days ago | IN | 0 ETH | 0.00523261 | ||||
0xc4c15cdb | 21436429 | 45 days ago | IN | 0 ETH | 0.00417286 | ||||
0xc4c15cdb | 21428109 | 46 days ago | IN | 0 ETH | 0.00339167 | ||||
0xc4c15cdb | 21426759 | 46 days ago | IN | 0 ETH | 0.00312523 | ||||
Upgrade To | 21426488 | 46 days ago | IN | 0 ETH | 0.00036379 | ||||
0xb0b6cf75 | 21304944 | 63 days ago | IN | 0.00000023 ETH | 0.00056531 | ||||
Upgrade To | 21256148 | 70 days ago | IN | 0 ETH | 0.00026207 | ||||
0xc4c15cdb | 21253973 | 70 days ago | IN | 0 ETH | 0.00451775 | ||||
0xc4c15cdb | 21253946 | 70 days ago | IN | 0 ETH | 0.00571179 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21486719 | 38 days ago | 0.00041415 ETH | ||||
21470391 | 40 days ago | 0 ETH | ||||
21470322 | 40 days ago | 0 ETH | ||||
21470006 | 40 days ago | 0.00000024 ETH | ||||
21455014 | 42 days ago | 0.00003697 ETH | ||||
21455006 | 42 days ago | 0.00003697 ETH | ||||
21455003 | 42 days ago | 0.00003697 ETH | ||||
21454475 | 42 days ago | 0.00003706 ETH | ||||
21454460 | 42 days ago | 0.00003706 ETH | ||||
21428018 | 46 days ago | 0.00000121 ETH | ||||
21428018 | 46 days ago | 0.00000121 ETH | ||||
21304944 | 63 days ago | 0.00000023 ETH | ||||
21297120 | 64 days ago | 0.00000123 ETH | ||||
21297120 | 64 days ago | 0.00000123 ETH | ||||
21296877 | 64 days ago | 0.00000123 ETH | ||||
21296877 | 64 days ago | 0.00000123 ETH | ||||
21251848 | 71 days ago | 0.00000024 ETH | ||||
21249017 | 71 days ago | 0.00040131 ETH | ||||
21242145 | 72 days ago | 0.00000025 ETH | ||||
21219247 | 75 days ago | 0.00004465 ETH | ||||
21168740 | 82 days ago | 0.00000153 ETH | ||||
21163617 | 83 days ago | 0.00004476 ETH | ||||
21157258 | 84 days ago | 0 ETH | ||||
21157247 | 84 days ago | 0.00000033 ETH | ||||
21157233 | 84 days ago | 0.00000033 ETH |
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 Source Code Verified (Exact Match)
Contract Name:
RPGTokenProxy
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-07-25 */ pragma solidity ^0.5.17; // File: zos-lib/contracts/upgradeability/Proxy.sol /** * @title Proxy * @dev Implements delegation of calls to other contracts, with proper * forwarding of return values and bubbling of failures. * It defines a fallback function that delegates all calls to the address * returned by the abstract _implementation() internal function. */ contract Proxy { /** * @dev Fallback function. * Implemented entirely in `_fallback`. */ function () payable external { _fallback(); } /** * @return The Address of the implementation. */ function _implementation() internal view returns (address); /** * @dev Delegates execution to an implementation contract. * This is a low level function that doesn't return to its internal call site. * It will return to the external caller whatever the implementation returns. * @param implementation Address to delegate. */ function _delegate(address implementation) internal { assembly { let ptr := mload(0x00) // Copy msg.data. We take full control of memory in this inline assembly // block because it will not return to Solidity code. We overwrite the // Solidity scratch pad at memory position 0. calldatacopy(ptr, 0, calldatasize) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall(gas, implementation, ptr, calldatasize, 0, 0) // Copy the returned data. returndatacopy(ptr, 0, returndatasize) switch result // delegatecall returns 0 on error. case 0 { revert(ptr, returndatasize) } default { return(ptr, returndatasize) } } } /** * @dev Function that is run as the first thing in the fallback function. * Can be redefined in derived contracts to add functionality. * Redefinitions must call super._willFallback(). */ function _willFallback() internal { } /** * @dev fallback implementation. * Extracted to enable manual triggering. */ function _fallback() internal { _willFallback(); _delegate(_implementation()); } } // File: openzeppelin-solidity/contracts/AddressUtils.sol /** * Utility library of inline functions on addresses */ library AddressUtils { /** * Returns whether the target address is a contract * @dev This function will return false if invoked during the constructor of a contract, * as the code is not actually created until after the constructor finishes. * @param addr address to check * @return whether the target address is a contract */ function isContract(address addr) internal view returns (bool) { uint256 size; // XXX Currently there is no better way to check if there is a contract in an address // than to check the size of the code at that address. // See https://ethereum.stackexchange.com/a/14016/36603 // for more details about how this works. // TODO Check this again before the Serenity release, because all addresses will be // contracts then. // solium-disable-next-line security/no-inline-assembly assembly { size := extcodesize(addr) } return size > 0; } } // File: zos-lib/contracts/upgradeability/UpgradeabilityProxy.sol /** * @title UpgradeabilityProxy * @dev This contract implements a proxy that allows to change the * implementation address to which it will delegate. * Such a change is called an implementation upgrade. */ contract UpgradeabilityProxy is Proxy { /** * @dev Emitted when the implementation is upgraded. * @param implementation Address of the new implementation. */ event Upgraded(address implementation); /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "org.zeppelinos.proxy.implementation", and is * validated in the constructor. */ bytes32 private constant IMPLEMENTATION_SLOT = 0x7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c3; /** * @dev Contract constructor. * @param _implementation Address of the initial implementation. */ constructor(address _implementation) public { assert(IMPLEMENTATION_SLOT == keccak256("org.zeppelinos.proxy.implementation")); _setImplementation(_implementation); } /** * @dev Returns the current implementation. * @return Address of the current implementation */ function _implementation() internal view returns (address impl) { bytes32 slot = IMPLEMENTATION_SLOT; assembly { impl := sload(slot) } } /** * @dev Upgrades the proxy to a new implementation. * @param newImplementation Address of the new implementation. */ function _upgradeTo(address newImplementation) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); } /** * @dev Sets the implementation address of the proxy. * @param newImplementation Address of the new implementation. */ function _setImplementation(address newImplementation) private { require(AddressUtils.isContract(newImplementation), "Cannot set a proxy implementation to a non-contract address"); bytes32 slot = IMPLEMENTATION_SLOT; assembly { sstore(slot, newImplementation) } } } // File: zos-lib/contracts/upgradeability/AdminUpgradeabilityProxy.sol /** * @title AdminUpgradeabilityProxy * @dev This contract combines an upgradeability proxy with an authorization * mechanism for administrative tasks. * All external functions in this contract must be guarded by the * `ifAdmin` modifier. See ethereum/solidity#3864 for a Solidity * feature proposal that would enable this to be done automatically. */ contract AdminUpgradeabilityProxy is UpgradeabilityProxy { /** * @dev Emitted when the administration has been transferred. * @param previousAdmin Address of the previous admin. * @param newAdmin Address of the new admin. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "org.zeppelinos.proxy.admin", and is * validated in the constructor. */ bytes32 private constant ADMIN_SLOT = 0x10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b; /** * @dev Modifier to check whether the `msg.sender` is the admin. * If it is, it will run the function. Otherwise, it will delegate the call * to the implementation. */ modifier ifAdmin() { if (msg.sender == _admin()) { _; } else { _fallback(); } } /** * Contract constructor. * It sets the `msg.sender` as the proxy administrator. * @param _implementation address of the initial implementation. */ constructor(address _implementation) UpgradeabilityProxy(_implementation) public { assert(ADMIN_SLOT == keccak256("org.zeppelinos.proxy.admin")); _setAdmin(msg.sender); } /** * @return The address of the proxy admin. */ function admin() external view returns (address) { return _admin(); } /** * @return The address of the implementation. */ function implementation() external view returns (address) { return _implementation(); } /** * @dev Changes the admin of the proxy. * Only the current admin can call this function. * @param newAdmin Address to transfer proxy administration to. */ function changeAdmin(address newAdmin) external ifAdmin { require(newAdmin != address(0), "Cannot change the admin of a proxy to the zero address"); emit AdminChanged(_admin(), newAdmin); _setAdmin(newAdmin); } /** * @dev Upgrade the backing implementation of the proxy. * Only the admin can call this function. * @param newImplementation Address of the new implementation. */ function upgradeTo(address newImplementation) external ifAdmin { _upgradeTo(newImplementation); } /** * @dev Upgrade the backing implementation of the proxy and call a function * on the new implementation. * This is useful to initialize the proxied contract. * @param newImplementation Address of the new implementation. * @param data Data to send as msg.data in the low level call. * It should include the signature and the parameters of the function to be * called, as described in * https://solidity.readthedocs.io/en/develop/abi-spec.html#function-selector-and-argument-encoding. */ // function upgradeToAndCall(address newImplementation, bytes data) payable external ifAdmin { // _upgradeTo(newImplementation); // require(address(this).call.value(msg.value)(data)); // } /** * @return The admin slot. */ function _admin() internal view returns (address adm) { bytes32 slot = ADMIN_SLOT; assembly { adm := sload(slot) } } /** * @dev Sets the address of the proxy admin. * @param newAdmin Address of the new proxy admin. */ function _setAdmin(address newAdmin) internal { bytes32 slot = ADMIN_SLOT; assembly { sstore(slot, newAdmin) } } /** * @dev Only fall back when the sender is not the admin. */ function _willFallback() internal { require(msg.sender != _admin(), "Cannot call fallback function from the proxy admin"); super._willFallback(); } } /** * Copyright CENTRE SECZ 2018 * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is furnished to * do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ //pragma solidity ^0.5.0; /** * @title RPGTokenProxy * @dev This contract proxies RPGToken calls and enables RPGToken upgrades */ contract RPGTokenProxy is AdminUpgradeabilityProxy { constructor(address _implementation) public AdminUpgradeabilityProxy(_implementation) { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_implementation","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5060405161092c38038061092c8339818101604052602081101561003357600080fd5b8101908080519060200190929190505050808060405180806108ce60239139602301905060405180910390207f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c360001b1461008a57fe5b6100998161011160201b60201c565b5060405180807f6f72672e7a657070656c696e6f732e70726f78792e61646d696e000000000000815250601a01905060405180910390207f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b60001b146100fb57fe5b61010a336101a860201b60201c565b50506101ea565b610124816101d760201b6105ea1760201c565b610179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b8152602001806108f1603b913960400191505060405180910390fd5b60007f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c360001b90508181555050565b60007f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b60001b90508181555050565b600080823b905060008111915050919050565b6106d5806101f96000396000f3fe60806040526004361061003f5760003560e01c80633659cfe6146100495780635c60da1b1461009a5780638f283970146100f1578063f851a44014610142575b610047610199565b005b34801561005557600080fd5b506100986004803603602081101561006c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506101b3565b005b3480156100a657600080fd5b506100af610208565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156100fd57600080fd5b506101406004803603602081101561011457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610217565b005b34801561014e57600080fd5b50610157610390565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101a161039f565b6101b16101ac610435565b610466565b565b6101bb61048c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156101fc576101f7816104bd565b610205565b610204610199565b5b50565b6000610212610435565b905090565b61021f61048c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561038457600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156102d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806106306036913960400191505060405180910390fd5b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61030161048c565b82604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a161037f8161052c565b61038d565b61038c610199565b5b50565b600061039a61048c565b905090565b6103a761048c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561042b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806105fe6032913960400191505060405180910390fd5b61043361055b565b565b6000807f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c360001b9050805491505090565b60005136600082376000803683855af43d6000833e8060008114610488573d83f35b3d83fd5b6000807f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b60001b9050805491505090565b6104c68161055d565b7fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b60007f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b60001b90508181555050565b565b610566816105ea565b6105bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b815260200180610666603b913960400191505060405180910390fd5b60007f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c360001b90508181555050565b600080823b90506000811191505091905056fe43616e6e6f742063616c6c2066616c6c6261636b2066756e6374696f6e2066726f6d207468652070726f78792061646d696e43616e6e6f74206368616e6765207468652061646d696e206f6620612070726f787920746f20746865207a65726f206164647265737343616e6e6f742073657420612070726f787920696d706c656d656e746174696f6e20746f2061206e6f6e2d636f6e74726163742061646472657373a265627a7a723158201eaafcc7de3739405e942ab8c44c15ebc0d4bc3874701fd8f5a2b801372d4d0364736f6c634300051100326f72672e7a657070656c696e6f732e70726f78792e696d706c656d656e746174696f6e43616e6e6f742073657420612070726f787920696d706c656d656e746174696f6e20746f2061206e6f6e2d636f6e74726163742061646472657373000000000000000000000000ffcef323281452f4e438f2c305789cd20d8eeff6
Deployed Bytecode
0x60806040526004361061003f5760003560e01c80633659cfe6146100495780635c60da1b1461009a5780638f283970146100f1578063f851a44014610142575b610047610199565b005b34801561005557600080fd5b506100986004803603602081101561006c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506101b3565b005b3480156100a657600080fd5b506100af610208565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156100fd57600080fd5b506101406004803603602081101561011457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610217565b005b34801561014e57600080fd5b50610157610390565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101a161039f565b6101b16101ac610435565b610466565b565b6101bb61048c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156101fc576101f7816104bd565b610205565b610204610199565b5b50565b6000610212610435565b905090565b61021f61048c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561038457600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156102d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806106306036913960400191505060405180910390fd5b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61030161048c565b82604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a161037f8161052c565b61038d565b61038c610199565b5b50565b600061039a61048c565b905090565b6103a761048c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561042b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806105fe6032913960400191505060405180910390fd5b61043361055b565b565b6000807f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c360001b9050805491505090565b60005136600082376000803683855af43d6000833e8060008114610488573d83f35b3d83fd5b6000807f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b60001b9050805491505090565b6104c68161055d565b7fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b60007f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b60001b90508181555050565b565b610566816105ea565b6105bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b815260200180610666603b913960400191505060405180910390fd5b60007f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c360001b90508181555050565b600080823b90506000811191505091905056fe43616e6e6f742063616c6c2066616c6c6261636b2066756e6374696f6e2066726f6d207468652070726f78792061646d696e43616e6e6f74206368616e6765207468652061646d696e206f6620612070726f787920746f20746865207a65726f206164647265737343616e6e6f742073657420612070726f787920696d706c656d656e746174696f6e20746f2061206e6f6e2d636f6e74726163742061646472657373a265627a7a723158201eaafcc7de3739405e942ab8c44c15ebc0d4bc3874701fd8f5a2b801372d4d0364736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ffcef323281452f4e438f2c305789cd20d8eeff6
-----Decoded View---------------
Arg [0] : _implementation (address): 0xfFcEf323281452F4E438F2C305789CD20D8eeFF6
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ffcef323281452f4e438f2c305789cd20d8eeff6
Deployed Bytecode Sourcemap
10851:155:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;524:11;:9;:11::i;:::-;10851:155;8047:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8047:105:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8047:105:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;7350:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7350:95:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7628:228;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7628:228:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7628:228:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;7204:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7204:77:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2112:93;2149:15;:13;:15::i;:::-;2171:28;2181:17;:15;:17::i;:::-;2171:9;:28::i;:::-;2112:93::o;8047:105::-;6711:8;:6;:8::i;:::-;6697:22;;:10;:22;;;6693:80;;;8117:29;8128:17;8117:10;:29::i;:::-;6693:80;;;6754:11;:9;:11::i;:::-;6693:80;8047:105;:::o;7350:95::-;7399:7;7422:17;:15;:17::i;:::-;7415:24;;7350:95;:::o;7628:228::-;6711:8;:6;:8::i;:::-;6697:22;;:10;:22;;;6693:80;;;7719:1;7699:22;;:8;:22;;;;7691:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7792:32;7805:8;:6;:8::i;:::-;7815;7792:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7831:19;7841:8;7831:9;:19::i;:::-;6693:80;;;6754:11;:9;:11::i;:::-;6693:80;7628:228;:::o;7204:77::-;7244:7;7267:8;:6;:8::i;:::-;7260:15;;7204:77;:::o;9419:160::-;9482:8;:6;:8::i;:::-;9468:22;;:10;:22;;;;9460:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9552:21;:19;:21::i;:::-;9419:160::o;4538:161::-;4588:12;4609;4051:66;4624:19;;4609:34;;4682:4;4676:11;4668:19;;4659:35;;:::o;963:792::-;1059:4;1053:11;1304:12;1301:1;1296:3;1283:34;1500:1;1497;1483:12;1478:3;1462:14;1457:3;1444:58;1569:14;1566:1;1561:3;1546:38;1601:6;1663:1;1658:38;;;;1726:14;1721:3;1714:27;1658:38;1679:14;1674:3;1667:27;8937:141;8978:11;8998:12;6404:66;9013:10;;8998:25;;9061:4;9055:11;9048:18;;9039:34;;:::o;4840:145::-;4903:37;4922:17;4903:18;:37::i;:::-;4952:27;4961:17;4952:27;;;;;;;;;;;;;;;;;;;;;;4840:145;:::o;9200:139::-;9253:12;6404:66;9268:10;;9253:25;;9318:8;9312:4;9305:22;9296:38;;:::o;1971:40::-;:::o;5128:297::-;5206:42;5230:17;5206:23;:42::i;:::-;5198:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5321:12;4051:66;5336:19;;5321:34;;5395:17;5389:4;5382:31;5373:47;;:::o;2695:587::-;2752:4;2765:12;3248:4;3236:17;3228:25;;3275:1;3268:4;:8;3261:15;;;2695:587;;;:::o
Swarm Source
bzzr://1eaafcc7de3739405e942ab8c44c15ebc0d4bc3874701fd8f5a2b801372d4d03
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.