More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 21,938 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Call Agreement | 39629321 | 4 days ago | IN | 0 xDAI | 0.00036233 | ||||
Call Agreement | 39501616 | 12 days ago | IN | 0 xDAI | 0.00036233 | ||||
Call Agreement | 39395005 | 18 days ago | IN | 0 xDAI | 0.00036233 | ||||
Call Agreement | 39327468 | 22 days ago | IN | 0 xDAI | 0.00034273 | ||||
Call Agreement | 39217472 | 28 days ago | IN | 0 xDAI | 0.00033535 | ||||
Call Agreement | 39109175 | 35 days ago | IN | 0 xDAI | 0.00040944 | ||||
Call Agreement | 39100377 | 35 days ago | IN | 0 xDAI | 0.00034522 | ||||
Call Agreement | 39099432 | 35 days ago | IN | 0 xDAI | 0.00036233 | ||||
Call Agreement | 39030135 | 39 days ago | IN | 0 xDAI | 0.00036233 | ||||
Call Agreement | 38997605 | 41 days ago | IN | 0 xDAI | 0.00036233 | ||||
Call Agreement | 38938721 | 45 days ago | IN | 0 xDAI | 0.00036233 | ||||
Call Agreement | 38910484 | 46 days ago | IN | 0 xDAI | 0.00034523 | ||||
Call Agreement | 38878988 | 48 days ago | IN | 0 xDAI | 0.00034523 | ||||
Call Agreement | 38792778 | 53 days ago | IN | 0 xDAI | 0.00000335 | ||||
Call Agreement | 38776306 | 54 days ago | IN | 0 xDAI | 0.00029922 | ||||
Call Agreement | 38776304 | 54 days ago | IN | 0 xDAI | 0.00029281 | ||||
Call Agreement | 38776302 | 54 days ago | IN | 0 xDAI | 0.00017384 | ||||
Call Agreement | 38776300 | 54 days ago | IN | 0 xDAI | 0.00029319 | ||||
Call Agreement | 38776298 | 54 days ago | IN | 0 xDAI | 0.00017401 | ||||
Call Agreement | 38737884 | 57 days ago | IN | 0 xDAI | 0.00036233 | ||||
Call Agreement | 38717910 | 58 days ago | IN | 0 xDAI | 0.00033535 | ||||
Call Agreement | 38708185 | 58 days ago | IN | 0 xDAI | 0.00033535 | ||||
Batch Call | 38696015 | 59 days ago | IN | 1 xDAI | 0.00037258 | ||||
Call Agreement | 38653311 | 62 days ago | IN | 0 xDAI | 0.00034401 | ||||
Call Agreement | 38614036 | 64 days ago | IN | 0 xDAI | 0.00036233 |
Latest 7 internal transactions
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
39356079 | 20 days ago | 1 xDAI | ||||
39356079 | 20 days ago | 1 xDAI | ||||
38696015 | 59 days ago | 1 xDAI | ||||
32094211 | 455 days ago | Contract Creation | 0 xDAI | |||
14829103 | 1511 days ago | Contract Creation | 0 xDAI | |||
14829100 | 1511 days ago | Contract Creation | 0 xDAI | |||
14829098 | 1511 days ago | Contract Creation | 0 xDAI |
Loading...
Loading
Contract Name:
UUPSProxy
Compiler Version
v0.7.6+commit.7338295f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at gnosisscan.io on 2022-08-04 */ // SPDX-License-Identifier: AGPLv3 // File: contracts/upgradability/UUPSUtils.sol pragma solidity 0.7.6; /** * @title UUPS (Universal Upgradeable Proxy Standard) Shared Library */ library UUPSUtils { /** * @dev Implementation slot constant. * Using https://eips.ethereum.org/EIPS/eip-1967 standard * Storage slot 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc * (obtained as bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1)). */ bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /// @dev Get implementation address. function implementation() internal view returns (address impl) { assembly { // solium-disable-line impl := sload(_IMPLEMENTATION_SLOT) } } /// @dev Set new implementation address. function setImplementation(address codeAddress) internal { assembly { // solium-disable-line sstore( _IMPLEMENTATION_SLOT, codeAddress ) } } } // File: @openzeppelin/contracts/proxy/Proxy.sol pragma solidity >=0.6.0 <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 internall call site, it will return directly to the external caller. */ function _delegate(address implementation) internal virtual { // solhint-disable-next-line no-inline-assembly 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 overriden 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 internall 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 overriden should call `super._beforeFallback()`. */ function _beforeFallback() internal virtual { } } // File: contracts/upgradability/UUPSProxy.sol pragma solidity 0.7.6; /** * @dev UUPS (Universal Upgradeable Proxy Standard) Proxy * * NOTE: * - Compliant with [Universal Upgradeable Proxy Standard](https://eips.ethereum.org/EIPS/eip-1822) * - Compiiant with [Standard Proxy Storage Slots](https://eips.ethereum.org/EIPS/eip-1967) * - 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 implementation. */ contract UUPSProxy is Proxy { /** * @dev Proxy initialization function. * This should only be called once and it is permission-less. * @param initialAddress Initial logic contract code address to be used. */ function initializeProxy(address initialAddress) external { require(initialAddress != address(0), "UUPSProxy: zero address"); require(UUPSUtils.implementation() == address(0), "UUPSProxy: already initialized"); UUPSUtils.setImplementation(initialAddress); } /// @dev Proxy._implementation implementation function _implementation() internal virtual override view returns (address) { return UUPSUtils.implementation(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"initialAddress","type":"address"}],"name":"initializeProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b50610204806100206000396000f3fe6080604052600436106100225760003560e01c80634a0687ef1461003957610031565b366100315761002f61006c565b005b61002f61006c565b34801561004557600080fd5b5061002f6004803603602081101561005c57600080fd5b50356001600160a01b0316610086565b610074610084565b61008461007f610152565b610161565b565b6001600160a01b0381166100e1576040805162461bcd60e51b815260206004820152601760248201527f5555505350726f78793a207a65726f2061646472657373000000000000000000604482015290519081900360640190fd5b60006100eb610185565b6001600160a01b031614610146576040805162461bcd60e51b815260206004820152601e60248201527f5555505350726f78793a20616c726561647920696e697469616c697a65640000604482015290519081900360640190fd5b61014f816101aa565b50565b600061015c610185565b905090565b3660008037600080366000845af43d6000803e808015610180573d6000f35b3d6000fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5556fea2646970667358221220def9e96c76267c22d0df30c76bda6df594540b1fa0c7c6892dd14e23ee3719a864736f6c63430007060033
Deployed Bytecode
0x6080604052600436106100225760003560e01c80634a0687ef1461003957610031565b366100315761002f61006c565b005b61002f61006c565b34801561004557600080fd5b5061002f6004803603602081101561005c57600080fd5b50356001600160a01b0316610086565b610074610084565b61008461007f610152565b610161565b565b6001600160a01b0381166100e1576040805162461bcd60e51b815260206004820152601760248201527f5555505350726f78793a207a65726f2061646472657373000000000000000000604482015290519081900360640190fd5b60006100eb610185565b6001600160a01b031614610146576040805162461bcd60e51b815260206004820152601e60248201527f5555505350726f78793a20616c726561647920696e697469616c697a65640000604482015290519081900360640190fd5b61014f816101aa565b50565b600061015c610185565b905090565b3660008037600080366000845af43d6000803e808015610180573d6000f35b3d6000fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5556fea2646970667358221220def9e96c76267c22d0df30c76bda6df594540b1fa0c7c6892dd14e23ee3719a864736f6c63430007060033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.