Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 229 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Propagate Root | 24511251 | 1 min ago | IN | 0 ETH | 0.00015811 | ||||
| Propagate Root | 24510958 | 1 hr ago | IN | 0 ETH | 0.00028183 | ||||
| Propagate Root | 24510658 | 2 hrs ago | IN | 0 ETH | 0.00042579 | ||||
| Propagate Root | 24510351 | 3 hrs ago | IN | 0 ETH | 0.0000663 | ||||
| Propagate Root | 24510053 | 4 hrs ago | IN | 0 ETH | 0.00031089 | ||||
| Propagate Root | 24509754 | 5 hrs ago | IN | 0 ETH | 0.0002432 | ||||
| Propagate Root | 24509453 | 6 hrs ago | IN | 0 ETH | 0.00010263 | ||||
| Propagate Root | 24509156 | 7 hrs ago | IN | 0 ETH | 0.0001311 | ||||
| Propagate Root | 24508858 | 8 hrs ago | IN | 0 ETH | 0.00035051 | ||||
| Propagate Root | 24508558 | 9 hrs ago | IN | 0 ETH | 0.00022303 | ||||
| Propagate Root | 24508259 | 10 hrs ago | IN | 0 ETH | 0.00026388 | ||||
| Propagate Root | 24507964 | 11 hrs ago | IN | 0 ETH | 0.00040542 | ||||
| Propagate Root | 24507661 | 12 hrs ago | IN | 0 ETH | 0.00046055 | ||||
| Propagate Root | 24507365 | 13 hrs ago | IN | 0 ETH | 0.00014894 | ||||
| Propagate Root | 24507065 | 14 hrs ago | IN | 0 ETH | 0.00025319 | ||||
| Propagate Root | 24506766 | 15 hrs ago | IN | 0 ETH | 0.00044076 | ||||
| Propagate Root | 24506467 | 16 hrs ago | IN | 0 ETH | 0.00038671 | ||||
| Propagate Root | 24506168 | 17 hrs ago | IN | 0 ETH | 0.00084652 | ||||
| Propagate Root | 24505868 | 18 hrs ago | IN | 0 ETH | 0.00064803 | ||||
| Propagate Root | 24505569 | 19 hrs ago | IN | 0 ETH | 0.00039643 | ||||
| Propagate Root | 24505269 | 20 hrs ago | IN | 0 ETH | 0.00030044 | ||||
| Propagate Root | 24504971 | 21 hrs ago | IN | 0 ETH | 0.000691 | ||||
| Propagate Root | 24504672 | 22 hrs ago | IN | 0 ETH | 0.00053152 | ||||
| Propagate Root | 24504373 | 23 hrs ago | IN | 0 ETH | 0.00068557 | ||||
| Propagate Root | 24504073 | 24 hrs ago | IN | 0 ETH | 0.00019944 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xE85bC6Df...bE5B93Df2 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
OpStateBridge
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
Yes with 10000 runs
Other Settings:
prague EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
// Optimism interface for cross domain messaging
import {ICrossDomainMessenger} from
"src/vendor/optimism/ICrossDomainMessenger.sol";
import {IOpWorldID} from "./interfaces/IOpWorldID.sol";
import {IRootHistory} from "./interfaces/IRootHistory.sol";
import {IWorldIDIdentityManager} from "./interfaces/IWorldIDIdentityManager.sol";
import {Ownable2Step} from "openzeppelin-contracts/access/Ownable2Step.sol";
import {CrossDomainOwnable3} from "src/vendor/optimism/CrossDomainOwnable3.sol";
/// @title World ID State Bridge Optimism
/// @author Worldcoin
/// @notice Distributes new World ID Identity Manager roots to an OP Stack network
/// @dev This contract lives on Ethereum mainnet and works for Optimism and any OP Stack based chain
contract OpStateBridge is Ownable2Step {
///////////////////////////////////////////////////////////////////
/// STORAGE ///
///////////////////////////////////////////////////////////////////
/// @notice The address of the OpWorldID contract on any OP Stack chain
address public immutable opWorldIDAddress;
/// @notice address for OP Stack chain Ethereum mainnet L1CrossDomainMessenger contract
address internal immutable crossDomainMessengerAddress;
/// @notice Ethereum mainnet worldID Address
address public immutable worldIDAddress;
/// @notice Amount of gas purchased on the OP Stack chain for propagateRoot
uint32 internal _gasLimitPropagateRoot;
/// @notice Amount of gas purchased on the OP Stack chain for SetRootHistoryExpiry
uint32 internal _gasLimitSetRootHistoryExpiry;
/// @notice Amount of gas purchased on the OP Stack chain for transferOwnershipOp
uint32 internal _gasLimitTransferOwnership;
/// @notice The default gas limit amount to buy on an OP stack chain to do simple transactions
uint32 public constant DEFAULT_OP_GAS_LIMIT = 1000000;
///////////////////////////////////////////////////////////////////
/// EVENTS ///
///////////////////////////////////////////////////////////////////
/// @notice Emitted when the StateBridge gives ownership of the OPWorldID contract
/// to the WorldID Identity Manager contract away
/// @param previousOwner The previous owner of the OPWorldID contract
/// @param newOwner The new owner of the OPWorldID contract
/// @param isLocal Whether the ownership transfer is local (Optimism/OP Stack chain EOA/contract)
/// or an Ethereum EOA or contract
event OwnershipTransferredOp(
address indexed previousOwner, address indexed newOwner, bool isLocal
);
/// @notice Emitted when the StateBridge sends a root to the OPWorldID contract
/// @param root The root sent to the OPWorldID contract on the OP Stack chain
event RootPropagated(uint256 root);
/// @notice Emitted when the StateBridge sets the root history expiry for OpWorldID and PolygonWorldID
/// @param rootHistoryExpiry The new root history expiry
event SetRootHistoryExpiry(uint256 rootHistoryExpiry);
/// @notice Emitted when the StateBridge sets the gas limit for sendRootOp
/// @param _opGasLimit The new opGasLimit for sendRootOp
event SetGasLimitPropagateRoot(uint32 _opGasLimit);
/// @notice Emitted when the StateBridge sets the gas limit for SetRootHistoryExpiry
/// @param _opGasLimit The new opGasLimit for SetRootHistoryExpiry
event SetGasLimitSetRootHistoryExpiry(uint32 _opGasLimit);
/// @notice Emitted when the StateBridge sets the gas limit for transferOwnershipOp
/// @param _opGasLimit The new opGasLimit for transferOwnershipOptimism
event SetGasLimitTransferOwnershipOp(uint32 _opGasLimit);
///////////////////////////////////////////////////////////////////
/// ERRORS ///
///////////////////////////////////////////////////////////////////
/// @notice Emitted when an attempt is made to renounce ownership.
error CannotRenounceOwnership();
/// @notice Emitted when an attempt is made to set the gas limit to zero
error GasLimitZero();
/// @notice Emitted when an attempt is made to set an address to zero
error AddressZero();
///////////////////////////////////////////////////////////////////
/// CONSTRUCTOR ///
///////////////////////////////////////////////////////////////////
/// @notice constructor
/// @param _worldIDIdentityManager Deployment address of the WorldID Identity Manager contract
/// @param _opWorldIDAddress Address of the Optimism contract that will receive the new root and timestamp
/// @param _crossDomainMessenger L1CrossDomainMessenger contract used to communicate with the desired OP
/// Stack network
/// @custom:revert if any of the constructor params addresses are zero
constructor(
address _worldIDIdentityManager,
address _opWorldIDAddress,
address _crossDomainMessenger
) {
if (
_worldIDIdentityManager == address(0) || _opWorldIDAddress == address(0)
|| _crossDomainMessenger == address(0)
) {
revert AddressZero();
}
opWorldIDAddress = _opWorldIDAddress;
worldIDAddress = _worldIDIdentityManager;
crossDomainMessengerAddress = _crossDomainMessenger;
_gasLimitPropagateRoot = DEFAULT_OP_GAS_LIMIT;
_gasLimitSetRootHistoryExpiry = DEFAULT_OP_GAS_LIMIT;
_gasLimitTransferOwnership = DEFAULT_OP_GAS_LIMIT;
}
///////////////////////////////////////////////////////////////////
/// PUBLIC API ///
///////////////////////////////////////////////////////////////////
/// @notice Sends the latest WorldID Identity Manager root to the IOpStack.
/// @dev Calls this method on the L1 Proxy contract to relay roots to the destination OP Stack chain
function propagateRoot() external {
uint256 latestRoot = IWorldIDIdentityManager(worldIDAddress).latestRoot();
// The `encodeCall` function is strongly typed, so this checks that we are passing the
// correct data to the optimism bridge.
bytes memory message = abi.encodeCall(IOpWorldID.receiveRoot, (latestRoot));
ICrossDomainMessenger(crossDomainMessengerAddress).sendMessage(
// Contract address on the OP Stack Chain
opWorldIDAddress,
message,
_gasLimitPropagateRoot
);
emit RootPropagated(latestRoot);
}
/// @notice Adds functionality to the StateBridge to transfer ownership
/// of OpWorldID to another contract on L1 or to a local OP Stack chain EOA
/// @param _owner new owner (EOA or contract)
/// @param _isLocal true if new owner is on Optimism, false if it is a cross-domain owner
/// @custom:revert if _owner is set to the zero address
function transferOwnershipOp(address _owner, bool _isLocal) external onlyOwner {
if (_owner == address(0)) {
revert AddressZero();
}
// The `encodeCall` function is strongly typed, so this checks that we are passing the
// correct data to the OP Stack chain bridge.
bytes memory message =
abi.encodeCall(CrossDomainOwnable3.transferOwnership, (_owner, _isLocal));
ICrossDomainMessenger(crossDomainMessengerAddress).sendMessage(
// Contract address on the OP Stack Chain
opWorldIDAddress,
message,
_gasLimitTransferOwnership
);
emit OwnershipTransferredOp(owner(), _owner, _isLocal);
}
/// @notice Adds functionality to the StateBridge to set the root history expiry on OpWorldID
/// @param _rootHistoryExpiry new root history expiry
function setRootHistoryExpiry(uint256 _rootHistoryExpiry) external onlyOwner {
// The `encodeCall` function is strongly typed, so this checks that we are passing the
// correct data to the optimism bridge.
bytes memory message =
abi.encodeCall(IRootHistory.setRootHistoryExpiry, (_rootHistoryExpiry));
ICrossDomainMessenger(crossDomainMessengerAddress).sendMessage(
// Contract address on the OP Stack Chain
opWorldIDAddress,
message,
_gasLimitSetRootHistoryExpiry
);
emit SetRootHistoryExpiry(_rootHistoryExpiry);
}
///////////////////////////////////////////////////////////////////
/// OP GAS LIMIT ///
///////////////////////////////////////////////////////////////////
/// @notice Sets the gas limit for the propagateRoot method
/// @param _opGasLimit The new gas limit for the propagateRoot method
function setGasLimitPropagateRoot(uint32 _opGasLimit) external onlyOwner {
if (_opGasLimit <= 0) {
revert GasLimitZero();
}
_gasLimitPropagateRoot = _opGasLimit;
emit SetGasLimitPropagateRoot(_opGasLimit);
}
/// @notice Sets the gas limit for the SetRootHistoryExpiry method
/// @param _opGasLimit The new gas limit for the SetRootHistoryExpiry method
function setGasLimitSetRootHistoryExpiry(uint32 _opGasLimit) external onlyOwner {
if (_opGasLimit <= 0) {
revert GasLimitZero();
}
_gasLimitSetRootHistoryExpiry = _opGasLimit;
emit SetGasLimitSetRootHistoryExpiry(_opGasLimit);
}
/// @notice Sets the gas limit for the transferOwnershipOp method
/// @param _opGasLimit The new gas limit for the transferOwnershipOp method
function setGasLimitTransferOwnershipOp(uint32 _opGasLimit) external onlyOwner {
if (_opGasLimit <= 0) {
revert GasLimitZero();
}
_gasLimitTransferOwnership = _opGasLimit;
emit SetGasLimitTransferOwnershipOp(_opGasLimit);
}
///////////////////////////////////////////////////////////////////
/// OWNERSHIP ///
///////////////////////////////////////////////////////////////////
/// @notice Ensures that ownership of WorldID implementations cannot be renounced.
/// @dev This function is intentionally not `virtual` as we do not want it to be possible to
/// renounce ownership for any WorldID implementation.
/// @dev This function is marked as `onlyOwner` to maintain the access restriction from the base
/// contract.
function renounceOwnership() public view override onlyOwner {
revert CannotRenounceOwnership();
}
}// SPDX-License-Identifier: MIT
pragma solidity >0.5.0 <0.9.0;
/**
* @title ICrossDomainMessenger
* @dev Vendored from @eth-optimism/contracts v0.6.0
*/
interface ICrossDomainMessenger {
event SentMessage(
address indexed target, address sender, bytes message, uint256 messageNonce, uint256 gasLimit
);
event RelayedMessage(bytes32 indexed msgHash);
event FailedRelayedMessage(bytes32 indexed msgHash);
function xDomainMessageSender() external view returns (address);
/**
* Sends a cross domain message to the target messenger.
* @param _target Target contract address.
* @param _message Message to send to the target.
* @param _gasLimit Gas limit for the provided message.
*/
function sendMessage(address _target, bytes calldata _message, uint32 _gasLimit) external;
}//SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
/// @title Interface for the OpWorldID contract
/// @author Worldcoin
/// @custom:usage abi.encodeCall(IOpWorldID.receiveRoot, (_newRoot, _supersedeTimestamp));
interface IOpWorldID {
////////////////////////////////////////////////////////////////////////////////
/// ROOT MIRRORING ///
///////////////////////////////////////////////////////////////////////////////
/// @notice This function is called by the state bridge contract when it forwards a new root to
/// the bridged WorldID.
/// @dev This function can revert if Optimism's CrossDomainMessenger stops processing proofs
/// or if OPLabs stops submitting them. Next iteration of Optimism's cross-domain messaging, will be
/// fully permissionless for message-passing, so this will not be an issue.
/// Sequencer needs to include changes to the CrossDomainMessenger contract on L1, not economically penalized
/// if messages are not included, however the fraud prover (Cannon) can force the sequencer to include it.
///
/// @param newRoot The value of the new root.
///
/// @custom:reverts CannotOverwriteRoot If the root already exists in the root history.
/// @custom:reverts string If the caller is not the owner.
function receiveRoot(uint256 newRoot) external;
}//SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
/// @title Interface for WorldID setRooHistoryExpiry
/// @author Worldcoin
/// @notice Interface for WorldID setRooHistoryExpiry
/// @dev Used in StateBridge to set the root history expiry time on Optimism (OPWorldID)
/// @custom:usage abi.encodeCall(IRootHistory.setRootHistoryExpiry, (_expiryTime));
interface IRootHistory {
/// @notice Sets the amount of time it takes for a root in the root history to expire.
///
/// @param expiryTime The new amount of time it takes for a root to expire.
///
/// @custom:reverts string If the caller is not the owner.
function setRootHistoryExpiry(uint256 expiryTime) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
/// @title IWorldIDIdentityManager
/// @author Worldcoin
/// @dev used to fetch the latest root from the WorldIDIdentityManager
interface IWorldIDIdentityManager {
/// @notice returns the latest root
function latestRoot() external view returns (uint256);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (access/Ownable2Step.sol)
pragma solidity ^0.8.0;
import "./Ownable.sol";
/**
* @dev Contract module which provides 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} and {acceptOwnership}.
*
* This module is used through inheritance. It will make available all functions
* from parent (Ownable).
*/
abstract contract Ownable2Step is Ownable {
address private _pendingOwner;
event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);
/**
* @dev Returns the address of the pending owner.
*/
function pendingOwner() public view virtual returns (address) {
return _pendingOwner;
}
/**
* @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual override onlyOwner {
_pendingOwner = newOwner;
emit OwnershipTransferStarted(owner(), newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual override {
delete _pendingOwner;
super._transferOwnership(newOwner);
}
/**
* @dev The new owner accepts the ownership transfer.
*/
function acceptOwnership() external {
address sender = _msgSender();
require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
_transferOwnership(sender);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {Predeploys} from "./Predeploys.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
/**
* @title IL2CrossDomainMessenger
* @notice Minimal interface for the L2CrossDomainMessenger, used only to read xDomainMessageSender.
*/
interface IL2CrossDomainMessenger {
function xDomainMessageSender() external view returns (address);
}
/**
* @title CrossDomainOwnable3
* @notice This contract extends the OpenZeppelin `Ownable` contract for L2 contracts to be owned
* by contracts on either L1 or L2. Note that this contract is meant to be used with systems
* that use the CrossDomainMessenger system. It will not work if the OptimismPortal is
* used directly.
* @dev Vendored from @eth-optimism/contracts-bedrock v0.13.2. The L2CrossDomainMessenger concrete
* import has been replaced with a minimal interface to avoid pulling in the entire OP Stack
* dependency tree.
*/
abstract contract CrossDomainOwnable3 is Ownable {
/**
* @notice If true, the contract uses the cross domain _checkOwner function override. If false
* it uses the standard Ownable _checkOwner function.
*/
bool public isLocal = true;
/**
* @notice Emits when ownership of the contract is transferred. Includes the
* isLocal field in addition to the standard `Ownable` OwnershipTransferred event.
*/
event OwnershipTransferred(
address indexed previousOwner, address indexed newOwner, bool isLocal
);
/**
* @notice Allows for ownership to be transferred with specifying the locality.
* @param _owner The new owner of the contract.
* @param _isLocal Configures the locality of the ownership.
*/
function transferOwnership(address _owner, bool _isLocal) external onlyOwner {
require(_owner != address(0), "CrossDomainOwnable3: new owner is the zero address");
address oldOwner = owner();
_transferOwnership(_owner);
isLocal = _isLocal;
emit OwnershipTransferred(oldOwner, _owner, _isLocal);
}
/**
* @notice Overrides the implementation of the `onlyOwner` modifier to check that the unaliased
* `xDomainMessageSender` is the owner of the contract. This value is set to the caller
* of the L1CrossDomainMessenger.
*/
function _checkOwner() internal view override {
if (isLocal) {
require(owner() == msg.sender, "CrossDomainOwnable3: caller is not the owner");
} else {
IL2CrossDomainMessenger messenger =
IL2CrossDomainMessenger(Predeploys.L2_CROSS_DOMAIN_MESSENGER);
require(
msg.sender == address(messenger),
"CrossDomainOwnable3: caller is not the messenger"
);
require(
owner() == messenger.xDomainMessageSender(),
"CrossDomainOwnable3: caller is not the owner"
);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @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 anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing 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);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title Predeploys
* @notice Contains constant addresses for contracts that are pre-deployed to the L2 system.
* @dev Vendored from @eth-optimism/contracts-bedrock v0.13.2
*/
library Predeploys {
address internal constant L2_TO_L1_MESSAGE_PASSER = 0x4200000000000000000000000000000000000016;
address internal constant L2_CROSS_DOMAIN_MESSENGER = 0x4200000000000000000000000000000000000007;
address internal constant L2_STANDARD_BRIDGE = 0x4200000000000000000000000000000000000010;
address internal constant L2_ERC721_BRIDGE = 0x4200000000000000000000000000000000000014;
address internal constant SEQUENCER_FEE_WALLET = 0x4200000000000000000000000000000000000011;
address internal constant OPTIMISM_MINTABLE_ERC20_FACTORY =
0x4200000000000000000000000000000000000012;
address internal constant OPTIMISM_MINTABLE_ERC721_FACTORY =
0x4200000000000000000000000000000000000017;
address internal constant L1_BLOCK_ATTRIBUTES = 0x4200000000000000000000000000000000000015;
address internal constant GAS_PRICE_ORACLE = 0x420000000000000000000000000000000000000F;
address internal constant L1_MESSAGE_SENDER = 0x4200000000000000000000000000000000000001;
address internal constant DEPLOYER_WHITELIST = 0x4200000000000000000000000000000000000002;
address internal constant LEGACY_ERC20_ETH = 0xDeadDeAddeAddEAddeadDEaDDEAdDeaDDeAD0000;
address internal constant L1_BLOCK_NUMBER = 0x4200000000000000000000000000000000000013;
address internal constant LEGACY_MESSAGE_PASSER = 0x4200000000000000000000000000000000000000;
address internal constant PROXY_ADMIN = 0x4200000000000000000000000000000000000018;
address internal constant BASE_FEE_VAULT = 0x4200000000000000000000000000000000000019;
address internal constant L1_FEE_VAULT = 0x420000000000000000000000000000000000001A;
address internal constant GOVERNANCE_TOKEN = 0x4200000000000000000000000000000000000042;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
}
}{
"remappings": [
"@prb/test/=lib/prb-test/src/",
"forge-std/=lib/forge-std/src/",
"src/=src/",
"@fx-portal/=lib/fx-portal/contracts/",
"solmate/=lib/solmate/",
"@rari-capital/solmate/=lib/solmate/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/",
"@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
"@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"fx-portal/=lib/fx-portal/contracts/",
"openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
"prb-test/=lib/prb-test/src/"
],
"optimizer": {
"enabled": true,
"runs": 10000,
"details": {
"peephole": true,
"inliner": true,
"deduplicate": true,
"cse": true,
"yul": true
}
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "none",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "prague",
"viaIR": false
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_worldIDIdentityManager","type":"address"},{"internalType":"address","name":"_opWorldIDAddress","type":"address"},{"internalType":"address","name":"_crossDomainMessenger","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AddressZero","type":"error"},{"inputs":[],"name":"CannotRenounceOwnership","type":"error"},{"inputs":[],"name":"GasLimitZero","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"},{"indexed":false,"internalType":"bool","name":"isLocal","type":"bool"}],"name":"OwnershipTransferredOp","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"root","type":"uint256"}],"name":"RootPropagated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"_opGasLimit","type":"uint32"}],"name":"SetGasLimitPropagateRoot","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"_opGasLimit","type":"uint32"}],"name":"SetGasLimitSetRootHistoryExpiry","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"_opGasLimit","type":"uint32"}],"name":"SetGasLimitTransferOwnershipOp","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rootHistoryExpiry","type":"uint256"}],"name":"SetRootHistoryExpiry","type":"event"},{"inputs":[],"name":"DEFAULT_OP_GAS_LIMIT","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"opWorldIDAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"propagateRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_opGasLimit","type":"uint32"}],"name":"setGasLimitPropagateRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_opGasLimit","type":"uint32"}],"name":"setGasLimitSetRootHistoryExpiry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_opGasLimit","type":"uint32"}],"name":"setGasLimitTransferOwnershipOp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rootHistoryExpiry","type":"uint256"}],"name":"setRootHistoryExpiry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"bool","name":"_isLocal","type":"bool"}],"name":"transferOwnershipOp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"worldIDAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
0x60e060405234801561000f575f5ffd5b506040516110f43803806110f483398101604081905261002e91610141565b610037336100bb565b6001600160a01b038316158061005457506001600160a01b038216155b8061006657506001600160a01b038116155b1561008457604051639fabe1c160e01b815260040160405180910390fd5b6001600160a01b0391821660805291811660c05290811660a05260018054909116693d0900003d0900003d0960a61b179055610181565b600180546001600160a01b03191690556100d4816100d7565b50565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b038116811461013c575f5ffd5b919050565b5f5f5f60608486031215610153575f5ffd5b61015c84610126565b925061016a60208501610126565b915061017860408501610126565b90509250925092565b60805160a05160c051610f1f6101d55f395f81816101be015261031101525f81816104570152818161082f0152610b0401525f818161019701528181610499015281816108710152610b460152610f1f5ff3fe608060405234801561000f575f5ffd5b50600436106100e5575f3560e01c8063a3b801a311610088578063c70aa72711610063578063c70aa727146101e0578063e30c3978146101f3578063e84d647414610211578063f2fde38b14610230575f5ffd5b8063a3b801a31461017f578063ab6dab0d14610192578063b665a5b2146101b9575f5ffd5b8063715018a6116100c3578063715018a61461011957806379ba5097146101215780638a8fcec4146101295780638da5cb5b1461013c575f5ffd5b80631c56fe40146100e9578063380db829146100fe5780634eb6840c14610106575b5f5ffd5b6100fc6100f7366004610dc3565b610243565b005b6100fc61030e565b6100fc610114366004610dc3565b61054d565b6100fc610615565b6100fc61064f565b6100fc610137366004610e15565b610709565b5f5473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b6100fc61018d366004610dc3565b61097b565b6101557f000000000000000000000000000000000000000000000000000000000000000081565b6101557f000000000000000000000000000000000000000000000000000000000000000081565b6100fc6101ee366004610e4e565b610a43565b60015473ffffffffffffffffffffffffffffffffffffffff16610155565b61021b620f424081565b60405163ffffffff9091168152602001610176565b6100fc61023e366004610e65565b610bf2565b61024b610ca1565b5f8163ffffffff161161028a576040517f90ecd8f500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000063ffffffff8416908102919091179091556040519081527ffa2a99078de4d1b0d18381a1d80698c2798f5a987838280224694c908b4b7607906020015b60405180910390a150565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d7b0fef16040518163ffffffff1660e01b8152600401602060405180830381865afa158015610378573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061039c9190610e7e565b90505f816040516024016103b291815260200190565b604080518083037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00181529181526020820180517ffbde929b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff90911617905260015490517f3dbb202b0000000000000000000000000000000000000000000000000000000081529192507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1691633dbb202b916104e3917f00000000000000000000000000000000000000000000000000000000000000009186917401000000000000000000000000000000000000000090910463ffffffff1690600401610e95565b5f604051808303815f87803b1580156104fa575f5ffd5b505af115801561050c573d5f5f3e3d5ffd5b505050507fd8f3e639501c4b5e551a948a2930f1215556bcde417c94d45746a8ec6418366f8260405161054191815260200190565b60405180910390a15050565b610555610ca1565b5f8163ffffffff1611610594576040517f90ecd8f500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167c010000000000000000000000000000000000000000000000000000000063ffffffff8416908102919091179091556040519081527fb588f307d3dd92c5dae6b4ac79ad106af16c06b664d6afc62480daa61fe624e790602001610303565b61061d610ca1565b6040517f77aeb0ad00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600154339073ffffffffffffffffffffffffffffffffffffffff1681146106fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61070681610d23565b50565b610711610ca1565b73ffffffffffffffffffffffffffffffffffffffff821661075e576040517f9fabe1c100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff8316602482015281151560448201525f90606401604080518083037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00181529181526020820180517fb242e534000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff90911617905260015490517f3dbb202b0000000000000000000000000000000000000000000000000000000081529192507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1691633dbb202b916108c3917f00000000000000000000000000000000000000000000000000000000000000009186917c010000000000000000000000000000000000000000000000000000000090910463ffffffff1690600401610e95565b5f604051808303815f87803b1580156108da575f5ffd5b505af11580156108ec573d5f5f3e3d5ffd5b505050508273ffffffffffffffffffffffffffffffffffffffff166109255f5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f763ef977ad8eb40834384c417cf481dc800c87822c6a7feef8726a6566b6b1258460405161096e911515815260200190565b60405180910390a3505050565b610983610ca1565b5f8163ffffffff16116109c2576040517f90ecd8f500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff16780100000000000000000000000000000000000000000000000063ffffffff8416908102919091179091556040519081527fc48e688c0a2fc42ce36ecb7204c7b77f96132d253c141ef46c2591ae5a77637290602001610303565b610a4b610ca1565b5f81604051602401610a5f91815260200190565b604080518083037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00181529181526020820180517fc70aa727000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff90911617905260015490517f3dbb202b0000000000000000000000000000000000000000000000000000000081529192507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1691633dbb202b91610b94917f0000000000000000000000000000000000000000000000000000000000000000918691780100000000000000000000000000000000000000000000000090910463ffffffff1690600401610e95565b5f604051808303815f87803b158015610bab575f5ffd5b505af1158015610bbd573d5f5f3e3d5ffd5b505050507f9036872f40830f3909d8006c77be543a639ad4ebb34aff720498fcd12656a2928260405161054191815260200190565b610bfa610ca1565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091168117909155610c5c5f5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b5f5473ffffffffffffffffffffffffffffffffffffffff163314610d21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f4565b565b600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055610706815f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f60208284031215610dd3575f5ffd5b813563ffffffff81168114610de6575f5ffd5b9392505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610e10575f5ffd5b919050565b5f5f60408385031215610e26575f5ffd5b610e2f83610ded565b915060208301358015158114610e43575f5ffd5b809150509250929050565b5f60208284031215610e5e575f5ffd5b5035919050565b5f60208284031215610e75575f5ffd5b610de682610ded565b5f60208284031215610e8e575f5ffd5b5051919050565b73ffffffffffffffffffffffffffffffffffffffff84168152606060208201525f83518060608401528060208601608085015e5f6080828501015260807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505063ffffffff8316604083015294935050505056fea164736f6c634300081c000a000000000000000000000000d9f2a4fff0c1909272ea9b393613dcb2a27b113700000000000000000000000013f5788c3ce48911bca120c9e197fbdfed8bebf3000000000000000000000000866e82a600a1414e583f7f13623f1ac5d58b0afa
Deployed Bytecode
0x608060405234801561000f575f5ffd5b50600436106100e5575f3560e01c8063a3b801a311610088578063c70aa72711610063578063c70aa727146101e0578063e30c3978146101f3578063e84d647414610211578063f2fde38b14610230575f5ffd5b8063a3b801a31461017f578063ab6dab0d14610192578063b665a5b2146101b9575f5ffd5b8063715018a6116100c3578063715018a61461011957806379ba5097146101215780638a8fcec4146101295780638da5cb5b1461013c575f5ffd5b80631c56fe40146100e9578063380db829146100fe5780634eb6840c14610106575b5f5ffd5b6100fc6100f7366004610dc3565b610243565b005b6100fc61030e565b6100fc610114366004610dc3565b61054d565b6100fc610615565b6100fc61064f565b6100fc610137366004610e15565b610709565b5f5473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b6100fc61018d366004610dc3565b61097b565b6101557f00000000000000000000000013f5788c3ce48911bca120c9e197fbdfed8bebf381565b6101557f000000000000000000000000d9f2a4fff0c1909272ea9b393613dcb2a27b113781565b6100fc6101ee366004610e4e565b610a43565b60015473ffffffffffffffffffffffffffffffffffffffff16610155565b61021b620f424081565b60405163ffffffff9091168152602001610176565b6100fc61023e366004610e65565b610bf2565b61024b610ca1565b5f8163ffffffff161161028a576040517f90ecd8f500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000063ffffffff8416908102919091179091556040519081527ffa2a99078de4d1b0d18381a1d80698c2798f5a987838280224694c908b4b7607906020015b60405180910390a150565b5f7f000000000000000000000000d9f2a4fff0c1909272ea9b393613dcb2a27b113773ffffffffffffffffffffffffffffffffffffffff1663d7b0fef16040518163ffffffff1660e01b8152600401602060405180830381865afa158015610378573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061039c9190610e7e565b90505f816040516024016103b291815260200190565b604080518083037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00181529181526020820180517ffbde929b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff90911617905260015490517f3dbb202b0000000000000000000000000000000000000000000000000000000081529192507f000000000000000000000000866e82a600a1414e583f7f13623f1ac5d58b0afa73ffffffffffffffffffffffffffffffffffffffff1691633dbb202b916104e3917f00000000000000000000000013f5788c3ce48911bca120c9e197fbdfed8bebf39186917401000000000000000000000000000000000000000090910463ffffffff1690600401610e95565b5f604051808303815f87803b1580156104fa575f5ffd5b505af115801561050c573d5f5f3e3d5ffd5b505050507fd8f3e639501c4b5e551a948a2930f1215556bcde417c94d45746a8ec6418366f8260405161054191815260200190565b60405180910390a15050565b610555610ca1565b5f8163ffffffff1611610594576040517f90ecd8f500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167c010000000000000000000000000000000000000000000000000000000063ffffffff8416908102919091179091556040519081527fb588f307d3dd92c5dae6b4ac79ad106af16c06b664d6afc62480daa61fe624e790602001610303565b61061d610ca1565b6040517f77aeb0ad00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600154339073ffffffffffffffffffffffffffffffffffffffff1681146106fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61070681610d23565b50565b610711610ca1565b73ffffffffffffffffffffffffffffffffffffffff821661075e576040517f9fabe1c100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff8316602482015281151560448201525f90606401604080518083037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00181529181526020820180517fb242e534000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff90911617905260015490517f3dbb202b0000000000000000000000000000000000000000000000000000000081529192507f000000000000000000000000866e82a600a1414e583f7f13623f1ac5d58b0afa73ffffffffffffffffffffffffffffffffffffffff1691633dbb202b916108c3917f00000000000000000000000013f5788c3ce48911bca120c9e197fbdfed8bebf39186917c010000000000000000000000000000000000000000000000000000000090910463ffffffff1690600401610e95565b5f604051808303815f87803b1580156108da575f5ffd5b505af11580156108ec573d5f5f3e3d5ffd5b505050508273ffffffffffffffffffffffffffffffffffffffff166109255f5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f763ef977ad8eb40834384c417cf481dc800c87822c6a7feef8726a6566b6b1258460405161096e911515815260200190565b60405180910390a3505050565b610983610ca1565b5f8163ffffffff16116109c2576040517f90ecd8f500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600180547fffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff16780100000000000000000000000000000000000000000000000063ffffffff8416908102919091179091556040519081527fc48e688c0a2fc42ce36ecb7204c7b77f96132d253c141ef46c2591ae5a77637290602001610303565b610a4b610ca1565b5f81604051602401610a5f91815260200190565b604080518083037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00181529181526020820180517fc70aa727000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff90911617905260015490517f3dbb202b0000000000000000000000000000000000000000000000000000000081529192507f000000000000000000000000866e82a600a1414e583f7f13623f1ac5d58b0afa73ffffffffffffffffffffffffffffffffffffffff1691633dbb202b91610b94917f00000000000000000000000013f5788c3ce48911bca120c9e197fbdfed8bebf3918691780100000000000000000000000000000000000000000000000090910463ffffffff1690600401610e95565b5f604051808303815f87803b158015610bab575f5ffd5b505af1158015610bbd573d5f5f3e3d5ffd5b505050507f9036872f40830f3909d8006c77be543a639ad4ebb34aff720498fcd12656a2928260405161054191815260200190565b610bfa610ca1565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091168117909155610c5c5f5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b5f5473ffffffffffffffffffffffffffffffffffffffff163314610d21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f4565b565b600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055610706815f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f60208284031215610dd3575f5ffd5b813563ffffffff81168114610de6575f5ffd5b9392505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610e10575f5ffd5b919050565b5f5f60408385031215610e26575f5ffd5b610e2f83610ded565b915060208301358015158114610e43575f5ffd5b809150509250929050565b5f60208284031215610e5e575f5ffd5b5035919050565b5f60208284031215610e75575f5ffd5b610de682610ded565b5f60208284031215610e8e575f5ffd5b5051919050565b73ffffffffffffffffffffffffffffffffffffffff84168152606060208201525f83518060608401528060208601608085015e5f6080828501015260807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505063ffffffff8316604083015294935050505056fea164736f6c634300081c000a
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 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.