More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 5,224 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Update Tree | 9332911 | 3 mins ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9332324 | 1 hr ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9331751 | 2 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9331164 | 3 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9330573 | 4 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9329977 | 5 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9329381 | 6 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9328789 | 7 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9328189 | 8 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9327594 | 9 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Claim | 9327359 | 9 hrs ago | IN | 0 GLMR | 0.088412 | ||||
Update Tree | 9326998 | 10 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9326402 | 11 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9325807 | 12 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9325210 | 13 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9324619 | 14 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9324023 | 15 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9323432 | 16 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9322834 | 17 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9322239 | 18 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9321640 | 19 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9321042 | 20 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9320449 | 21 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9319852 | 22 hrs ago | IN | 0 GLMR | 0.10018597 | ||||
Update Tree | 9319263 | 23 hrs ago | IN | 0 GLMR | 0.10018597 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
6523867 | 203 days ago | Contract Creation | 0 GLMR |
Loading...
Loading
Contract Name:
RewarderProxy
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at moonbeam.moonscan.io on 2024-07-09 */ // Sources flattened with hardhat v2.12.1-ir.0 https://hardhat.org // File @openzeppelin/contracts/proxy/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol) pragma solidity ^0.8.0; /** * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to * be specified by overriding the virtual {_implementation} function. * * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a * different contract through the {_delegate} function. * * The success and return data of the delegated call will be returned back to the caller of the proxy. */ abstract contract Proxy { /** * @dev Delegates the current call to `implementation`. * * This function does not return to its internal call site, it will return directly to the external caller. */ function _delegate(address implementation) internal virtual { assembly { // 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(0, 0, calldatasize()) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) // Copy the returned data. returndatacopy(0, 0, returndatasize()) switch result // delegatecall returns 0 on error. case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } /** * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function * and {_fallback} should delegate. */ function _implementation() internal view virtual returns (address); /** * @dev Delegates the current call to the address returned by `_implementation()`. * * This function does not return to its internal call site, it will return directly to the external caller. */ function _fallback() internal virtual { _beforeFallback(); _delegate(_implementation()); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other * function in the contract matches the call data. */ fallback() external payable virtual { _fallback(); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data * is empty. */ receive() external payable virtual { _fallback(); } /** * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback` * call, or as part of the Solidity `fallback` or `receive` functions. * * If overridden should call `super._beforeFallback()`. */ function _beforeFallback() internal virtual {} } pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ``` * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @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"); (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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File @openzeppelin/contracts/proxy/beacon/[email protected] // OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol) pragma solidity ^0.8.0; /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ interface IBeacon { /** * @dev Must return an address that can be used as a delegate call target. * * {BeaconProxy} will check that this address is a contract. */ function implementation() external view returns (address); } // File contracts/proxy/RewarderProxy.sol pragma solidity ^0.8.0; contract RewarderProxy is Proxy { /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor. */ bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Emitted when the beacon is upgraded. */ event BeaconUpgraded(address indexed beacon); /** * @dev Initializes the proxy with `beacon`. * * If `data` is nonempty, it's used as data in a delegate call to the implementation returned by the beacon. This * will typically be an encoded function call, and allows initializating the storage of the proxy like a Solidity * constructor. * * Requirements: * * - `beacon` must be a contract with the interface {IBeacon}. */ constructor(address beacon, bytes memory data) payable { assert(_BEACON_SLOT == bytes32(uint256(keccak256("eip1967.proxy.beacon")) - 1)); _upgradeBeaconToAndCall(beacon, data, false); } /** * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that). * * Emits a {BeaconUpgraded} event. */ function _upgradeBeaconToAndCall(address newBeacon, bytes memory data, bool forceCall) internal { _setBeacon(newBeacon); emit BeaconUpgraded(newBeacon); if (data.length > 0 || forceCall) { Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data); } } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { require( Address.isContract(newBeacon), "REWARDER_PROXY: new beacon is not a contract" ); require( Address.isContract(IBeacon(newBeacon).implementation()), "REWARDER_PROXY: beacon implementation is not a contract" ); StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon; } /** * @dev Returns the current beacon. */ function _getBeacon() internal view returns (address) { return StorageSlot.getAddressSlot(_BEACON_SLOT).value; } /** * @dev Returns the current beacon address. */ function beaconAddress() external view virtual returns (address) { return _getBeacon(); } /** * @dev Returns the current implementation address of the associated beacon. */ function _implementation() internal view virtual override returns (address) { return IBeacon(_getBeacon()).implementation(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"beacon","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"beaconAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052604051620010ce380380620010ce833981810160405281019062000029919062000710565b60017fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d5160001c6200005b9190620007af565b60001b7fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d5060001b14620000935762000092620007ea565b5b620000a782826000620000af60201b60201c565b505062000ad4565b620000c083620001a660201b60201c565b8273ffffffffffffffffffffffffffffffffffffffff167f1cf3b03a6cf19fa2baba4df148e9dcabedea7f8a5c07840e207e5c089be95d3e60405160405180910390a2600082511180620001115750805b15620001a1576200019f8373ffffffffffffffffffffffffffffffffffffffff16635c60da1b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000167573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018d919062000819565b836200034560201b6200008f1760201c565b505b505050565b620001bc816200037b60201b620000bc1760201c565b620001fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001f590620008d2565b60405180910390fd5b620002858173ffffffffffffffffffffffffffffffffffffffff16635c60da1b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200024e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000274919062000819565b6200037b60201b620000bc1760201c565b620002c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002be906200096a565b60405180910390fd5b80620003017fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d5060001b6200039e60201b620000df1760201c565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060620003738383604051806060016040528060278152602001620010a760279139620003a860201b60201c565b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000819050919050565b60606000808573ffffffffffffffffffffffffffffffffffffffff1685604051620003d49190620009d9565b600060405180830381855af49150503d806000811462000411576040519150601f19603f3d011682016040523d82523d6000602084013e62000416565b606091505b50915091506200042f868383876200043a60201b60201c565b925050509392505050565b60608315620004aa576000835103620004a1576200045e856200037b60201b60201c565b620004a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004979062000a42565b60405180910390fd5b5b829050620004bd565b620004bc8383620004c560201b60201c565b5b949350505050565b600082511115620004d95781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050f919062000ab0565b60405180910390fd5b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000559826200052c565b9050919050565b6200056b816200054c565b81146200057757600080fd5b50565b6000815190506200058b8162000560565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005e6826200059b565b810181811067ffffffffffffffff82111715620006085762000607620005ac565b5b80604052505050565b60006200061d62000518565b90506200062b8282620005db565b919050565b600067ffffffffffffffff8211156200064e576200064d620005ac565b5b62000659826200059b565b9050602081019050919050565b60005b838110156200068657808201518184015260208101905062000669565b60008484015250505050565b6000620006a9620006a38462000630565b62000611565b905082815260208101848484011115620006c857620006c762000596565b5b620006d584828562000666565b509392505050565b600082601f830112620006f557620006f462000591565b5b81516200070784826020860162000692565b91505092915050565b600080604083850312156200072a576200072962000522565b5b60006200073a858286016200057a565b925050602083015167ffffffffffffffff8111156200075e576200075d62000527565b5b6200076c85828601620006dd565b9150509250929050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007bc8262000776565b9150620007c98362000776565b9250828203905081811115620007e457620007e362000780565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b60006020828403121562000832576200083162000522565b5b600062000842848285016200057a565b91505092915050565b600082825260208201905092915050565b7f52455741524445525f50524f58593a206e657720626561636f6e206973206e6f60008201527f74206120636f6e74726163740000000000000000000000000000000000000000602082015250565b6000620008ba602c836200084b565b9150620008c7826200085c565b604082019050919050565b60006020820190508181036000830152620008ed81620008ab565b9050919050565b7f52455741524445525f50524f58593a20626561636f6e20696d706c656d656e7460008201527f6174696f6e206973206e6f74206120636f6e7472616374000000000000000000602082015250565b6000620009526037836200084b565b91506200095f82620008f4565b604082019050919050565b60006020820190508181036000830152620009858162000943565b9050919050565b600081519050919050565b600081905092915050565b6000620009af826200098c565b620009bb818562000997565b9350620009cd81856020860162000666565b80840191505092915050565b6000620009e78284620009a2565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b600062000a2a601d836200084b565b915062000a3782620009f2565b602082019050919050565b6000602082019050818103600083015262000a5d8162000a1b565b9050919050565b600081519050919050565b600062000a7c8262000a64565b62000a8881856200084b565b935062000a9a81856020860162000666565b62000aa5816200059b565b840191505092915050565b6000602082019050818103600083015262000acc818462000a6f565b905092915050565b6105c38062000ae46000396000f3fe6080604052600436106100225760003560e01c80637e2ec6d01461003b57610031565b366100315761002f610066565b005b610039610066565b005b34801561004757600080fd5b50610050610080565b60405161005d9190610371565b60405180910390f35b61006e6100e9565b61007e6100796100eb565b610168565b565b600061008a61018e565b905090565b60606100b48383604051806060016040528060278152602001610567602791396101e5565b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000819050919050565b565b60006100f561018e565b73ffffffffffffffffffffffffffffffffffffffff16635c60da1b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561013f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061016391906103bd565b905090565b3660008037600080366000845af43d6000803e8060008114610189573d6000f35b3d6000fd5b60006101bc7fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d5060001b6100df565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606000808573ffffffffffffffffffffffffffffffffffffffff168560405161020f919061045b565b600060405180830381855af49150503d806000811461024a576040519150601f19603f3d011682016040523d82523d6000602084013e61024f565b606091505b50915091506102608683838761026b565b925050509392505050565b606083156102cd5760008351036102c557610285856100bc565b6102c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102bb906104cf565b60405180910390fd5b5b8290506102d8565b6102d783836102e0565b5b949350505050565b6000825111156102f35781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103279190610544565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061035b82610330565b9050919050565b61036b81610350565b82525050565b60006020820190506103866000830184610362565b92915050565b600080fd5b61039a81610350565b81146103a557600080fd5b50565b6000815190506103b781610391565b92915050565b6000602082840312156103d3576103d261038c565b5b60006103e1848285016103a8565b91505092915050565b600081519050919050565b600081905092915050565b60005b8381101561041e578082015181840152602081019050610403565b60008484015250505050565b6000610435826103ea565b61043f81856103f5565b935061044f818560208601610400565b80840191505092915050565b6000610467828461042a565b915081905092915050565b600082825260208201905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b60006104b9601d83610472565b91506104c482610483565b602082019050919050565b600060208201905081810360008301526104e8816104ac565b9050919050565b600081519050919050565b6000601f19601f8301169050919050565b6000610516826104ef565b6105208185610472565b9350610530818560208601610400565b610539816104fa565b840191505092915050565b6000602082019050818103600083015261055e818461050b565b90509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212208aeda08252e6d2b495e00525a4c469c8275c7fdd116a3092b7975de57026482064736f6c63430008110033416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c65640000000000000000000000002d1ffa97d1013cefec277ec15417ba8163bdfc2600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000024c4d66de80000000000000000000000000e4caef48de8fec07b7dfeae8d73848aaa8be0cb00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106100225760003560e01c80637e2ec6d01461003b57610031565b366100315761002f610066565b005b610039610066565b005b34801561004757600080fd5b50610050610080565b60405161005d9190610371565b60405180910390f35b61006e6100e9565b61007e6100796100eb565b610168565b565b600061008a61018e565b905090565b60606100b48383604051806060016040528060278152602001610567602791396101e5565b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000819050919050565b565b60006100f561018e565b73ffffffffffffffffffffffffffffffffffffffff16635c60da1b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561013f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061016391906103bd565b905090565b3660008037600080366000845af43d6000803e8060008114610189573d6000f35b3d6000fd5b60006101bc7fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d5060001b6100df565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606000808573ffffffffffffffffffffffffffffffffffffffff168560405161020f919061045b565b600060405180830381855af49150503d806000811461024a576040519150601f19603f3d011682016040523d82523d6000602084013e61024f565b606091505b50915091506102608683838761026b565b925050509392505050565b606083156102cd5760008351036102c557610285856100bc565b6102c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102bb906104cf565b60405180910390fd5b5b8290506102d8565b6102d783836102e0565b5b949350505050565b6000825111156102f35781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103279190610544565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061035b82610330565b9050919050565b61036b81610350565b82525050565b60006020820190506103866000830184610362565b92915050565b600080fd5b61039a81610350565b81146103a557600080fd5b50565b6000815190506103b781610391565b92915050565b6000602082840312156103d3576103d261038c565b5b60006103e1848285016103a8565b91505092915050565b600081519050919050565b600081905092915050565b60005b8381101561041e578082015181840152602081019050610403565b60008484015250505050565b6000610435826103ea565b61043f81856103f5565b935061044f818560208601610400565b80840191505092915050565b6000610467828461042a565b915081905092915050565b600082825260208201905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b60006104b9601d83610472565b91506104c482610483565b602082019050919050565b600060208201905081810360008301526104e8816104ac565b9050919050565b600081519050919050565b6000601f19601f8301169050919050565b6000610516826104ef565b6105208185610472565b9350610530818560208601610400565b610539816104fa565b840191505092915050565b6000602082019050818103600083015261055e818461050b565b90509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212208aeda08252e6d2b495e00525a4c469c8275c7fdd116a3092b7975de57026482064736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002d1ffa97d1013cefec277ec15417ba8163bdfc2600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000024c4d66de80000000000000000000000000e4caef48de8fec07b7dfeae8d73848aaa8be0cb00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : beacon (address): 0x2D1fFA97d1013CeFEc277ec15417ba8163bdfc26
Arg [1] : data (bytes): 0xc4d66de80000000000000000000000000e4caef48de8fec07b7dfeae8d73848aaa8be0cb
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000002d1ffa97d1013cefec277ec15417ba8163bdfc26
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [3] : c4d66de80000000000000000000000000e4caef48de8fec07b7dfeae8d73848a
Arg [4] : aa8be0cb00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
16134:2934:0:-:0;;;;;;;;;;;;;;;;;;;;;;;3101:11;:9;:11::i;:::-;16134:2934;;2870:11;:9;:11::i;:::-;16134:2934;18714:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2507:113;2556:17;:15;:17::i;:::-;2584:28;2594:17;:15;:17::i;:::-;2584:9;:28::i;:::-;2507:113::o;18714:103::-;18770:7;18797:12;:10;:12::i;:::-;18790:19;;18714:103;:::o;12783:200::-;12866:12;12898:77;12919:6;12927:4;12898:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;12891:84;;12783:200;;;;:::o;7355:326::-;7415:4;7672:1;7650:7;:19;;;:23;7643:30;;7355:326;;;:::o;5020:195::-;5081:21;5193:4;5183:14;;5020:195;;;:::o;3410:46::-;:::o;18925:140::-;18992:7;19027:12;:10;:12::i;:::-;19019:36;;;:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19012:45;;18925:140;:::o;1097:918::-;1440:14;1437:1;1434;1421:34;1658:1;1655;1639:14;1636:1;1620:14;1613:5;1600:60;1737:16;1734:1;1731;1716:38;1777:6;1851:1;1846:68;;;;1965:16;1962:1;1955:27;1846:68;1882:16;1879:1;1872:27;18513:126;18558:7;18585:40;16455:66;18612:12;;18585:26;:40::i;:::-;:46;;;;;;;;;;;;18578:53;;18513:126;:::o;13177:332::-;13322:12;13348;13362:23;13389:6;:19;;13409:4;13389:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13347:67;;;;13432:69;13459:6;13467:7;13476:10;13488:12;13432:26;:69::i;:::-;13425:76;;;;13177:332;;;;;:::o;13805:644::-;13990:12;14019:7;14015:427;;;14068:1;14047:10;:17;:22;14043:290;;14265:18;14276:6;14265:10;:18::i;:::-;14257:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;14043:290;14354:10;14347:17;;;;14015:427;14397:33;14405:10;14417:12;14397:7;:33::i;:::-;13805:644;;;;;;;:::o;14991:552::-;15172:1;15152:10;:17;:21;15148:388;;;15384:10;15378:17;15441:15;15428:10;15424:2;15420:19;15413:44;15148:388;15511:12;15504:20;;;;;;;;;;;:::i;:::-;;;;;;;;7:126:1;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;674:117::-;783:1;780;773:12;920:122;993:24;1011:5;993:24;:::i;:::-;986:5;983:35;973:63;;1032:1;1029;1022:12;973:63;920:122;:::o;1048:143::-;1105:5;1136:6;1130:13;1121:22;;1152:33;1179:5;1152:33;:::i;:::-;1048:143;;;;:::o;1197:351::-;1267:6;1316:2;1304:9;1295:7;1291:23;1287:32;1284:119;;;1322:79;;:::i;:::-;1284:119;1442:1;1467:64;1523:7;1514:6;1503:9;1499:22;1467:64;:::i;:::-;1457:74;;1413:128;1197:351;;;;:::o;1554:98::-;1605:6;1639:5;1633:12;1623:22;;1554:98;;;:::o;1658:147::-;1759:11;1796:3;1781:18;;1658:147;;;;:::o;1811:246::-;1892:1;1902:113;1916:6;1913:1;1910:13;1902:113;;;2001:1;1996:3;1992:11;1986:18;1982:1;1977:3;1973:11;1966:39;1938:2;1935:1;1931:10;1926:15;;1902:113;;;2049:1;2040:6;2035:3;2031:16;2024:27;1873:184;1811:246;;;:::o;2063:386::-;2167:3;2195:38;2227:5;2195:38;:::i;:::-;2249:88;2330:6;2325:3;2249:88;:::i;:::-;2242:95;;2346:65;2404:6;2399:3;2392:4;2385:5;2381:16;2346:65;:::i;:::-;2436:6;2431:3;2427:16;2420:23;;2171:278;2063:386;;;;:::o;2455:271::-;2585:3;2607:93;2696:3;2687:6;2607:93;:::i;:::-;2600:100;;2717:3;2710:10;;2455:271;;;;:::o;2732:169::-;2816:11;2850:6;2845:3;2838:19;2890:4;2885:3;2881:14;2866:29;;2732:169;;;;:::o;2907:179::-;3047:31;3043:1;3035:6;3031:14;3024:55;2907:179;:::o;3092:366::-;3234:3;3255:67;3319:2;3314:3;3255:67;:::i;:::-;3248:74;;3331:93;3420:3;3331:93;:::i;:::-;3449:2;3444:3;3440:12;3433:19;;3092:366;;;:::o;3464:419::-;3630:4;3668:2;3657:9;3653:18;3645:26;;3717:9;3711:4;3707:20;3703:1;3692:9;3688:17;3681:47;3745:131;3871:4;3745:131;:::i;:::-;3737:139;;3464:419;;;:::o;3889:99::-;3941:6;3975:5;3969:12;3959:22;;3889:99;;;:::o;3994:102::-;4035:6;4086:2;4082:7;4077:2;4070:5;4066:14;4062:28;4052:38;;3994:102;;;:::o;4102:377::-;4190:3;4218:39;4251:5;4218:39;:::i;:::-;4273:71;4337:6;4332:3;4273:71;:::i;:::-;4266:78;;4353:65;4411:6;4406:3;4399:4;4392:5;4388:16;4353:65;:::i;:::-;4443:29;4465:6;4443:29;:::i;:::-;4438:3;4434:39;4427:46;;4194:285;4102:377;;;;:::o;4485:313::-;4598:4;4636:2;4625:9;4621:18;4613:26;;4685:9;4679:4;4675:20;4671:1;4660:9;4656:17;4649:47;4713:78;4786:4;4777:6;4713:78;:::i;:::-;4705:86;;4485:313;;;;:::o
Swarm Source
ipfs://8aeda08252e6d2b495e00525a4c469c8275c7fdd116a3092b7975de570264820
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
GLMR | 100.00% | $0.054189 | 103,670.2133 | $5,617.79 |
[ 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.