Overview
ETH Balance
0.013919214551384464 ETH
Eth Value
$47.43 (@ $3,407.35/ETH)More Info
Private Name Tags
ContractCreator
Latest 15 from a total of 15 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Confirm Roots | 19554457 | 237 days ago | IN | 0 ETH | 0.00176104 | ||||
Confirm Roots | 18993835 | 316 days ago | IN | 0 ETH | 0.00406176 | ||||
Confirm Roots | 18992593 | 316 days ago | IN | 0 ETH | 0.00220343 | ||||
Confirm Roots | 18992593 | 316 days ago | IN | 0 ETH | 0.00220406 | ||||
Confirm Roots | 18835917 | 338 days ago | IN | 0 ETH | 0.00599003 | ||||
Confirm Roots | 18822453 | 340 days ago | IN | 0 ETH | 0.00445725 | ||||
Confirm Roots | 18822453 | 340 days ago | IN | 0 ETH | 0.00445662 | ||||
Confirm Roots | 18739094 | 351 days ago | IN | 0 ETH | 0.00321654 | ||||
Confirm Roots | 18524843 | 381 days ago | IN | 0 ETH | 0.00190064 | ||||
Confirm Roots | 17681364 | 499 days ago | IN | 0 ETH | 0.00135807 | ||||
Confirm Roots | 17681364 | 499 days ago | IN | 0 ETH | 0.00135554 | ||||
Transfer Ownersh... | 17674199 | 500 days ago | IN | 0 ETH | 0.00042377 | ||||
Transfer Ownersh... | 17445954 | 532 days ago | IN | 0 ETH | 0.00067393 | ||||
Transfer | 17445951 | 532 days ago | IN | 0.02 ETH | 0.00039557 | ||||
0x60e06040 | 17445948 | 532 days ago | IN | 0 ETH | 0.03208725 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
21185401 | 9 days ago | 0.00006895 ETH | ||||
20868017 | 53 days ago | 0.00002319 ETH | ||||
20579782 | 94 days ago | 0.00000411 ETH | ||||
20490842 | 106 days ago | 0.00000507 ETH | ||||
20455475 | 111 days ago | 0.00000302 ETH | ||||
20454169 | 111 days ago | 0.00000336 ETH | ||||
20444705 | 112 days ago | 0.0000122 ETH | ||||
20444669 | 112 days ago | 0.00001261 ETH | ||||
20407366 | 118 days ago | 0.00000356 ETH | ||||
20366012 | 123 days ago | 0.00000662 ETH | ||||
20328281 | 129 days ago | 0.00001655 ETH | ||||
20281974 | 135 days ago | 0.00001172 ETH | ||||
20192289 | 148 days ago | 0.00000435 ETH | ||||
20140971 | 155 days ago | 0.00001835 ETH | ||||
20138141 | 155 days ago | 0.00000648 ETH | ||||
20132722 | 156 days ago | 0.00003648 ETH | ||||
20116482 | 158 days ago | 0.00001405 ETH | ||||
20109091 | 159 days ago | 0.00000661 ETH | ||||
20101622 | 160 days ago | 0.00000867 ETH | ||||
20097033 | 161 days ago | 0.000009 ETH | ||||
20046040 | 168 days ago | 0.00001554 ETH | ||||
20045992 | 168 days ago | 0.00001475 ETH | ||||
19870975 | 193 days ago | 0.00001293 ETH | ||||
19776871 | 206 days ago | 0.0000272 ETH | ||||
19746070 | 210 days ago | 0.00001318 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x1255cF5C...b30aaC2b3 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
ArbitrumMessengerWrapper
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 // @unsupported: ovm pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/arbitrum/messengers/IInbox.sol"; import "../interfaces/arbitrum/messengers/IBridge.sol"; import "../interfaces/arbitrum/messengers/IOutbox.sol"; import "./MessengerWrapper.sol"; /** * @dev A MessengerWrapper for Arbitrum - https://developer.offchainlabs.com/ * @notice Deployed on layer-1 */ contract ArbitrumMessengerWrapper is MessengerWrapper, Ownable { IInbox public immutable l1MessengerAddress; address public l2BridgeAddress; constructor( address _l1BridgeAddress, address _l2BridgeAddress, IInbox _l1MessengerAddress, uint256 _l2ChainId ) public MessengerWrapper(_l1BridgeAddress, _l2ChainId) { l2BridgeAddress = _l2BridgeAddress; l1MessengerAddress = _l1MessengerAddress; } receive() external payable {} /** * @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 submissionFee = l1MessengerAddress.calculateRetryableSubmissionFee(_calldata.length, 0); l1MessengerAddress.unsafeCreateRetryableTicket{value: submissionFee}( l2BridgeAddress, 0, submissionFee, address(0), address(0), 0, 0, _calldata ); } function verifySender(address l1BridgeCaller, bytes memory /*_data*/) public override { if (isRootConfirmation) return; // Reference: https://github.com/OffchainLabs/arbitrum/blob/5c06d89daf8fa6088bcdba292ffa6ed0c72afab2/packages/arb-bridge-peripherals/contracts/tokenbridge/ethereum/L1ArbitrumMessenger.sol#L89 IBridge arbBridge = l1MessengerAddress.bridge(); IOutbox outbox = IOutbox(arbBridge.activeOutbox()); address l2ToL1Sender = outbox.l2ToL1Sender(); require(l1BridgeCaller == address(arbBridge), "ARB_MSG_WPR: Caller is not the bridge"); require(l2ToL1Sender == l2BridgeAddress, "ARB_MSG_WPR: Invalid cross-domain sender"); } /** * @dev Claim excess funds * @param recipient The recipient to send to * @param amount The amount to claim */ function claimFunds(address payable recipient, uint256 amount) public onlyOwner { recipient.transfer(amount); } }
// 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; } }
// Copyright 2021-2022, Offchain Labs, Inc. // For license information, see https://github.com/nitro/blob/master/LICENSE // SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.6.11; interface IBridge { function activeOutbox() external view returns (address); }
// Copyright 2021-2022, Offchain Labs, Inc. // For license information, see https://github.com/nitro/blob/master/LICENSE // SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.6.11; import "./IBridge.sol"; interface IInbox { function sendL2Message(bytes calldata messageData) external returns (uint256); function bridge() external view returns (IBridge); function unsafeCreateRetryableTicket( address to, uint256 l2CallValue, uint256 maxSubmissionCost, address excessFeeRefundAddress, address callValueRefundAddress, uint256 gasLimit, uint256 maxFeePerGas, bytes calldata data ) external payable returns (uint256); function calculateRetryableSubmissionFee(uint256 dataLength, uint256 baseFee) external returns (uint256); }
// Copyright 2021-2022, Offchain Labs, Inc. // For license information, see https://github.com/nitro/blob/master/LICENSE // SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.6.11; interface IOutbox { function l2ToL1Sender() external view returns (address); }
// 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 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 IInbox","name":"_l1MessengerAddress","type":"address"},{"internalType":"uint256","name":"_l2ChainId","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":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimFunds","outputs":[],"stateMutability":"nonpayable","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":"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 IInbox","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":[],"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":"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"},{"stateMutability":"payable","type":"receive"}]
Deployed Bytecode
0x6080604052600436106100d65760003560e01c80638e58736f1161007f578063c5deebb311610059578063c5deebb3146101f0578063d6ae3cd514610205578063ed2b40ea14610227578063f2fde38b14610247576100dd565b80638e58736f1461019b578063934746a7146101bb57806399178dd8146101d0576100dd565b8063715018a6116100b0578063715018a61461015c5780638b034eb8146101715780638da5cb5b14610186576100dd565b80631aae9eed146100e2578063419cb550146101185780635ab2a5581461013a576100dd565b366100dd57005b600080fd5b3480156100ee57600080fd5b506101026100fd3660046112ae565b610267565b60405161010f91906113d1565b60405180910390f35b34801561012457600080fd5b5061013861013336600461127b565b6103cc565b005b34801561014657600080fd5b5061014f6105ef565b60405161010f91906112e8565b34801561016857600080fd5b50610138610613565b34801561017d57600080fd5b506101026106f9565b34801561019257600080fd5b5061014f610702565b3480156101a757600080fd5b506101386101b6366004611188565b610723565b3480156101c757600080fd5b5061014f610a96565b3480156101dc57600080fd5b506101386101eb3660046110d1565b610ab2565b3480156101fc57600080fd5b5061014f610d29565b34801561021157600080fd5b5061021a610d4d565b60405161010f91906113dc565b34801561023357600080fd5b506101386102423660046110a6565b610d71565b34801561025357600080fd5b50610138610262366004611067565b610e27565b6000808573ffffffffffffffffffffffffffffffffffffffff1663960a7afa86866040518363ffffffff1660e01b81526004016102a59291906113e5565b60206040518083038186803b1580156102bd57600080fd5b505afa1580156102d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f59190611263565b90506000808773ffffffffffffffffffffffffffffffffffffffff16635a7e1083846040518263ffffffff1660e01b815260040161033391906113dc565b60c06040518083038186803b15801561034b57600080fd5b505afa15801561035f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610383919061111f565b5092955093505050428390039050821580159061039e575081155b80156103a957508581115b156103bb5760019450505050506103c4565b60009450505050505b949350505050565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000f074540eb83c86211f305e145eb31743e228e57d1614610444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043b90611519565b60405180910390fd5b80516040517fa66b327d00000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004dbd4fc535ac27206064b68ffcf827b0a60bab3f169163a66b327d916104bb9185906004016113e5565b602060405180830381600087803b1580156104d557600080fd5b505af11580156104e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050d9190611263565b6001546040517f6e6e8a6a00000000000000000000000000000000000000000000000000000000815291925073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000004dbd4fc535ac27206064b68ffcf827b0a60bab3f811692636e6e8a6a92859261059892911690600090849082908190819081908d90600401611309565b6020604051808303818588803b1580156105b157600080fd5b505af11580156105c5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906105ea9190611263565b505050565b7f000000000000000000000000f074540eb83c86211f305e145eb31743e228e57d81565b61061b610f7e565b73ffffffffffffffffffffffffffffffffffffffff16610639610702565b73ffffffffffffffffffffffffffffffffffffffff1614610686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043b906114e4565b6000805460405161010090910473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b60005460ff1681565b600054610100900473ffffffffffffffffffffffffffffffffffffffff1690565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556040517fd5ef75510000000000000000000000000000000000000000000000000000000081527f000000000000000000000000f074540eb83c86211f305e145eb31743e228e57d9073ffffffffffffffffffffffffffffffffffffffff82169063d5ef7551906107c29033906004016112e8565b60206040518083038186803b1580156107da57600080fd5b505afa1580156107ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108129190611247565b610848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043b90611608565b878414610881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043b9061154e565b60008173ffffffffffffffffffffffffffffffffffffffff1663f3f480d96040518163ffffffff1660e01b815260040160206040518083038186803b1580156108c957600080fd5b505afa1580156108dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109019190611263565b905060005b89811015610a61576000610940848d8d8581811061092057fe5b905060200201358a8a8681811061093357fe5b9050602002013586610267565b905080610979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043b90611450565b8373ffffffffffffffffffffffffffffffffffffffff1663ef6ebe5e7f000000000000000000000000000000000000000000000000000000000000a4b18e8e868181106109c257fe5b905060200201358d8d878181106109d557fe5b905060200201358c8c888181106109e857fe5b905060200201358b8b898181106109fb57fe5b905060200201356040518663ffffffff1660e01b8152600401610a2295949392919061163f565b600060405180830381600087803b158015610a3c57600080fd5b505af1158015610a50573d6000803e3d6000fd5b505060019093019250610906915050565b5050600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055505050505050505050565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b60005460ff1615610ac257610d25565b60007f0000000000000000000000004dbd4fc535ac27206064b68ffcf827b0a60bab3f73ffffffffffffffffffffffffffffffffffffffff1663e78cea926040518163ffffffff1660e01b815260040160206040518083038186803b158015610b2a57600080fd5b505afa158015610b3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b62919061108a565b905060008173ffffffffffffffffffffffffffffffffffffffff1663ab5d89436040518163ffffffff1660e01b815260040160206040518083038186803b158015610bac57600080fd5b505afa158015610bc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be4919061108a565b905060008173ffffffffffffffffffffffffffffffffffffffff166380648b026040518163ffffffff1660e01b815260040160206040518083038186803b158015610c2e57600080fd5b505afa158015610c42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c66919061108a565b90508273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614610ccd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043b906115ab565b60015473ffffffffffffffffffffffffffffffffffffffff828116911614610d21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043b90611487565b5050505b5050565b7f0000000000000000000000004dbd4fc535ac27206064b68ffcf827b0a60bab3f81565b7f000000000000000000000000000000000000000000000000000000000000a4b181565b610d79610f7e565b73ffffffffffffffffffffffffffffffffffffffff16610d97610702565b73ffffffffffffffffffffffffffffffffffffffff1614610de4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043b906114e4565b60405173ffffffffffffffffffffffffffffffffffffffff83169082156108fc029083906000818181858888f193505050501580156105ea573d6000803e3d6000fd5b610e2f610f7e565b73ffffffffffffffffffffffffffffffffffffffff16610e4d610702565b73ffffffffffffffffffffffffffffffffffffffff1614610e9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043b906114e4565b73ffffffffffffffffffffffffffffffffffffffff8116610ee7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043b906113f3565b6000805460405173ffffffffffffffffffffffffffffffffffffffff8085169361010090930416917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b3390565b60008083601f840112610f93578182fd5b50813567ffffffffffffffff811115610faa578182fd5b6020830191508360208083028501011115610fc457600080fd5b9250929050565b600082601f830112610fdb578081fd5b813567ffffffffffffffff80821115610ff2578283fd5b60405160207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8501168201018181108382111715611030578485fd5b60405282815292508284830160200186101561104b57600080fd5b8260208601602083013760006020848301015250505092915050565b600060208284031215611078578081fd5b813561108381611662565b9392505050565b60006020828403121561109b578081fd5b815161108381611662565b600080604083850312156110b8578081fd5b82356110c381611662565b946020939093013593505050565b600080604083850312156110e3578182fd5b82356110ee81611662565b9150602083013567ffffffffffffffff811115611109578182fd5b61111585828601610fcb565b9150509250929050565b60008060008060008060c08789031215611137578182fd5b865161114281611662565b80965050602087015194506040870151935060608701519250608087015161116981611662565b60a088015190925061117a81611687565b809150509295509295509295565b6000806000806000806000806080898b0312156111a3578182fd5b883567ffffffffffffffff808211156111ba578384fd5b6111c68c838d01610f82565b909a50985060208b01359150808211156111de578384fd5b6111ea8c838d01610f82565b909850965060408b0135915080821115611202578384fd5b61120e8c838d01610f82565b909650945060608b0135915080821115611226578384fd5b506112338b828c01610f82565b999c989b5096995094979396929594505050565b600060208284031215611258578081fd5b815161108381611687565b600060208284031215611274578081fd5b5051919050565b60006020828403121561128c578081fd5b813567ffffffffffffffff8111156112a2578182fd5b6103c484828501610fcb565b600080600080608085870312156112c3578384fd5b84356112ce81611662565b966020860135965060408601359560600135945092505050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b600061010073ffffffffffffffffffffffffffffffffffffffff808c16845260208b818601528a6040860152818a16606086015281891660808601528760a08601528660c08601528260e08601528551915081838601528392505b8183101561138357858301810151858401610120015291820191611364565b5080821115611396578261012082860101525b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01692909201610120019a9950505050505050505050565b901515815260200190565b90815260200190565b918252602082015260400190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4d573a20526f6f742063616e6e6f7420626520636f6e6669726d656400000000604082015260600190565b60208082526028908201527f4152425f4d53475f5750523a20496e76616c69642063726f73732d646f6d616960408201527f6e2073656e646572000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252818101527f4d573a2053656e646572206d75737420626520746865204c3120427269646765604082015260600190565b60208082526037908201527f4d573a20726f6f7448617368657320616e6420746f74616c416d6f756e74732060408201527f6d757374206265207468652073616d65206c656e677468000000000000000000606082015260800190565b60208082526025908201527f4152425f4d53475f5750523a2043616c6c6572206973206e6f7420746865206260408201527f7269646765000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601b908201527f4d573a2053656e646572206d757374206265206120626f6e6465720000000000604082015260600190565b948552602085019390935260408401919091526060830152608082015260a00190565b73ffffffffffffffffffffffffffffffffffffffff8116811461168457600080fd5b50565b801515811461168457600080fdfea26469706673582212201fe95c7f2a1d3935c9808970f605d255e70a37928571f7e2212c4c09fdf5ccae64736f6c634300060c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,405.11 | 0.0139 | $47.4 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.