Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 790 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Confirm Roots | 21277689 | 7 hrs ago | IN | 0 ETH | 0.00072966 | ||||
Confirm Roots | 21274306 | 19 hrs ago | IN | 0 ETH | 0.00075222 | ||||
Confirm Roots | 21269426 | 35 hrs ago | IN | 0 ETH | 0.00051341 | ||||
Confirm Roots | 21265951 | 47 hrs ago | IN | 0 ETH | 0.00213809 | ||||
Confirm Roots | 21261373 | 2 days ago | IN | 0 ETH | 0.00055654 | ||||
Confirm Roots | 21257738 | 3 days ago | IN | 0 ETH | 0.00148749 | ||||
Confirm Roots | 21253906 | 3 days ago | IN | 0 ETH | 0.00122843 | ||||
Confirm Roots | 21250276 | 4 days ago | IN | 0 ETH | 0.00070365 | ||||
Confirm Roots | 21249477 | 4 days ago | IN | 0 ETH | 0.00069951 | ||||
Confirm Roots | 21245838 | 4 days ago | IN | 0 ETH | 0.00136278 | ||||
Confirm Roots | 21245088 | 4 days ago | IN | 0 ETH | 0.00149205 | ||||
Confirm Roots | 21244543 | 4 days ago | IN | 0 ETH | 0.0012223 | ||||
Confirm Roots | 21240117 | 5 days ago | IN | 0 ETH | 0.00076749 | ||||
Confirm Roots | 21240116 | 5 days ago | IN | 0 ETH | 0.0007575 | ||||
Confirm Roots | 21235635 | 6 days ago | IN | 0 ETH | 0.00086037 | ||||
Confirm Roots | 21231858 | 6 days ago | IN | 0 ETH | 0.00106582 | ||||
Confirm Roots | 21226039 | 7 days ago | IN | 0 ETH | 0.00091092 | ||||
Confirm Roots | 21220506 | 8 days ago | IN | 0 ETH | 0.00073437 | ||||
Confirm Roots | 21216419 | 8 days ago | IN | 0 ETH | 0.00180332 | ||||
Confirm Roots | 21211187 | 9 days ago | IN | 0 ETH | 0.00070605 | ||||
Confirm Roots | 21204364 | 10 days ago | IN | 0 ETH | 0.00129721 | ||||
Confirm Roots | 21202221 | 10 days ago | IN | 0 ETH | 0.00117876 | ||||
Confirm Roots | 21193362 | 12 days ago | IN | 0 ETH | 0.0013739 | ||||
Confirm Roots | 21186945 | 12 days ago | IN | 0 ETH | 0.00247246 | ||||
Confirm Roots | 21185207 | 13 days ago | IN | 0 ETH | 0.00217452 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xD1c7139D...35cbA7B74 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
BaseMessengerWrapper
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 50000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/optimism/messengers/iOVM_L1CrossDomainMessenger.sol"; import "./MessengerWrapper.sol"; /** * @dev A MessengerWrapper for Base - https://docs.base.org/ * @notice Deployed on layer-1 */ contract BaseMessengerWrapper is MessengerWrapper, Ownable { iOVM_L1CrossDomainMessenger public immutable l1MessengerAddress; address public immutable l2BridgeAddress; uint256 public defaultL2GasLimit; mapping (bytes4 => uint256) public l2GasLimitForSignature; constructor( address _l1BridgeAddress, address _l2BridgeAddress, iOVM_L1CrossDomainMessenger _l1MessengerAddress, uint256 _l2ChainId, uint256 _defaultL2GasLimit ) public MessengerWrapper(_l1BridgeAddress, _l2ChainId) { l2BridgeAddress = _l2BridgeAddress; l1MessengerAddress = _l1MessengerAddress; defaultL2GasLimit = _defaultL2GasLimit; } /** * @dev Sends a message to the l2BridgeAddress from layer-1 * @param _calldata The data that l2BridgeAddress will be called with */ function sendCrossDomainMessage(bytes memory _calldata) public override onlyL1Bridge { uint256 l2GasLimit = l2GasLimitForCalldata(_calldata); l1MessengerAddress.sendMessage( l2BridgeAddress, _calldata, uint32(l2GasLimit) ); } function verifySender(address l1BridgeCaller, bytes memory /*_data*/) public override { if (isRootConfirmation) return; require(l1BridgeCaller == address(l1MessengerAddress), "BASE_MSG_WPR: Caller is not l1MessengerAddress"); // Verify that cross-domain sender is l2BridgeAddress require(l1MessengerAddress.xDomainMessageSender() == l2BridgeAddress, "BASE_MSG_WPR: Invalid cross-domain sender"); } function setDefaultL2GasLimit(uint256 _l2GasLimit) external onlyOwner { defaultL2GasLimit = _l2GasLimit; } function setL2GasLimitForSignature(uint256 _l2GasLimit, bytes4 signature) external onlyOwner { l2GasLimitForSignature[signature] = _l2GasLimit; } // Private functions function l2GasLimitForCalldata(bytes memory _calldata) private view returns (uint256) { uint256 l2GasLimit; if (_calldata.length >= 4) { bytes4 functionSignature = bytes4(toUint32(_calldata, 0)); l2GasLimit = l2GasLimitForSignature[functionSignature]; } if (l2GasLimit == 0) { l2GasLimit = defaultL2GasLimit; } return l2GasLimit; } // source: https://github.com/GNSPS/solidity-bytes-utils/blob/master/contracts/BytesLib.sol function toUint32(bytes memory _bytes, uint256 _start) private pure returns (uint32) { require(_bytes.length >= _start + 4, "OVM_MSG_WPR: out of bounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.12 <=0.8.9; pragma experimental ABIEncoderV2; interface IMessengerWrapper { function sendCrossDomainMessage(bytes memory _calldata) external; function verifySender(address l1BridgeCaller, bytes memory _data) external; function confirmRoots( bytes32[] calldata rootHashes, uint256[] calldata destinationChainIds, uint256[] calldata totalAmounts, uint256[] calldata rootCommittedAts ) external; }
// SPDX-License-Identifier: MIT // +build ovm pragma solidity >0.5.0 <0.8.0; pragma experimental ABIEncoderV2; /** * @title iOVM_BaseCrossDomainMessenger */ interface iOVM_BaseCrossDomainMessenger { /********** * Events * **********/ event SentMessage(bytes message); event RelayedMessage(bytes32 msgHash); /********************** * Contract Variables * **********************/ function xDomainMessageSender() external view returns (address); /******************** * Public Functions * ********************/ /** * 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; function deposit( address _depositor, uint256 _amount, bool _send ) external; }
// SPDX-License-Identifier: MIT pragma solidity >0.5.0 <0.8.0; pragma experimental ABIEncoderV2; import { iOVM_BaseCrossDomainMessenger } from "./iOVM_BaseCrossDomainMessenger.sol"; /** * @title iOVM_L1CrossDomainMessenger */ interface iOVM_L1CrossDomainMessenger is iOVM_BaseCrossDomainMessenger {}
// SPDX-License-Identifier: MIT pragma solidity >=0.6.12 <=0.8.9; pragma experimental ABIEncoderV2; import "../interfaces/IMessengerWrapper.sol"; contract IL1Bridge { struct TransferBond { address bonder; uint256 createdAt; uint256 totalAmount; uint256 challengeStartTime; address challenger; bool challengeResolved; } uint256 public challengePeriod; mapping(bytes32 => TransferBond) public transferBonds; function getIsBonder(address maybeBonder) public view returns (bool) {} function getTransferRootId(bytes32 rootHash, uint256 totalAmount) public pure returns (bytes32) {} function confirmTransferRoot( uint256 originChainId, bytes32 rootHash, uint256 destinationChainId, uint256 totalAmount, uint256 rootCommittedAt ) external {} } abstract contract MessengerWrapper is IMessengerWrapper { address public immutable l1BridgeAddress; uint256 public immutable l2ChainId; bool public isRootConfirmation = false; constructor(address _l1BridgeAddress, uint256 _l2ChainId) internal { l1BridgeAddress = _l1BridgeAddress; l2ChainId = _l2ChainId; } modifier onlyL1Bridge { require(msg.sender == l1BridgeAddress, "MW: Sender must be the L1 Bridge"); _; } modifier rootConfirmation { isRootConfirmation = true; _; isRootConfirmation = false; } /** * @dev Confirm roots that have bonded on L1 and passed the challenge period with no challenge * @param rootHashes The root hashes to confirm * @param destinationChainIds The destinationChainId of the roots to confirm * @param totalAmounts The totalAmount of the roots to confirm * @param rootCommittedAts The rootCommittedAt of the roots to confirm */ function confirmRoots ( bytes32[] calldata rootHashes, uint256[] calldata destinationChainIds, uint256[] calldata totalAmounts, uint256[] calldata rootCommittedAts ) external override rootConfirmation { IL1Bridge l1Bridge = IL1Bridge(l1BridgeAddress); require(l1Bridge.getIsBonder(msg.sender), "MW: Sender must be a bonder"); require(rootHashes.length == totalAmounts.length, "MW: rootHashes and totalAmounts must be the same length"); uint256 challengePeriod = l1Bridge.challengePeriod(); for (uint256 i = 0; i < rootHashes.length; i++) { bool canConfirm = canConfirmRoot(l1Bridge, rootHashes[i], totalAmounts[i], challengePeriod); require(canConfirm, "MW: Root cannot be confirmed"); l1Bridge.confirmTransferRoot( l2ChainId, rootHashes[i], destinationChainIds[i], totalAmounts[i], rootCommittedAts[i] ); } } function canConfirmRoot (IL1Bridge l1Bridge, bytes32 rootHash, uint256 totalAmount, uint256 challengePeriod) public view returns (bool) { bytes32 transferRootId = l1Bridge.getTransferRootId(rootHash, totalAmount); (,uint256 createdAt,,uint256 challengeStartTime,,) = l1Bridge.transferBonds(transferRootId); uint256 timeSinceBondCreation = block.timestamp - createdAt; if ( createdAt != 0 && challengeStartTime == 0 && timeSinceBondCreation > challengePeriod ) { return true; } return false; } }
{ "optimizer": { "enabled": true, "runs": 50000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_l1BridgeAddress","type":"address"},{"internalType":"address","name":"_l2BridgeAddress","type":"address"},{"internalType":"contract iOVM_L1CrossDomainMessenger","name":"_l1MessengerAddress","type":"address"},{"internalType":"uint256","name":"_l2ChainId","type":"uint256"},{"internalType":"uint256","name":"_defaultL2GasLimit","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"contract IL1Bridge","name":"l1Bridge","type":"address"},{"internalType":"bytes32","name":"rootHash","type":"bytes32"},{"internalType":"uint256","name":"totalAmount","type":"uint256"},{"internalType":"uint256","name":"challengePeriod","type":"uint256"}],"name":"canConfirmRoot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"rootHashes","type":"bytes32[]"},{"internalType":"uint256[]","name":"destinationChainIds","type":"uint256[]"},{"internalType":"uint256[]","name":"totalAmounts","type":"uint256[]"},{"internalType":"uint256[]","name":"rootCommittedAts","type":"uint256[]"}],"name":"confirmRoots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultL2GasLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRootConfirmation","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l1BridgeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l1MessengerAddress","outputs":[{"internalType":"contract iOVM_L1CrossDomainMessenger","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l2BridgeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l2ChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"l2GasLimitForSignature","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_calldata","type":"bytes"}],"name":"sendCrossDomainMessage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_l2GasLimit","type":"uint256"}],"name":"setDefaultL2GasLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_l2GasLimit","type":"uint256"},{"internalType":"bytes4","name":"signature","type":"bytes4"}],"name":"setL2GasLimitForSignature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"l1BridgeCaller","type":"address"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"verifySender","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638e58736f11610097578063b67efb7011610066578063b67efb70146101d9578063c5deebb3146101ec578063d6ae3cd5146101f4578063f2fde38b146101fc57610100565b80638e58736f14610198578063934746a7146101ab57806399178dd8146101b3578063b08324f5146101c657610100565b80635ab2a558116100d35780635ab2a5581461016b578063715018a6146101805780638b034eb8146101885780638da5cb5b1461019057610100565b80631aae9eed14610105578063419cb5501461012e57806356f3f181146101435780635a4846b214610158575b600080fd5b6101186101133660046111ec565b61020f565b604051610125919061132b565b60405180910390f35b61014161013c3660046111b9565b610374565b005b61014b6104c6565b6040516101259190611336565b610141610166366004611226565b6104cc565b610173610544565b604051610125919061126d565b610141610568565b61011861064e565b610173610657565b6101416101a63660046110aa565b610678565b6101736109eb565b6101416101c1366004610ff3565b610a0f565b6101416101d436600461123e565b610bca565b61014b6101e736600461119d565b610c70565b610173610c82565b61014b610ca6565b61014161020a366004610fb4565b610cca565b6000808573ffffffffffffffffffffffffffffffffffffffff1663960a7afa86866040518363ffffffff1660e01b815260040161024d92919061133f565b60206040518083038186803b15801561026557600080fd5b505afa158015610279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029d9190611185565b90506000808773ffffffffffffffffffffffffffffffffffffffff16635a7e1083846040518263ffffffff1660e01b81526004016102db9190611336565b60c06040518083038186803b1580156102f357600080fd5b505afa158015610307573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061032b9190611041565b50929550935050504283900390508215801590610346575081155b801561035157508581115b1561036357600194505050505061036c565b60009450505050505b949350505050565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000b8901acb165ed027e32754e0ffe830802919727f16146103ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906114aa565b60405180910390fd5b60006103f782610e21565b6040517f3dbb202b00000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000866e82a600a1414e583f7f13623f1ac5d58b0afa1690633dbb202b90610490907f0000000000000000000000003666f603cc164936c1b87e207f36beba4ac5f18a908690869060040161128e565b600060405180830381600087803b1580156104aa57600080fd5b505af11580156104be573d6000803e3d6000fd5b505050505050565b60015481565b6104d4610e82565b73ffffffffffffffffffffffffffffffffffffffff166104f2610657565b73ffffffffffffffffffffffffffffffffffffffff161461053f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611475565b600155565b7f000000000000000000000000b8901acb165ed027e32754e0ffe830802919727f81565b610570610e82565b73ffffffffffffffffffffffffffffffffffffffff1661058e610657565b73ffffffffffffffffffffffffffffffffffffffff16146105db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611475565b6000805460405161010090910473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b60005460ff1681565b600054610100900473ffffffffffffffffffffffffffffffffffffffff1690565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556040517fd5ef75510000000000000000000000000000000000000000000000000000000081527f000000000000000000000000b8901acb165ed027e32754e0ffe830802919727f9073ffffffffffffffffffffffffffffffffffffffff82169063d5ef75519061071790339060040161126d565b60206040518083038186803b15801561072f57600080fd5b505afa158015610743573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107679190611169565b61079d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611599565b8784146107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e39061153c565b60008173ffffffffffffffffffffffffffffffffffffffff1663f3f480d96040518163ffffffff1660e01b815260040160206040518083038186803b15801561081e57600080fd5b505afa158015610832573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108569190611185565b905060005b898110156109b6576000610895848d8d8581811061087557fe5b905060200201358a8a8681811061088857fe5b905060200201358661020f565b9050806108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906113e1565b8373ffffffffffffffffffffffffffffffffffffffff1663ef6ebe5e7f00000000000000000000000000000000000000000000000000000000000021058e8e8681811061091757fe5b905060200201358d8d8781811061092a57fe5b905060200201358c8c8881811061093d57fe5b905060200201358b8b8981811061095057fe5b905060200201356040518663ffffffff1660e01b81526004016109779594939291906115d0565b600060405180830381600087803b15801561099157600080fd5b505af11580156109a5573d6000803e3d6000fd5b50506001909301925061085b915050565b5050600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055505050505050505050565b7f0000000000000000000000003666f603cc164936c1b87e207f36beba4ac5f18a81565b60005460ff1615610a1f57610bc6565b7f000000000000000000000000866e82a600a1414e583f7f13623f1ac5d58b0afa73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610aa4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e3906114df565b7f0000000000000000000000003666f603cc164936c1b87e207f36beba4ac5f18a73ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000866e82a600a1414e583f7f13623f1ac5d58b0afa73ffffffffffffffffffffffffffffffffffffffff16636e296e456040518163ffffffff1660e01b815260040160206040518083038186803b158015610b4157600080fd5b505afa158015610b55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b799190610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614610bc6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611418565b5050565b610bd2610e82565b73ffffffffffffffffffffffffffffffffffffffff16610bf0610657565b73ffffffffffffffffffffffffffffffffffffffff1614610c3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611475565b7fffffffff0000000000000000000000000000000000000000000000000000000016600090815260026020526040902055565b60026020526000908152604090205481565b7f000000000000000000000000866e82a600a1414e583f7f13623f1ac5d58b0afa81565b7f000000000000000000000000000000000000000000000000000000000000210581565b610cd2610e82565b73ffffffffffffffffffffffffffffffffffffffff16610cf0610657565b73ffffffffffffffffffffffffffffffffffffffff1614610d3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611475565b73ffffffffffffffffffffffffffffffffffffffff8116610d8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e390611384565b6000805460405173ffffffffffffffffffffffffffffffffffffffff8085169361010090930416917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b6000806004835110610e72576000610e3a846000610e86565b60e01b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152600260205260409020549150505b80610e7c57506001545b92915050565b3390565b60008160040183511015610ec6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103e39061134d565b50016004015190565b60008083601f840112610ee0578182fd5b50813567ffffffffffffffff811115610ef7578182fd5b6020830191508360208083028501011115610f1157600080fd5b9250929050565b600082601f830112610f28578081fd5b813567ffffffffffffffff80821115610f3f578283fd5b60405160207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8501168201018181108382111715610f7d578485fd5b604052828152925082848301602001861015610f9857600080fd5b8260208601602083013760006020848301015250505092915050565b600060208284031215610fc5578081fd5b8135610fd0816115f3565b9392505050565b600060208284031215610fe8578081fd5b8151610fd0816115f3565b60008060408385031215611005578081fd5b8235611010816115f3565b9150602083013567ffffffffffffffff81111561102b578182fd5b61103785828601610f18565b9150509250929050565b60008060008060008060c08789031215611059578182fd5b8651611064816115f3565b80965050602087015194506040870151935060608701519250608087015161108b816115f3565b60a088015190925061109c81611618565b809150509295509295509295565b6000806000806000806000806080898b0312156110c5578182fd5b883567ffffffffffffffff808211156110dc578384fd5b6110e88c838d01610ecf565b909a50985060208b0135915080821115611100578384fd5b61110c8c838d01610ecf565b909850965060408b0135915080821115611124578384fd5b6111308c838d01610ecf565b909650945060608b0135915080821115611148578384fd5b506111558b828c01610ecf565b999c989b5096995094979396929594505050565b60006020828403121561117a578081fd5b8151610fd081611618565b600060208284031215611196578081fd5b5051919050565b6000602082840312156111ae578081fd5b8135610fd081611626565b6000602082840312156111ca578081fd5b813567ffffffffffffffff8111156111e0578182fd5b61036c84828501610f18565b60008060008060808587031215611201578384fd5b843561120c816115f3565b966020860135965060408601359560600135945092505050565b600060208284031215611237578081fd5b5035919050565b60008060408385031215611250578182fd5b82359150602083013561126281611626565b809150509250929050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b600073ffffffffffffffffffffffffffffffffffffffff8516825260206060818401528451806060850152825b818110156112d7578681018301518582016080015282016112bb565b818111156112e85783608083870101525b5063ffffffff9490941660408401525050601f919091017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160160800192915050565b901515815260200190565b90815260200190565b918252602082015260400190565b6020808252601a908201527f4f564d5f4d53475f5750523a206f7574206f6620626f756e6473000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4d573a20526f6f742063616e6e6f7420626520636f6e6669726d656400000000604082015260600190565b60208082526029908201527f424153455f4d53475f5750523a20496e76616c69642063726f73732d646f6d6160408201527f696e2073656e6465720000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252818101527f4d573a2053656e646572206d75737420626520746865204c3120427269646765604082015260600190565b6020808252602e908201527f424153455f4d53475f5750523a2043616c6c6572206973206e6f74206c314d6560408201527f7373656e67657241646472657373000000000000000000000000000000000000606082015260800190565b60208082526037908201527f4d573a20726f6f7448617368657320616e6420746f74616c416d6f756e74732060408201527f6d757374206265207468652073616d65206c656e677468000000000000000000606082015260800190565b6020808252601b908201527f4d573a2053656e646572206d757374206265206120626f6e6465720000000000604082015260600190565b948552602085019390935260408401919091526060830152608082015260a00190565b73ffffffffffffffffffffffffffffffffffffffff8116811461161557600080fd5b50565b801515811461161557600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461161557600080fdfea264697066735822122077a7df849feada34f274bb98e30665bd18f899f8016b3c2cdcc4dcb06ecae9f764736f6c634300060c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.