Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 60 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer Owner | 12746997 | 1720 days ago | IN | 0 ETH | 0.00061565 | ||||
| Update Valset | 12738966 | 1721 days ago | IN | 0 ETH | 0.00461294 | ||||
| Submit Batch | 12726806 | 1723 days ago | IN | 0 ETH | 0.0019499 | ||||
| Submit Batch | 12726788 | 1723 days ago | IN | 0 ETH | 0.00195002 | ||||
| Submit Batch | 12726776 | 1723 days ago | IN | 0 ETH | 0.00195038 | ||||
| Submit Batch | 12726753 | 1723 days ago | IN | 0 ETH | 0.00270439 | ||||
| Send To Fx | 12726223 | 1723 days ago | IN | 0 ETH | 0.0007033 | ||||
| Send To Fx | 12701645 | 1727 days ago | IN | 0 ETH | 0.00059738 | ||||
| Send To Fx | 12689279 | 1729 days ago | IN | 0 ETH | 0.00134411 | ||||
| Send To Fx | 12689254 | 1729 days ago | IN | 0 ETH | 0.00149346 | ||||
| Submit Batch | 12688886 | 1729 days ago | IN | 0 ETH | 0.00252736 | ||||
| Submit Batch | 12687857 | 1729 days ago | IN | 0 ETH | 0.0055169 | ||||
| Update Valset | 12680603 | 1730 days ago | IN | 0 ETH | 0.00858184 | ||||
| Send To Fx | 12676720 | 1731 days ago | IN | 0 ETH | 0.00175453 | ||||
| Submit Batch | 12676684 | 1731 days ago | IN | 0 ETH | 0.00904025 | ||||
| Send To Fx | 12676377 | 1731 days ago | IN | 0 ETH | 0.00462972 | ||||
| Send To Fx | 12676169 | 1731 days ago | IN | 0 ETH | 0.00321093 | ||||
| Send To Fx | 12676081 | 1731 days ago | IN | 0 ETH | 0.00373365 | ||||
| Submit Batch | 12675858 | 1731 days ago | IN | 0 ETH | 0.00302338 | ||||
| Submit Batch | 12675333 | 1731 days ago | IN | 0 ETH | 0.00302212 | ||||
| Submit Batch | 12675290 | 1731 days ago | IN | 0 ETH | 0.0030232 | ||||
| Submit Batch | 12675278 | 1731 days ago | IN | 0 ETH | 0.00346291 | ||||
| Submit Batch | 12675264 | 1731 days ago | IN | 0 ETH | 0.00319233 | ||||
| Send To Fx | 12675081 | 1731 days ago | IN | 0 ETH | 0.00089607 | ||||
| Submit Batch | 12671474 | 1732 days ago | IN | 0 ETH | 0.00240551 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
TransparentUpgradeableProxy
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC1967Proxy.sol";
/**
* @dev This contract implements a proxy that is upgradeable by an admin.
*
* To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector
* clashing], which can potentially be used in an attack, this contract uses the
* https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two
* things that go hand in hand:
*
* 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if
* that call matches one of the admin functions exposed by the proxy itself.
* 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the
* implementation. If the admin tries to call a function on the implementation it will fail with an error that says
* "admin cannot fallback to proxy target".
*
* These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing
* the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due
* to sudden errors when trying to call a function from the proxy implementation.
*
* Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way,
* you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy.
*/
contract TransparentUpgradeableProxy is ERC1967Proxy {
/**
* @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and
* optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}.
*/
constructor(address _logic, address admin_, bytes memory _data) payable ERC1967Proxy(_logic, _data) {
assert(_ADMIN_SLOT == bytes32(uint256(keccak256("eip1967.proxy.admin")) - 1));
_changeAdmin(admin_);
}
/**
* @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin.
*/
modifier ifAdmin() {
if (msg.sender == _getAdmin()) {
_;
} else {
_fallback();
}
}
/**
* @dev Returns the current admin.
*
* NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}.
*
* TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the
* https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
* `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`
*/
function admin() external ifAdmin returns (address admin_) {
admin_ = _getAdmin();
}
/**
* @dev Returns the current implementation.
*
* NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}.
*
* TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the
* https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
* `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`
*/
function implementation() external ifAdmin returns (address implementation_) {
implementation_ = _implementation();
}
/**
* @dev Changes the admin of the proxy.
*
* Emits an {AdminChanged} event.
*
* NOTE: Only the admin can call this function. See {ProxyAdmin-changeProxyAdmin}.
*/
function changeAdmin(address newAdmin) external virtual ifAdmin {
_changeAdmin(newAdmin);
}
/**
* @dev Upgrade the implementation of the proxy.
*
* NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}.
*/
function upgradeTo(address newImplementation) external ifAdmin {
_upgradeToAndCall(newImplementation, bytes(""), false);
}
/**
* @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified
* by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the
* proxied contract.
*
* NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}.
*/
function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin {
_upgradeToAndCall(newImplementation, data, true);
}
/**
* @dev Returns the current admin.
*/
function _admin() internal view virtual returns (address) {
return _getAdmin();
}
/**
* @dev Makes sure the admin cannot access the fallback function. See {Proxy-_beforeFallback}.
*/
function _beforeFallback() internal virtual override {
require(msg.sender != _getAdmin(), "TransparentUpgradeableProxy: admin cannot fallback to proxy target");
super._beforeFallback();
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./Proxy.sol";
import "./ERC1967Upgrade.sol";
/**
* @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
* implementation address that can be changed. This address is stored in storage in the location specified by
* https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the
* implementation behind the proxy.
*/
contract ERC1967Proxy is Proxy, ERC1967Upgrade {
/**
* @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.
*
* If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded
* function call, and allows initializating the storage of the proxy like a Solidity constructor.
*/
constructor(address _logic, bytes memory _data) payable {
assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));
_upgradeToAndCall(_logic, _data, false);
}
/**
* @dev Returns the current implementation address.
*/
function _implementation() internal view virtual override returns (address impl) {
return ERC1967Upgrade._getImplementation();
}
}// SPDX-License-Identifier: MIT
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 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 {
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IBeacon.sol";
import "./Address.sol";
import "./StorageSlot.sol";
abstract contract ERC1967Upgrade {
// This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1
bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;
/**
* @dev Storage slot with the address of the current implementation.
* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
* validated in the constructor.
*/
bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
/**
* @dev Emitted when the implementation is upgraded.
*/
event Upgraded(address indexed implementation);
/**
* @dev Returns the current implementation address.
*/
function _getImplementation() internal view returns (address) {
return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
}
/**
* @dev Stores a new address in the EIP1967 implementation slot.
*/
function _setImplementation(address newImplementation) private {
require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
}
/**
* @dev Perform implementation upgrade
*
* Emits an {Upgraded} event.
*/
function _upgradeTo(address newImplementation) internal {
_setImplementation(newImplementation);
emit Upgraded(newImplementation);
}
/**
* @dev Perform implementation upgrade with additional setup call.
*
* Emits an {Upgraded} event.
*/
function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {
_setImplementation(newImplementation);
emit Upgraded(newImplementation);
if (data.length > 0 || forceCall) {
Address.functionDelegateCall(newImplementation, data);
}
}
/**
* @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.
*
* Emits an {Upgraded} event.
*/
function _upgradeToAndCallSecure(address newImplementation, bytes memory data, bool forceCall) internal {
address oldImplementation = _getImplementation();
// Initial upgrade and setup call
_setImplementation(newImplementation);
if (data.length > 0 || forceCall) {
Address.functionDelegateCall(newImplementation, data);
}
// Perform rollback test if not already in progress
StorageSlot.BooleanSlot storage rollbackTesting = StorageSlot.getBooleanSlot(_ROLLBACK_SLOT);
if (!rollbackTesting.value) {
// Trigger rollback using upgradeTo from the new implementation
rollbackTesting.value = true;
Address.functionDelegateCall(
newImplementation,
abi.encodeWithSignature(
"upgradeTo(address)",
oldImplementation
)
);
rollbackTesting.value = false;
// Check rollback was effective
require(oldImplementation == _getImplementation(), "ERC1967Upgrade: upgrade breaks further upgrades");
// Finally reset to the new implementation and log the upgrade
_setImplementation(newImplementation);
emit Upgraded(newImplementation);
}
}
/**
* @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 Storage slot with the admin of the contract.
* This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
* validated in the constructor.
*/
bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;
/**
* @dev Emitted when the admin account has changed.
*/
event AdminChanged(address previousAdmin, address newAdmin);
/**
* @dev Returns the current admin.
*/
function _getAdmin() internal view returns (address) {
return StorageSlot.getAddressSlot(_ADMIN_SLOT).value;
}
/**
* @dev Stores a new address in the EIP1967 admin slot.
*/
function _setAdmin(address newAdmin) private {
require(newAdmin != address(0), "ERC1967: new admin is the zero address");
StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin;
}
/**
* @dev Changes the admin of the proxy.
*
* Emits an {AdminChanged} event.
*/
function _changeAdmin(address newAdmin) internal {
emit AdminChanged(_getAdmin(), newAdmin);
_setAdmin(newAdmin);
}
/**
* @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 Returns the current beacon.
*/
function _getBeacon() internal view returns (address) {
return StorageSlot.getAddressSlot(_BEACON_SLOT).value;
}
/**
* @dev Stores a new beacon in the EIP1967 beacon slot.
*/
function _setBeacon(address newBeacon) private {
require(
Address.isContract(newBeacon),
"ERC1967: new beacon is not a contract"
);
require(
Address.isContract(IBeacon(newBeacon).implementation()),
"ERC1967: beacon implementation is not a contract"
);
StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon;
}
}// SPDX-License-Identifier: MIT
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);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.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) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 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");
// 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");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(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) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(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) {
require(isContract(target), "Address: delegate call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
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);
}
}
}
}// SPDX-License-Identifier: MIT
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) {
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BooleanSlot` with member `value` located at `slot`.
*/
function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
*/
function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Uint256Slot` with member `value` located at `slot`.
*/
function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
assembly {
r.slot := slot
}
}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"address","name":"admin_","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","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":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"admin_","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"implementation_","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
608060405260405162000fbc38038062000fbc83398101604081905262000026916200040f565b82816200005560017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd6200062b565b60008051602062000f75833981519152146200008157634e487b7160e01b600052600160045260246000fd5b6200008f82826000620000ff565b50620000bf905060017fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61046200062b565b60008051602062000f5583398151915214620000eb57634e487b7160e01b600052600160045260246000fd5b620000f68262000170565b50505062000694565b6200010a83620001c2565b6040516001600160a01b038416907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a26000825111806200014c5750805b156200016b576200016983836200024a60201b620002661760201c565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200019b62000279565b82604051620001ac92919062000503565b60405180910390a1620001bf81620002b2565b50565b620001d8816200030460201b620002921760201c565b620002005760405162461bcd60e51b8152600401620001f79062000598565b60405180910390fd5b806200022960008051602062000f7583398151915260001b6200030e60201b6200020e1760201c565b80546001600160a01b0319166001600160a01b039290921691909117905550565b606062000272838360405180606001604052806027815260200162000f956027913962000311565b9392505050565b6000620002a360008051602062000f5583398151915260001b6200030e60201b6200020e1760201c565b546001600160a01b0316905090565b6001600160a01b038116620002db5760405162461bcd60e51b8152600401620001f79062000552565b806200022960008051602062000f5583398151915260001b6200030e60201b6200020e1760201c565b803b15155b919050565b90565b60606200031e8462000304565b6200033d5760405162461bcd60e51b8152600401620001f790620005e5565b600080856001600160a01b0316856040516200035a9190620004e5565b600060405180830381855af49150503d806000811462000397576040519150601f19603f3d011682016040523d82523d6000602084013e6200039c565b606091505b509092509050620003af828286620003b9565b9695505050505050565b60608315620003ca57508162000272565b825115620003db5782518084602001fd5b8160405162461bcd60e51b8152600401620001f791906200051d565b80516001600160a01b03811681146200030957600080fd5b60008060006060848603121562000424578283fd5b6200042f84620003f7565b92506200043f60208501620003f7565b60408501519092506001600160401b03808211156200045c578283fd5b818601915086601f83011262000470578283fd5b8151818111156200048557620004856200067e565b604051601f8201601f191681016020018381118282101715620004ac57620004ac6200067e565b604052818152838201602001891015620004c4578485fd5b620004d78260208301602087016200064f565b809450505050509250925092565b60008251620004f98184602087016200064f565b9190910192915050565b6001600160a01b0392831681529116602082015260400190565b60006020825282518060208401526200053e8160408501602087016200064f565b601f01601f19169190910160400192915050565b60208082526026908201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602d908201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60408201526c1bdd08184818dbdb9d1c9858dd609a1b606082015260800190565b60208082526026908201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6040820152651b9d1c9858dd60d21b606082015260800190565b6000828210156200064a57634e487b7160e01b81526011600452602481fd5b500390565b60005b838110156200066c57818101518382015260200162000652565b83811115620001695750506000910152565b634e487b7160e01b600052604160045260246000fd5b6108b180620006a46000396000f3fe60806040526004361061004e5760003560e01c80633659cfe6146100655780634f1ef286146100855780635c60da1b146100985780638f283970146100c3578063f851a440146100e35761005d565b3661005d5761005b6100f8565b005b61005b6100f8565b34801561007157600080fd5b5061005b6100803660046105d2565b610112565b61005b6100933660046105ec565b61015e565b3480156100a457600080fd5b506100ad6101d4565b6040516100ba9190610686565b60405180910390f35b3480156100cf57600080fd5b5061005b6100de3660046105d2565b610211565b3480156100ef57600080fd5b506100ad61023b565b61010061029c565b61011061010b6102e6565b6102f5565b565b61011a610319565b6001600160a01b0316336001600160a01b031614156101535761014e81604051806020016040528060008152506000610353565b61015b565b61015b6100f8565b50565b610166610319565b6001600160a01b0316336001600160a01b031614156101c7576101c28383838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525060019250610353915050565b6101cf565b6101cf6100f8565b505050565b60006101de610319565b6001600160a01b0316336001600160a01b03161415610206576101ff6102e6565b905061020e565b61020e6100f8565b90565b610219610319565b6001600160a01b0316336001600160a01b031614156101535761014e816103b2565b6000610245610319565b6001600160a01b0316336001600160a01b03161415610206576101ff610319565b606061028b8383604051806060016040528060278152602001610855602791396103fb565b9392505050565b803b15155b919050565b6102a4610319565b6001600160a01b0316336001600160a01b031614156102de5760405162461bcd60e51b81526004016102d5906107c0565b60405180910390fd5b610110610110565b60006102f0610497565b905090565b3660008037600080366000845af43d6000803e808015610314573d6000f35b3d6000fd5b60006103447fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610361020e565b546001600160a01b0316905090565b61035c836104c2565b6040516001600160a01b038416907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a260008251118061039d5750805b156101cf576103ac8383610266565b50505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6103db610319565b826040516103ea92919061069a565b60405180910390a161015b81610532565b606061040684610292565b6104225760405162461bcd60e51b81526004016102d59061077a565b600080856001600160a01b03168560405161043d919061066a565b600060405180830381855af49150503d8060008114610478576040519150601f19603f3d011682016040523d82523d6000602084013e61047d565b606091505b509150915061048d828286610582565b9695505050505050565b60006103447f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61020e565b6104cb81610292565b6104e75760405162461bcd60e51b81526004016102d59061072d565b806105117f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61020e565b80546001600160a01b0319166001600160a01b039290921691909117905550565b6001600160a01b0381166105585760405162461bcd60e51b81526004016102d5906106e7565b806105117fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610361020e565b6060831561059157508161028b565b8251156105a15782518084602001fd5b8160405162461bcd60e51b81526004016102d591906106b4565b80356001600160a01b038116811461029757600080fd5b6000602082840312156105e3578081fd5b61028b826105bb565b600080600060408486031215610600578182fd5b610609846105bb565b9250602084013567ffffffffffffffff80821115610625578384fd5b818601915086601f830112610638578384fd5b813581811115610646578485fd5b876020828501011115610657578485fd5b6020830194508093505050509250925092565b6000825161067c818460208701610828565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b60006020825282518060208401526106d3816040850160208701610828565b601f01601f19169190910160400192915050565b60208082526026908201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602d908201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60408201526c1bdd08184818dbdb9d1c9858dd609a1b606082015260800190565b60208082526026908201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6040820152651b9d1c9858dd60d21b606082015260800190565b60208082526042908201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60408201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606082015261195d60f21b608082015260a00190565b60005b8381101561084357818101518382015260200161082b565b838111156103ac575050600091015256fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220409a760c5a0baaef4f6fdec0537faba681bd5fa7e3d7788c451ed91fd0b03d4164736f6c63430008000033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564000000000000000000000000e3b188a37cfab3980aeebfa0115eeb7f9773c419000000000000000000000000f57d66aecf766b6dcba59deba5ab14c21ec1cdfd000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000005c4aa63a89466782d6272696467652d6574680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a8f5c28f00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000001400000000000000000000000011a8696af8da9ccd90d3d210523b330e72e1fccb00000000000000000000000014302735cf3554ecc69c6b6b2c5eda60b1bc0a4500000000000000000000000018139f278025406ce90a9cb7a444e25d12db9fd700000000000000000000000030a1cd5d9b111c469544aa4e51fa454c348df4a500000000000000000000000042731c7a396b7a9c253ec0e750c4b0e64742e55e0000000000000000000000004be0f540a8a3454d4b6187e20750188d1889425e000000000000000000000000539c4893c252ad7572e3e2b67bfe8f450d1c44080000000000000000000000005f7d1d2f1c3691d4aa048ce33e5a558581e570b80000000000000000000000006194d9c521572560fa5580f33e490c2c38e341de0000000000000000000000006dd3115bdc0f5e4e49bb7c8e095696ae07b9005200000000000000000000000073f09a8e3e69e182e9d0598d89897d9f51c954a60000000000000000000000007e6769feaad5272e17ce9fde6d183c1461a27a030000000000000000000000008244ad4b14a6679c86606e7fad639110120db23200000000000000000000000082e1f6b604412320c12e88c054a7e5c0425e0226000000000000000000000000876cd439e351ef5f869a7b16d955ed7143448d24000000000000000000000000b46bcdd6ecf5443c3f9af3d57af5f840708cfd5f000000000000000000000000e72d9a930be55d69a712662f268b807122ac09c6000000000000000000000000a0a7fe4611d7bef40f1efcd3a2e27141832c5930000000000000000000000000a41bdd3cf597f35383ff8298d8ed53d6d997bb38000000000000000000000000f14dde45ed688f06d52b9bdcaac052ea410f38250000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061004e5760003560e01c80633659cfe6146100655780634f1ef286146100855780635c60da1b146100985780638f283970146100c3578063f851a440146100e35761005d565b3661005d5761005b6100f8565b005b61005b6100f8565b34801561007157600080fd5b5061005b6100803660046105d2565b610112565b61005b6100933660046105ec565b61015e565b3480156100a457600080fd5b506100ad6101d4565b6040516100ba9190610686565b60405180910390f35b3480156100cf57600080fd5b5061005b6100de3660046105d2565b610211565b3480156100ef57600080fd5b506100ad61023b565b61010061029c565b61011061010b6102e6565b6102f5565b565b61011a610319565b6001600160a01b0316336001600160a01b031614156101535761014e81604051806020016040528060008152506000610353565b61015b565b61015b6100f8565b50565b610166610319565b6001600160a01b0316336001600160a01b031614156101c7576101c28383838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525060019250610353915050565b6101cf565b6101cf6100f8565b505050565b60006101de610319565b6001600160a01b0316336001600160a01b03161415610206576101ff6102e6565b905061020e565b61020e6100f8565b90565b610219610319565b6001600160a01b0316336001600160a01b031614156101535761014e816103b2565b6000610245610319565b6001600160a01b0316336001600160a01b03161415610206576101ff610319565b606061028b8383604051806060016040528060278152602001610855602791396103fb565b9392505050565b803b15155b919050565b6102a4610319565b6001600160a01b0316336001600160a01b031614156102de5760405162461bcd60e51b81526004016102d5906107c0565b60405180910390fd5b610110610110565b60006102f0610497565b905090565b3660008037600080366000845af43d6000803e808015610314573d6000f35b3d6000fd5b60006103447fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610361020e565b546001600160a01b0316905090565b61035c836104c2565b6040516001600160a01b038416907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a260008251118061039d5750805b156101cf576103ac8383610266565b50505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6103db610319565b826040516103ea92919061069a565b60405180910390a161015b81610532565b606061040684610292565b6104225760405162461bcd60e51b81526004016102d59061077a565b600080856001600160a01b03168560405161043d919061066a565b600060405180830381855af49150503d8060008114610478576040519150601f19603f3d011682016040523d82523d6000602084013e61047d565b606091505b509150915061048d828286610582565b9695505050505050565b60006103447f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61020e565b6104cb81610292565b6104e75760405162461bcd60e51b81526004016102d59061072d565b806105117f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61020e565b80546001600160a01b0319166001600160a01b039290921691909117905550565b6001600160a01b0381166105585760405162461bcd60e51b81526004016102d5906106e7565b806105117fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610361020e565b6060831561059157508161028b565b8251156105a15782518084602001fd5b8160405162461bcd60e51b81526004016102d591906106b4565b80356001600160a01b038116811461029757600080fd5b6000602082840312156105e3578081fd5b61028b826105bb565b600080600060408486031215610600578182fd5b610609846105bb565b9250602084013567ffffffffffffffff80821115610625578384fd5b818601915086601f830112610638578384fd5b813581811115610646578485fd5b876020828501011115610657578485fd5b6020830194508093505050509250925092565b6000825161067c818460208701610828565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b60006020825282518060208401526106d3816040850160208701610828565b601f01601f19169190910160400192915050565b60208082526026908201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602d908201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60408201526c1bdd08184818dbdb9d1c9858dd609a1b606082015260800190565b60208082526026908201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6040820152651b9d1c9858dd60d21b606082015260800190565b60208082526042908201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60408201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606082015261195d60f21b608082015260a00190565b60005b8381101561084357818101518382015260200161082b565b838111156103ac575050600091015256fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220409a760c5a0baaef4f6fdec0537faba681bd5fa7e3d7788c451ed91fd0b03d4164736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e3b188a37cfab3980aeebfa0115eeb7f9773c419000000000000000000000000f57d66aecf766b6dcba59deba5ab14c21ec1cdfd000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000005c4aa63a89466782d6272696467652d6574680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a8f5c28f00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000001400000000000000000000000011a8696af8da9ccd90d3d210523b330e72e1fccb00000000000000000000000014302735cf3554ecc69c6b6b2c5eda60b1bc0a4500000000000000000000000018139f278025406ce90a9cb7a444e25d12db9fd700000000000000000000000030a1cd5d9b111c469544aa4e51fa454c348df4a500000000000000000000000042731c7a396b7a9c253ec0e750c4b0e64742e55e0000000000000000000000004be0f540a8a3454d4b6187e20750188d1889425e000000000000000000000000539c4893c252ad7572e3e2b67bfe8f450d1c44080000000000000000000000005f7d1d2f1c3691d4aa048ce33e5a558581e570b80000000000000000000000006194d9c521572560fa5580f33e490c2c38e341de0000000000000000000000006dd3115bdc0f5e4e49bb7c8e095696ae07b9005200000000000000000000000073f09a8e3e69e182e9d0598d89897d9f51c954a60000000000000000000000007e6769feaad5272e17ce9fde6d183c1461a27a030000000000000000000000008244ad4b14a6679c86606e7fad639110120db23200000000000000000000000082e1f6b604412320c12e88c054a7e5c0425e0226000000000000000000000000876cd439e351ef5f869a7b16d955ed7143448d24000000000000000000000000b46bcdd6ecf5443c3f9af3d57af5f840708cfd5f000000000000000000000000e72d9a930be55d69a712662f268b807122ac09c6000000000000000000000000a0a7fe4611d7bef40f1efcd3a2e27141832c5930000000000000000000000000a41bdd3cf597f35383ff8298d8ed53d6d997bb38000000000000000000000000f14dde45ed688f06d52b9bdcaac052ea410f38250000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _logic (address): 0xE3B188A37CfaB3980AeEbfA0115Eeb7F9773c419
Arg [1] : admin_ (address): 0xF57d66aeCF766B6DCBA59Deba5ab14C21eC1CdFD
Arg [2] : _data (bytes): 0xaa63a89466782d6272696467652d6574680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a8f5c28f00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000001400000000000000000000000011a8696af8da9ccd90d3d210523b330e72e1fccb00000000000000000000000014302735cf3554ecc69c6b6b2c5eda60b1bc0a4500000000000000000000000018139f278025406ce90a9cb7a444e25d12db9fd700000000000000000000000030a1cd5d9b111c469544aa4e51fa454c348df4a500000000000000000000000042731c7a396b7a9c253ec0e750c4b0e64742e55e0000000000000000000000004be0f540a8a3454d4b6187e20750188d1889425e000000000000000000000000539c4893c252ad7572e3e2b67bfe8f450d1c44080000000000000000000000005f7d1d2f1c3691d4aa048ce33e5a558581e570b80000000000000000000000006194d9c521572560fa5580f33e490c2c38e341de0000000000000000000000006dd3115bdc0f5e4e49bb7c8e095696ae07b9005200000000000000000000000073f09a8e3e69e182e9d0598d89897d9f51c954a60000000000000000000000007e6769feaad5272e17ce9fde6d183c1461a27a030000000000000000000000008244ad4b14a6679c86606e7fad639110120db23200000000000000000000000082e1f6b604412320c12e88c054a7e5c0425e0226000000000000000000000000876cd439e351ef5f869a7b16d955ed7143448d24000000000000000000000000b46bcdd6ecf5443c3f9af3d57af5f840708cfd5f000000000000000000000000e72d9a930be55d69a712662f268b807122ac09c6000000000000000000000000a0a7fe4611d7bef40f1efcd3a2e27141832c5930000000000000000000000000a41bdd3cf597f35383ff8298d8ed53d6d997bb38000000000000000000000000f14dde45ed688f06d52b9bdcaac052ea410f38250000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc000000000000000000000000000000000000000000000000000000000ccccccc
-----Encoded View---------------
51 Constructor Arguments found :
Arg [0] : 000000000000000000000000e3b188a37cfab3980aeebfa0115eeb7f9773c419
Arg [1] : 000000000000000000000000f57d66aecf766b6dcba59deba5ab14c21ec1cdfd
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 00000000000000000000000000000000000000000000000000000000000005c4
Arg [4] : aa63a89466782d6272696467652d657468000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : a8f5c28f00000000000000000000000000000000000000000000000000000000
Arg [7] : 0000008000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000032000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000001400000000000000000000000011a8696af8da9ccd90d3d210523b330e
Arg [10] : 72e1fccb00000000000000000000000014302735cf3554ecc69c6b6b2c5eda60
Arg [11] : b1bc0a4500000000000000000000000018139f278025406ce90a9cb7a444e25d
Arg [12] : 12db9fd700000000000000000000000030a1cd5d9b111c469544aa4e51fa454c
Arg [13] : 348df4a500000000000000000000000042731c7a396b7a9c253ec0e750c4b0e6
Arg [14] : 4742e55e0000000000000000000000004be0f540a8a3454d4b6187e20750188d
Arg [15] : 1889425e000000000000000000000000539c4893c252ad7572e3e2b67bfe8f45
Arg [16] : 0d1c44080000000000000000000000005f7d1d2f1c3691d4aa048ce33e5a5585
Arg [17] : 81e570b80000000000000000000000006194d9c521572560fa5580f33e490c2c
Arg [18] : 38e341de0000000000000000000000006dd3115bdc0f5e4e49bb7c8e095696ae
Arg [19] : 07b9005200000000000000000000000073f09a8e3e69e182e9d0598d89897d9f
Arg [20] : 51c954a60000000000000000000000007e6769feaad5272e17ce9fde6d183c14
Arg [21] : 61a27a030000000000000000000000008244ad4b14a6679c86606e7fad639110
Arg [22] : 120db23200000000000000000000000082e1f6b604412320c12e88c054a7e5c0
Arg [23] : 425e0226000000000000000000000000876cd439e351ef5f869a7b16d955ed71
Arg [24] : 43448d24000000000000000000000000b46bcdd6ecf5443c3f9af3d57af5f840
Arg [25] : 708cfd5f000000000000000000000000e72d9a930be55d69a712662f268b8071
Arg [26] : 22ac09c6000000000000000000000000a0a7fe4611d7bef40f1efcd3a2e27141
Arg [27] : 832c5930000000000000000000000000a41bdd3cf597f35383ff8298d8ed53d6
Arg [28] : d997bb38000000000000000000000000f14dde45ed688f06d52b9bdcaac052ea
Arg [29] : 410f382500000000000000000000000000000000000000000000000000000000
Arg [30] : 0000001400000000000000000000000000000000000000000000000000000000
Arg [31] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [32] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [33] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [34] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [35] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [36] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [37] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [38] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [39] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [40] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [41] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [42] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [43] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [44] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [45] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [46] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [47] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [48] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [49] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Arg [50] : 0ccccccc00000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.