Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
3413210 | 3 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Multicast
Compiler Version
v0.8.19-1.0.1
ZkSolc Version
v1.4.1
Contract Source Code (Solidity)
/** *Submitted for verification at abscan.org on 2025-03-06 */ // Sources flattened with hardhat v2.19.4 https://hardhat.org // SPDX-License-Identifier: Apache-2.0 AND MIT // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File @openzeppelin/contracts/access/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/proxy/beacon/[email protected] // Original license: SPDX_License_Identifier: MIT // 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 @openzeppelin/contracts/interfaces/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol) pragma solidity ^0.8.0; /** * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified * proxy whose upgrades are fully controlled by the current implementation. */ interface IERC1822Proxiable { /** * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation * address. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. */ function proxiableUUID() external view returns (bytes32); } // File @openzeppelin/contracts/interfaces/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC1967.sol) pragma solidity ^0.8.0; /** * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC. * * _Available since v4.8.3._ */ interface IERC1967 { /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Emitted when the beacon is changed. */ event BeaconUpgraded(address indexed beacon); } // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [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://consensys.net/diligence/blog/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.8.0/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/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. 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: * ```solidity * 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`, `uint256`._ * _Available since v4.9 for `string`, `bytes`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes 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 } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } } // File @openzeppelin/contracts/proxy/ERC1967/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (proxy/ERC1967/ERC1967Upgrade.sol) pragma solidity ^0.8.2; /** * @dev This abstract contract provides getters and event emitting update functions for * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. * * _Available since v4.1._ */ abstract contract ERC1967Upgrade is IERC1967 { // 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 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 { _upgradeTo(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 _upgradeToAndCallUUPS(address newImplementation, bytes memory data, bool forceCall) internal { // Upgrades from old implementations will perform a rollback test. This test requires the new // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing // this special case will break upgrade paths from old UUPS implementation to new ones. if (StorageSlot.getBooleanSlot(_ROLLBACK_SLOT).value) { _setImplementation(newImplementation); } else { try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) { require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID"); } catch { revert("ERC1967Upgrade: new implementation is not UUPS"); } _upgradeToAndCall(newImplementation, data, forceCall); } } /** * @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 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 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; } /** * @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); } } } // File @openzeppelin/contracts/proxy/[email protected] // Original license: 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 {} } // File @openzeppelin/contracts/proxy/beacon/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (proxy/beacon/BeaconProxy.sol) pragma solidity ^0.8.0; /** * @dev This contract implements a proxy that gets the implementation address for each call from an {UpgradeableBeacon}. * * The beacon address is stored in storage slot `uint256(keccak256('eip1967.proxy.beacon')) - 1`, so that it doesn't * conflict with the storage layout of the implementation behind the proxy. * * _Available since v3.4._ */ contract BeaconProxy is Proxy, ERC1967Upgrade { /** * @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 initializing 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 { _upgradeBeaconToAndCall(beacon, data, false); } /** * @dev Returns the current beacon address. */ function _beacon() internal 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(); } /** * @dev Changes the proxy to use a new beacon. Deprecated: see {_upgradeBeaconToAndCall}. * * If `data` is nonempty, it's used as data in a delegate call to the implementation returned by the beacon. * * Requirements: * * - `beacon` must be a contract. * - The implementation returned by `beacon` must be a contract. */ function _setBeacon(address beacon, bytes memory data) internal virtual { _upgradeBeaconToAndCall(beacon, data, false); } } // File @openzeppelin/contracts/proxy/beacon/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/beacon/UpgradeableBeacon.sol) pragma solidity ^0.8.0; /** * @dev This contract is used in conjunction with one or more instances of {BeaconProxy} to determine their * implementation contract, which is where they will delegate all function calls. * * An owner is able to change the implementation the beacon points to, thus upgrading the proxies that use this beacon. */ contract UpgradeableBeacon is IBeacon, Ownable { address private _implementation; /** * @dev Emitted when the implementation returned by the beacon is changed. */ event Upgraded(address indexed implementation); /** * @dev Sets the address of the initial implementation, and the deployer account as the owner who can upgrade the * beacon. */ constructor(address implementation_) { _setImplementation(implementation_); } /** * @dev Returns the current implementation address. */ function implementation() public view virtual override returns (address) { return _implementation; } /** * @dev Upgrades the beacon to a new implementation. * * Emits an {Upgraded} event. * * Requirements: * * - msg.sender must be the owner of the contract. * - `newImplementation` must be a contract. */ function upgradeTo(address newImplementation) public virtual onlyOwner { _setImplementation(newImplementation); emit Upgraded(newImplementation); } /** * @dev Sets the implementation contract address for this beacon * * Requirements: * * - `newImplementation` must be a contract. */ function _setImplementation(address newImplementation) private { require(Address.isContract(newImplementation), "UpgradeableBeacon: implementation is not a contract"); _implementation = newImplementation; } } // File @openzeppelin/contracts/proxy/ERC1967/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (proxy/ERC1967/ERC1967Proxy.sol) pragma solidity ^0.8.0; /** * @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 initializing the storage of the proxy like a Solidity constructor. */ constructor(address _logic, bytes memory _data) payable { _upgradeToAndCall(_logic, _data, false); } /** * @dev Returns the current implementation address. */ function _implementation() internal view virtual override returns (address impl) { return ERC1967Upgrade._getImplementation(); } } // File @openzeppelin/contracts/proxy/transparent/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (proxy/transparent/TransparentUpgradeableProxy.sol) pragma solidity ^0.8.0; /** * @dev Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy} * does not implement this interface directly, and some of its functions are implemented by an internal dispatch * mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not * include them in the ABI so this interface must be used to interact with it. */ interface ITransparentUpgradeableProxy is IERC1967 { function admin() external view returns (address); function implementation() external view returns (address); function changeAdmin(address) external; function upgradeTo(address) external; function upgradeToAndCall(address, bytes memory) external payable; } /** * @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. * * NOTE: The real interface of this proxy is that defined in `ITransparentUpgradeableProxy`. This contract does not * inherit from that interface, and instead the admin functions are implicitly implemented using a custom dispatch * mechanism in `_fallback`. Consequently, the compiler will not produce an ABI for this contract. This is necessary to * fully implement transparency without decoding reverts caused by selector clashes between the proxy and the * implementation. * * WARNING: It is not recommended to extend this contract to add additional external functions. If you do so, the compiler * will not check that there are no selector conflicts, due to the note above. A selector clash between any new function * and the functions declared in {ITransparentUpgradeableProxy} will be resolved in favor of the new one. This could * render the admin operations inaccessible, which could prevent upgradeability. Transparency may also be compromised. */ 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) { _changeAdmin(admin_); } /** * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin. * * CAUTION: This modifier is deprecated, as it could cause issues if the modified function has arguments, and the * implementation provides a function with the same selector. */ modifier ifAdmin() { if (msg.sender == _getAdmin()) { _; } else { _fallback(); } } /** * @dev If caller is the admin process the call internally, otherwise transparently fallback to the proxy behavior */ function _fallback() internal virtual override { if (msg.sender == _getAdmin()) { bytes memory ret; bytes4 selector = msg.sig; if (selector == ITransparentUpgradeableProxy.upgradeTo.selector) { ret = _dispatchUpgradeTo(); } else if (selector == ITransparentUpgradeableProxy.upgradeToAndCall.selector) { ret = _dispatchUpgradeToAndCall(); } else if (selector == ITransparentUpgradeableProxy.changeAdmin.selector) { ret = _dispatchChangeAdmin(); } else if (selector == ITransparentUpgradeableProxy.admin.selector) { ret = _dispatchAdmin(); } else if (selector == ITransparentUpgradeableProxy.implementation.selector) { ret = _dispatchImplementation(); } else { revert("TransparentUpgradeableProxy: admin cannot fallback to proxy target"); } assembly { return(add(ret, 0x20), mload(ret)) } } else { super._fallback(); } } /** * @dev Returns the current admin. * * 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 _dispatchAdmin() private returns (bytes memory) { _requireZeroValue(); address admin = _getAdmin(); return abi.encode(admin); } /** * @dev Returns the current implementation. * * 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 _dispatchImplementation() private returns (bytes memory) { _requireZeroValue(); address implementation = _implementation(); return abi.encode(implementation); } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. */ function _dispatchChangeAdmin() private returns (bytes memory) { _requireZeroValue(); address newAdmin = abi.decode(msg.data[4:], (address)); _changeAdmin(newAdmin); return ""; } /** * @dev Upgrade the implementation of the proxy. */ function _dispatchUpgradeTo() private returns (bytes memory) { _requireZeroValue(); address newImplementation = abi.decode(msg.data[4:], (address)); _upgradeToAndCall(newImplementation, bytes(""), false); return ""; } /** * @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. */ function _dispatchUpgradeToAndCall() private returns (bytes memory) { (address newImplementation, bytes memory data) = abi.decode(msg.data[4:], (address, bytes)); _upgradeToAndCall(newImplementation, data, true); return ""; } /** * @dev Returns the current admin. * * CAUTION: This function is deprecated. Use {ERC1967Upgrade-_getAdmin} instead. */ function _admin() internal view virtual returns (address) { return _getAdmin(); } /** * @dev To keep this contract fully transparent, all `ifAdmin` functions must be payable. This helper is here to * emulate some proxy functions being non-payable while still allowing value to pass through. */ function _requireZeroValue() private { require(msg.value == 0); } } // File @openzeppelin/contracts/proxy/transparent/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.3) (proxy/transparent/ProxyAdmin.sol) pragma solidity ^0.8.0; /** * @dev This is an auxiliary contract meant to be assigned as the admin of a {TransparentUpgradeableProxy}. For an * explanation of why you would want to use this see the documentation for {TransparentUpgradeableProxy}. */ contract ProxyAdmin is Ownable { /** * @dev Returns the current implementation of `proxy`. * * Requirements: * * - This contract must be the admin of `proxy`. */ function getProxyImplementation(ITransparentUpgradeableProxy proxy) public view virtual returns (address) { // We need to manually run the static call since the getter cannot be flagged as view // bytes4(keccak256("implementation()")) == 0x5c60da1b (bool success, bytes memory returndata) = address(proxy).staticcall(hex"5c60da1b"); require(success); return abi.decode(returndata, (address)); } /** * @dev Returns the current admin of `proxy`. * * Requirements: * * - This contract must be the admin of `proxy`. */ function getProxyAdmin(ITransparentUpgradeableProxy proxy) public view virtual returns (address) { // We need to manually run the static call since the getter cannot be flagged as view // bytes4(keccak256("admin()")) == 0xf851a440 (bool success, bytes memory returndata) = address(proxy).staticcall(hex"f851a440"); require(success); return abi.decode(returndata, (address)); } /** * @dev Changes the admin of `proxy` to `newAdmin`. * * Requirements: * * - This contract must be the current admin of `proxy`. */ function changeProxyAdmin(ITransparentUpgradeableProxy proxy, address newAdmin) public virtual onlyOwner { proxy.changeAdmin(newAdmin); } /** * @dev Upgrades `proxy` to `implementation`. See {TransparentUpgradeableProxy-upgradeTo}. * * Requirements: * * - This contract must be the admin of `proxy`. */ function upgrade(ITransparentUpgradeableProxy proxy, address implementation) public virtual onlyOwner { proxy.upgradeTo(implementation); } /** * @dev Upgrades `proxy` to `implementation` and calls a function on the new implementation. See * {TransparentUpgradeableProxy-upgradeToAndCall}. * * Requirements: * * - This contract must be the admin of `proxy`. */ function upgradeAndCall( ITransparentUpgradeableProxy proxy, address implementation, bytes memory data ) public payable virtual onlyOwner { proxy.upgradeToAndCall{value: msg.value}(implementation, data); } } // File contracts/libraries/Bytes.sol // Original license: SPDX_License_Identifier: Apache-2.0 pragma solidity 0.8.19; // Index is out of range error OutOfRange(uint256 requiredLen, uint256 maxLen); library Bytes { // Read address from input bytes buffer function readAddress(bytes memory input, uint256 offset) internal pure returns (address result) { if (offset + 20 > input.length) { revert OutOfRange(offset + 20, input.length); } assembly { result := shr(96, mload(add(add(input, 0x20), offset))) } } // Read unsafe from input bytes buffer function readUintUnsafe(bytes memory input, uint256 offset, uint256 bitLen) internal pure returns (uint256 result) { assembly { result := shr(sub(256, bitLen), mload(add(add(input, 0x20), offset))) } } // Read uint256 from input bytes buffer function readUint256(bytes memory input, uint256 offset) internal pure returns (uint256 result) { if (offset + 32 > input.length) { revert OutOfRange(offset + 32, input.length); } assembly { result := mload(add(add(input, 0x20), offset)) } } // Read a sub bytes array from input bytes buffer function readBytes(bytes memory input, uint256 offset, uint256 length) internal pure returns (bytes memory) { if (offset + length > input.length) { revert OutOfRange(offset + length, input.length); } bytes memory result = new bytes(length); assembly { // Seek offset to the beginning let seek := add(add(input, 0x20), offset) // Next is size of data let resultOffset := add(result, 0x20) for { let i := 0 } lt(i, length) { i := add(i, 0x20) } { mstore(add(resultOffset, i), mload(add(seek, i))) } } return result; } } // File contracts/multicast/MultiCast.sol // Original license: SPDX_License_Identifier: Apache-2.0 pragma solidity 0.8.19; error InvalidLength(); contract Multicast { // Using Bytes for bytes using Bytes for bytes; // Multicast result struct MulticastResult { bool success; bytes result; } // EVM state struct EvmState { uint256 blockNumber; bytes32 previousBlockHash; uint256 chainId; uint256 gaslimit; uint256 timestamp; } // Cast to the same target function cast(address target, bytes[] calldata inputs) public view returns (MulticastResult[] memory returnData) { returnData = new MulticastResult[](inputs.length); for (uint256 i = 0; i < inputs.length; i += 1) { (bool success, bytes memory ret) = target.staticcall(inputs[i]); returnData[i] = MulticastResult({ success: success, result: ret }); } } // Cast to multi-target function multicast( address[] calldata targets, bytes[] calldata inputs ) public view returns (MulticastResult[] memory returnData) { if (targets.length != inputs.length) { revert InvalidLength(); } returnData = new MulticastResult[](inputs.length); for (uint256 i = 0; i < inputs.length; i += 1) { (bool success, bytes memory ret) = targets[i].staticcall(inputs[i]); returnData[i] = MulticastResult({ success: success, result: ret }); } } // Get EVM state function state() public view returns (EvmState memory) { return EvmState({ blockNumber: block.number, previousBlockHash: blockhash(block.number - 1), chainId: block.chainid, gaslimit: block.gaslimit, timestamp: block.timestamp }); } // Get digests of multiple contracts function contractDigest(address[] calldata addresses) public view returns (bytes32[] memory digests) { digests = new bytes32[](addresses.length); for (uint256 i = 0; i < addresses.length; i += 1) { digests[i] = addresses[i].codehash; } } // Get native balances of multiple addresses function nativeBalance(address[] calldata addresses) public view returns (uint256[] memory balances) { balances = new uint256[](addresses.length); for (uint256 i = 0; i < addresses.length; i += 1) { balances[i] = addresses[i].balance; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"name":"InvalidLength","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes[]","name":"inputs","type":"bytes[]"}],"name":"cast","outputs":[{"components":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"bytes","name":"result","type":"bytes"}],"internalType":"struct Multicast.MulticastResult[]","name":"returnData","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"contractDigest","outputs":[{"internalType":"bytes32[]","name":"digests","type":"bytes32[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"bytes[]","name":"inputs","type":"bytes[]"}],"name":"multicast","outputs":[{"components":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"bytes","name":"result","type":"bytes"}],"internalType":"struct Multicast.MulticastResult[]","name":"returnData","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"nativeBalance","outputs":[{"internalType":"uint256[]","name":"balances","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"state","outputs":[{"components":[{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"bytes32","name":"previousBlockHash","type":"bytes32"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"uint256","name":"gaslimit","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"internalType":"struct Multicast.EvmState","name":"","type":"tuple"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010001113809894ea7720ae4ed700701327eef19fdf92289baa0fb338f4473e800000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0003000000000002000a000000000002000000000301034f000000000103001900000060011002700002000000030355000000f00010019d000000f0041001970000000101200190000000380000c13d0000008001000039000000400010043f000000040140008c0000011c0000413d000000000143034f000000000203043b000000e002200270000000f20520009c000000420000a13d000000f30520009c000000860000613d000000f40520009c000000cf0000613d000000f50120009c0000011c0000c13d0000000001000416000000000101004b0000011c0000c13d0000012001000039000000400010043f000000800000043f000000a00000043f000000c00000043f000000e00000043f000001000000043f000000f8010000410000000000100439000000f0010000410000000002000414000000f00320009c0000000002018019000000c001200210000000f9011001c70000800b0200003903bc03b70000040f0000000102200190000001c30000613d000000000201043b000000000102004b000001390000c13d000000ff0100004100000000001004350000001101000039000000040010043f0000010001000041000003be000104300000008001000039000000400010043f0000000001000416000000000101004b0000011c0000c13d000000200100003900000100001004430000012000000443000000f101000041000003bd0001042e000000f60520009c000001130000613d000000f70220009c0000011c0000c13d0000000002000416000000240540008c0000011c0000413d000000000202004b0000011c0000c13d0000000402300370000000000202043b000001010520009c0000011c0000213d0000002305200039000000000545004b0000011c0000813d0000000405200039000000000353034f000000000303043b000600000003001d000001010330009c0000011c0000213d000500240020003d000000060200002900000005032002100000000502300029000000000242004b0000011c0000213d0000003f023000390000010402200197000001050420009c000001330000213d0000008002200039000000400020043f0000000602000029000000800020043f0000001f0230018f0000000503300272000000720000613d00000000040000190000000505400210000000000651034f000000000606043b000000a00550003900000000006504350000000104400039000000000534004b0000006a0000413d000000000102004b000000740000613d000000060100006b0000017f0000c13d000000400100043d00000020020000390000000002210436000000800300043d00000000003204350000004002100039000000000403004b000000c50000613d000000a0040000390000000005000019000000004604043400000000026204360000000105500039000000000635004b000000800000413d000000c50000013d0000000002000416000000240540008c0000011c0000413d000000000202004b0000011c0000c13d0000000402300370000000000202043b000001010520009c0000011c0000213d0000002305200039000000000545004b0000011c0000813d0000000405200039000000000353034f000000000303043b000600000003001d000001010330009c0000011c0000213d000500240020003d000000060200002900000005032002100000000502300029000000000242004b0000011c0000213d0000003f023000390000010402200197000001050420009c000001330000213d0000008002200039000000400020043f0000000602000029000000800020043f0000001f0230018f0000000503300272000000b20000613d00000000040000190000000505400210000000000651034f000000000606043b000000a00550003900000000006504350000000104400039000000000534004b000000aa0000413d000000000102004b000000b40000613d000000060100006b000001a10000c13d000000400100043d00000020020000390000000002210436000000800300043d00000000003204350000004002100039000000000403004b000000c50000613d000000a0040000390000000005000019000000004604043400000000026204360000000105500039000000000635004b000000c00000413d0000000002120049000000f003000041000000f00420009c0000000002038019000000f00410009c000000000103801900000040011002100000006002200210000000000112019f000003bd0001042e0000000002000416000000440540008c0000011c0000413d000000000202004b0000011c0000c13d0000000402300370000000000202043b000001010520009c0000011c0000213d0000002305200039000000000545004b0000011c0000813d0000000405200039000000000553034f000000000b05043b0000010105b0009c0000011c0000213d000000240c2000390000000502b002100000000002c20019000000000242004b0000011c0000213d0000002402300370000000000d02043b0000010102d0009c0000011c0000213d0000002302d00039000000000242004b0000011c0000813d0000000402d00039000000000223034f000000000502043b000001010250009c0000011c0000213d000000240ed0003900000005025002100000000006e20019000000000446004b0000011c0000213d00000000045b004b000001ea0000c13d0000003f042000390000010405400197000001050450009c000001330000213d0000008004500039000000400040043f0000008000b0043f00000000060b004b000001c90000613d000001060550009c000001330000213d000000600f00003900000000050000190000004006400039000000400060043f00000020064000390000000000f604350000000000040435000000a00650003900000000004604350000002005500039000000000425004b000002a30000813d000000400400043d000001090640009c000001050000a13d000001330000013d0000000002000416000000440540008c0000011c0000413d000000000202004b0000011c0000c13d0000000402300370000000000c02043b0000010702c0009c0000011e0000a13d0000000001000019000003be000104300000002402300370000000000d02043b0000010102d0009c0000011c0000213d0000002302d00039000000000242004b0000011c0000813d0000000402d00039000000000223034f000000000e02043b0000010102e0009c0000011c0000213d000000240fd000390000000502e002100000000005f20019000000000545004b0000011c0000213d0000003f052000390000010406500197000001050560009c000001c40000a13d000000ff0100004100000000001004350000004101000039000000040010043f0000010001000041000003be00010430000500000002001d03bc03920000040f000800000001001d00000005030000290000000002310436000600000002001d00090001003000920000800b01000039000700000001001d00000024030000390000000004000415000000090440008a0000000504400210000000fa0200004103bc039f0000040f000000060200002900000000001204350000000403000039000400000003001d00000000040004150000000a0440008a0000000504400210000300000004001d0000000701000029000000fb0200004103bc039f0000040f00000008020000290000004002200039000200000002001d00000000001204350000000701000029000000fc020000410000000403000029000000030400002903bc039f0000040f00000008020000290000006002200039000100000002001d00000000001204350000000701000029000000fd020000410000000403000029000000030400002903bc039f0000040f000000080200002900000080022000390000000000120435000000400100043d0000000503000029000000000331043600000006040000290000000004040433000000000043043500000002030000290000000003030433000000400410003900000000003404350000000103000029000000000303043300000060041000390000000000340435000000000202043300000080031000390000000000230435000000f002000041000000f00310009c00000000010280190000004001100210000000fe011001c7000003bd0001042e000480020000003d0000000003000019000000050430021000000005014000290000000201100367000000000101043b000001070210009c0000011c0000213d000700000004001d000800000003001d0000010c02000041000000000020043900000004001004430000000001000414000000f00210009c000000f001008041000000c0011002100000010b011001c7000000040200002903bc03b70000040f0000000102200190000001c30000613d000000800200043d0000000803000029000000000232004b0000035a0000a13d000000000101043b0000000702000029000000a00220003900000000001204350000000103300039000000060130006c000001810000413d000000760000013d0004800a0000003d0000000003000019000000050430021000000005014000290000000201100367000000000101043b000001070210009c0000011c0000213d000700000004001d000800000003001d0000010a02000041000000000020043900000004001004430000000001000414000000f00210009c000000f001008041000000c0011002100000010b011001c7000000040200002903bc03b70000040f0000000102200190000001c30000613d000000800200043d0000000803000029000000000232004b0000035a0000a13d000000000101043b0000000702000029000000a00220003900000000001204350000000103300039000000060130006c000001a30000413d000000b60000013d000000000001042f0000008005600039000000400050043f0000008000e0043f00000000070e004b000001d80000c13d000000400100043d000800000001001d000000800200003903bc03600000040f00000008040000290000000001410049000000f002000041000000f00310009c0000000001028019000000f00340009c000000000402801900000040024002100000006001100210000000000121019f000003bd0001042e000001060660009c000001330000213d000000600b00003900000000060000190000004007500039000000400070043f00000020075000390000000000b704350000000000050435000000a00760003900000000005704350000002006600039000000000526004b000001ee0000813d000000400500043d000001090750009c000001dc0000a13d000001330000013d0000010201000041000000800010043f0000010301000041000003be00010430000000000500001900060000000b001d00050000000c001d00040000000d001d00030000000e001d00020000000f001d000800000005001d00070005005002180000000702f00029000000000223034f0000000005d40049000000430550008a000000000202043b000000000652004b00000108090000410000000006000019000000000609801900000108055001970000010807200197000000000857004b00000000080000190000000008094019000000000557013f000001080550009c000000000806c019000000000508004b0000011c0000c13d0000000005f20019000000000253034f000000000202043b000001010620009c0000011c0000213d00000000062400490000002005500039000000000765004b000001080a000041000000000700001900000000070a201900000108066001970000010808500197000000000968004b000000000900001900000000090a4019000000000668013f000001080660009c000000000907c019000000000609004b0000011c0000c13d000000000653034f000000400500043d00000005072002720000022b0000613d00000000080000190000000509800210000000000a950019000000000996034f000000000909043b00000000009a04350000000108800039000000000978004b000002230000413d0000001f082001900000023a0000613d0000000507700210000000000676034f00000000077500190000000308800210000000000907043300000000098901cf000000000989022f000000000606043b0000010008800089000000000686022f00000000068601cf000000000696019f00000000006704350000000006250019000000000006043500000000060004140000000407c0008c000002450000c13d00000001020000390000000106000031000000000506004b00000000050b0019000002610000c13d0000028c0000013d000000f00120009c000000f00300004100000000020380190000006001200210000000f00250009c00000000050380190000004002500210000000000112019f000000f00260009c0000000006038019000000c002600210000000000112019f00000000020c001903bc03b70000040f000000060b000029000000020f000029000000030e000029000000040d000029000000050c0000290000000004000031000000020300036700000000050100190000006005500270000100f00050019d000000f006500197000000000506004b00000000050b00190000028c0000613d0000001f05600039000000200700008a000000000575016f0000003f05500039000000000775016f000000400500043d0000000007750019000000000857004b00000000080000190000000108004039000001010970009c000001330000213d0000000108800190000001330000c13d000000400070043f000000000765043600000005086002720000027c0000613d0000000009000019000000050a900210000000000ba70019000000000aa1034f000000000a0a043b0000000000ab04350000000109900039000000000a89004b000002740000413d0000001f066001900000028b0000613d0000000508800210000000000981034f00000000078700190000000306600210000000000807043300000000086801cf000000000868022f000000000909043b0000010006600089000000000969022f00000000066901cf000000000686019f0000000000670435000000060b000029000000400600043d000001090760009c000001330000213d0000004007600039000000400070043f00000020076000390000000000570435000000010220018f0000000000260435000000800200043d0000000805000029000000000252004b0000035a0000a13d0000000702000029000000a0022000390000000000620435000000800200043d000000000252004b0000035a0000a13d00000001055000390000000002e5004b000001f40000413d000001c90000013d000000000400001900060000000b001d00050000000c001d00040000000d001d00030000000e001d00020000000f001d000700000004001d00080005004002180000000802c00029000000000223034f000000000202043b000001070420009c0000011c0000213d0000000804e00029000000000443034f00000000050000310000000006d50049000000430660008a000000000404043b000000000764004b000001080a000041000000000700001900000000070a801900000108066001970000010808400197000000000968004b000000000900001900000000090a4019000000000668013f000001080660009c000000000907c019000000000609004b0000011c0000c13d0000000006e40019000000000463034f000000000404043b000001010740009c0000011c0000213d00000000074500490000002005600039000000000675004b000000000600001900000000060a201900000108077001970000010808500197000000000978004b000000000900001900000000090a4019000000000778013f000001080770009c000000000906c019000000000609004b0000011c0000c13d000000000653034f000000400500043d0000000507400272000002e50000613d00000000080000190000000509800210000000000a950019000000000996034f000000000909043b00000000009a04350000000108800039000000000978004b000002dd0000413d0000001f08400190000002f40000613d0000000507700210000000000676034f00000000077500190000000308800210000000000907043300000000098901cf000000000989022f000000000606043b0000010008800089000000000686022f00000000068601cf000000000696019f0000000000670435000000000645001900000000000604350000000006000414000000040720008c000002ff0000c13d00000001020000390000000105000031000000000405004b00000000040f0019000003190000c13d000003430000013d000000f00140009c000000f00700004100000000040780190000006001400210000000f00350009c00000000050780190000004003500210000000000113019f000000f00360009c0000000006078019000000c003600210000000000113019f03bc03b70000040f000000020f000029000000030e000029000000040d000029000000050c000029000000060b000029000000020300036700000000040100190000006004400270000100f00040019d000000f005400197000000000405004b00000000040f0019000003430000613d0000001f04500039000000200600008a000000000464016f0000003f04400039000000000664016f000000400400043d0000000006640019000000000746004b00000000070000190000000107004039000001010860009c000001330000213d0000000107700190000001330000c13d000000400060043f00000000065404360000000507500272000003340000613d00000000080000190000000509800210000000000a960019000000000991034f000000000909043b00000000009a04350000000108800039000000000978004b0000032c0000413d0000001f05500190000003430000613d0000000507700210000000000871034f00000000067600190000000305500210000000000706043300000000075701cf000000000757022f000000000808043b0000010005500089000000000858022f00000000055801cf000000000575019f0000000000560435000000400500043d000001090650009c000001330000213d0000004006500039000000400060043f00000020065000390000000000460435000000010220018f0000000000250435000000800200043d0000000704000029000000000242004b0000035a0000a13d0000000802000029000000a0022000390000000000520435000000800200043d000000000242004b0000035a0000a13d00000001044000390000000002b4004b000002a90000413d000001c90000013d000000ff0100004100000000001004350000003201000039000000040010043f0000010001000041000003be000104300000002003000039000000000331043600000000040204330000000000430435000000400510003900000005034002100000000003350019000000000604004b000003900000613d00000040060000390000000007000019000003750000013d0000001f09800039000000200a00008a0000000009a9016f0000000008830019000000000008043500000000039300190000000107700039000000000847004b000003900000813d0000000008130049000000400880008a0000000005850436000000200220003900000000080204330000000098080434000000000808004b0000000008000019000000010800c039000000000883043600000000090904330000000000680435000000400a300039000000009809043400000000008a04350000006003300039000000000a08004b0000036c0000613d000000000a000019000000000ba30019000000000ca90019000000000c0c04330000000000cb0435000000200aa00039000000000b8a004b000003880000413d0000036c0000013d0000000001030019000000000001042d000000400100043d0000010d0210009c000003980000813d000000a002100039000000400020043f000000000001042d000000ff0100004100000000001004350000004101000039000000040010043f0000010001000041000003be00010430000000000001042f00000000050100190000000000200439000000040130008c000003a60000a13d000000050140027000000000010100310000000400100443000000f0010000410000000002000414000000f00420009c0000000002018019000000f00430009c00000000030180190000006001300210000000c002200210000000000112019f0000010e011001c7000000000205001903bc03b70000040f0000000102200190000003b60000613d000000000101043b000000000001042d000000000001042f000003ba002104230000000102000039000000000001042d0000000002000019000000000001042d000003bc00000432000003bd0001042e000003be00010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff0000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000007449975a000000000000000000000000000000000000000000000000000000007449975b000000000000000000000000000000000000000000000000000000008ffbd41900000000000000000000000000000000000000000000000000000000c19d93fb000000000000000000000000000000000000000000000000000000000f4be7d3000000000000000000000000000000000000000000000000000000004ab344c542cbb15ccdc3cad6266b0e7a08c0454b23bf29dc2df74b6f3c209e9336465bd1020000020000000000000000000000000000000400000000000000000000000080b41246c05cbb406f874e82aa2faf7db11bba9792fe09929e56ef1eee2c2da39a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b7877a797fe6dca4321f33fd95414da079ab78e698d761514c01ced9211af267e796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913200000000000000000000000000000000000000a00000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff947d5a840000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000008000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f000000000000000000000000000000000000000000000000ffffffffffffff3f000000000000000000000000ffffffffffffffffffffffffffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf9cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f390200000200000000000000000000000000000024000000000000000000000000e03fe177bb050a40ea1b3ecd64121a3fa063a94b6d404b2f45c64697555efe0e000000000000000000000000000000000000000000000000ffffffffffffff6002000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bf7e976373a965896cc6072c41ab600c76ee1611f06082bb0d192d5b4c1619b6
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.