Source Code
Latest 25 from a total of 37 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Batch Signature | 22685853 | 29 days ago | IN | 0 ETH | 0.00019411 | ||||
0x68747470 | 22420883 | 66 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22420568 | 66 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22420255 | 66 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22419967 | 66 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22419677 | 66 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22419384 | 66 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22419094 | 66 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22417947 | 66 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22417656 | 66 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22417368 | 66 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22417091 | 67 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22416804 | 67 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22416521 | 67 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22416235 | 67 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22415950 | 67 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22415667 | 67 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22415383 | 67 days ago | IN | 0 ETH | 0.00002087 | ||||
0x68747470 | 22415099 | 67 days ago | IN | 0 ETH | 0.00002087 | ||||
Batch Signature | 22180076 | 100 days ago | IN | 0 ETH | 0.00007012 | ||||
Transfer | 21944135 | 133 days ago | IN | 247.4257964 ETH | 0.00008796 | ||||
Transfer | 21442859 | 203 days ago | IN | 4 ETH | 0.0007165 | ||||
Batch Signature | 21440586 | 203 days ago | IN | 0 ETH | 0.00096053 | ||||
Batch Signature | 20789439 | 294 days ago | IN | 0 ETH | 0.00110499 | ||||
Batch Signature | 20683064 | 309 days ago | IN | 0 ETH | 0.00019455 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 22685853 | 29 days ago | 10.55320384 ETH | ||||
Transfer | 21820316 | 150 days ago | 443.67805192 ETH | ||||
Transfer | 21571440 | 185 days ago | 227.28165944 ETH | ||||
Transfer | 21440586 | 203 days ago | 740 ETH | ||||
Transfer | 21300839 | 222 days ago | 239.07604673 ETH | ||||
Transfer | 21122024 | 247 days ago | 249.65143189 ETH | ||||
Transfer | 20863605 | 283 days ago | 257.42720145 ETH | ||||
Transfer | 20789439 | 294 days ago | 253.4251416 ETH | ||||
Transfer | 20676207 | 310 days ago | 253.41885634 ETH | ||||
Transfer | 20433025 | 344 days ago | 261.49 ETH | ||||
Transfer | 20390124 | 350 days ago | 261.4962853 ETH | ||||
Transfer | 20210102 | 375 days ago | 3,914.12821366 ETH | ||||
Transfer | 20182334 | 379 days ago | 264.09303031 ETH | ||||
Transfer | 19974605 | 408 days ago | 272.88159297 ETH | ||||
Transfer | 19879612 | 421 days ago | 2,922 ETH | ||||
Transfer | 19879156 | 421 days ago | 78 ETH | ||||
Transfer | 19819357 | 429 days ago | 274.04746131 ETH | ||||
Transfer | 19623382 | 457 days ago | 2,999.9 ETH | ||||
Transfer | 19616936 | 458 days ago | 0.1 ETH | ||||
Transfer | 19565808 | 465 days ago | 274.01294339 ETH | ||||
Transfer | 19332924 | 497 days ago | 294.8484742 ETH | ||||
Transfer | 19125043 | 527 days ago | 280.45348204 ETH | ||||
Transfer | 18875586 | 562 days ago | 169.43608338 ETH | ||||
Transfer | 18668995 | 591 days ago | 122.40924252 ETH | ||||
Transfer | 18469032 | 619 days ago | 196.74474661 ETH |
Withdrawals
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x3A7d79C3...00504A3E3 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
MultiSigWalletProxy
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; contract MultiSigWalletProxy { address public implementation; constructor(address _implementation, bytes memory _data) { implementation = _implementation; if(_data.length > 0) { (bool success,) = _implementation.delegatecall(_data); require(success, "MultiSigWalletProxy: Initialization failed"); } } fallback() external payable { _delegate(implementation); } receive() external payable { _delegate(implementation); } function _delegate(address _implementation) internal { assembly { calldatacopy(0, 0, calldatasize()) let result := delegatecall(gas(), _implementation, 0, calldatasize(), 0, 0) returndatacopy(0, 0, returndatasize()) switch result case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } }
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "./MultiSigWalletProxy.sol"; import "./MultiSigWalletImplementation.sol"; contract MultiSigWalletFactory { event NewMultiSigWalletCreated(address wallet); function createMultiSigWallet( address _implementation, address[] memory owners, uint required, uint256 nonce ) public payable returns (address payable) { bytes32 salt = keccak256(abi.encodePacked(nonce, owners, required)); bytes memory initCode = abi.encodePacked( type(MultiSigWalletProxy).creationCode, abi.encode(address(_implementation), abi.encodeWithSignature("initialize(address[],uint256)", owners, required)) ); address payable wallet; assembly { wallet := create2(0, add(initCode, 0x20), mload(initCode), salt) if iszero(extcodesize(wallet)) { revert(0, 0) } } emit NewMultiSigWalletCreated(wallet); return wallet; } function calculateMultiSigWalletAddress( address _implementation, address[] memory owners, uint required, uint256 nonce ) public view returns (address wallet) { bytes32 salt = keccak256(abi.encodePacked(nonce, owners, required)); bytes memory initCode = abi.encodePacked( type(MultiSigWalletProxy).creationCode, abi.encode(address(_implementation), abi.encodeWithSignature("initialize(address[],uint256)", owners, required)) ); bytes32 hash = keccak256(abi.encodePacked( bytes1(0xff), address(this), salt, keccak256(initCode) )); return address(uint160(uint(hash))); } function createMultiSigWalletWithTransaction( address _implementation, address[] memory owners, uint required, uint256 nonce, MultiSigWalletImplementation.Transaction memory transaction, MultiSigWalletImplementation.Signature[] memory signatures ) public payable returns (address payable, bool) { address payable wallet = createMultiSigWallet(_implementation, owners, required, nonce); bool isOk = MultiSigWalletImplementation(wallet).batchSignature(transaction, signatures); return (wallet, isOk); } }
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution. /// @author Stefan George - <[email protected]> contract MultiSigWalletImplementation { /* * Events */ event Confirmation(address indexed sender, uint indexed transactionId); event Revocation(address indexed sender, uint indexed transactionId); event Submission(uint indexed transactionId); event Execution(uint indexed transactionId); event ExecutionFailure(uint indexed transactionId); event Deposit(address indexed sender, uint value); event OwnerAddition(address indexed owner); event OwnerRemoval(address indexed owner); event RequirementChange(uint required); /* * Constants */ uint public constant MAX_OWNER_COUNT = 50; /* * Storage */ mapping(uint => Transaction) public transactions; mapping(uint => mapping(address => bool)) public confirmations; mapping(address => bool) public isOwner; mapping(bytes32 => bool) public txNonces; address[] public owners; uint public required; uint public transactionCount; bytes32 public DOMAIN_SEPARATOR; bytes32 constant EIP712DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); bytes32 internal constant TRANSACTION_TYPEHASH = keccak256("Transaction(uint nonce,address destination,uint value,bytes data)"); bool initialized; struct Transaction { uint nonce; address destination; uint value; bytes data; bool executed; } struct Signature { address signer; uint8 v; bytes32 r; bytes32 s; } /* * Modifiers */ modifier onlyWallet() { require(msg.sender == address(this)); _; } modifier ownerDoesNotExist(address owner) { require(!isOwner[owner]); _; } modifier ownerExists(address owner) { require(isOwner[owner]); _; } modifier transactionExists(uint transactionId) { require(transactions[transactionId].destination != address(0)); _; } modifier confirmed(uint transactionId, address owner) { require(confirmations[transactionId][owner]); _; } modifier notConfirmed(uint transactionId, address owner) { require(!confirmations[transactionId][owner]); _; } modifier notExecuted(uint transactionId) { require(!transactions[transactionId].executed); _; } modifier notNull(address _address) { require(_address != address(0)); _; } modifier validRequirement(uint ownerCount, uint _required) { require( ownerCount <= MAX_OWNER_COUNT && _required <= ownerCount && _required != 0 && ownerCount != 0 ); _; } /// @dev Receive function allows to deposit ether. receive() external payable { if (msg.value > 0) emit Deposit(msg.sender, msg.value); } /// @dev Fallback function allows to deposit ether. fallback() external payable { if (msg.value > 0) emit Deposit(msg.sender, msg.value); } /* * Public functions */ /// @dev Contract constructor sets initial owners and required number of confirmations. constructor() {} function initialize( address[] memory _owners, uint _required ) validRequirement(_owners.length, _required) public { require(!initialized, "already initialized"); DOMAIN_SEPARATOR = keccak256( abi.encode( EIP712DOMAIN_TYPEHASH, keccak256("MultiSigWallet"), // name keccak256("2"), // version block.chainid, address(this) ) ); for (uint i = 0; i < _owners.length; i++) { require(!isOwner[_owners[i]] && _owners[i] != address(0)); isOwner[_owners[i]] = true; } owners = _owners; required = _required; initialized = true; } /// @dev Allows to add a new owner. Transaction has to be sent by wallet. /// @param owner Address of new owner. function addOwner( address owner ) public onlyWallet ownerDoesNotExist(owner) notNull(owner) validRequirement(owners.length + 1, required) { isOwner[owner] = true; owners.push(owner); emit OwnerAddition(owner); } /// @dev Allows to remove an owner. Transaction has to be sent by wallet. /// @param owner Address of owner. function removeOwner(address owner) public onlyWallet ownerExists(owner) { isOwner[owner] = false; for (uint i = 0; i < owners.length - 1; i++) if (owners[i] == owner) { owners[i] = owners[owners.length - 1]; delete owners[i]; break; } if (required > owners.length) changeRequirement(owners.length); emit OwnerRemoval(owner); } /// @dev Allows to replace an owner with a new owner. Transaction has to be sent by wallet. /// @param owner Address of owner to be replaced. /// @param newOwner Address of new owner. function replaceOwner( address owner, address newOwner ) public onlyWallet ownerExists(owner) ownerDoesNotExist(newOwner) { for (uint i = 0; i < owners.length; i++) if (owners[i] == owner) { owners[i] = newOwner; break; } isOwner[owner] = false; isOwner[newOwner] = true; emit OwnerRemoval(owner); emit OwnerAddition(newOwner); } /// @dev Allows to change the number of required confirmations. Transaction has to be sent by wallet. /// @param _required Number of required confirmations. function changeRequirement( uint _required ) public onlyWallet validRequirement(owners.length, _required) { required = _required; emit RequirementChange(_required); } /// @dev Allows an owner to submit and confirm a transaction. /// @param destination Transaction target address. /// @param value Transaction ether value. /// @param data Transaction data payload. /// @return transactionId Returns transaction ID. function submitTransaction( address destination, uint value, bytes memory data ) public returns (uint transactionId) { transactionId = addTransaction(destination, value, data); confirmTransaction(transactionId); } /// @dev Allows an owner to confirm a transaction. /// @param transactionId Transaction ID. function confirmTransaction( uint transactionId ) public ownerExists(msg.sender) transactionExists(transactionId) notConfirmed(transactionId, msg.sender) { confirmations[transactionId][msg.sender] = true; emit Confirmation(msg.sender, transactionId); executeTransaction(transactionId); } /// @dev Allows an owner to revoke a confirmation for a transaction. /// @param transactionId Transaction ID. function revokeConfirmation( uint transactionId ) public ownerExists(msg.sender) confirmed(transactionId, msg.sender) notExecuted(transactionId) { confirmations[transactionId][msg.sender] = false; emit Revocation(msg.sender, transactionId); } /// @dev Allows anyone to execute a confirmed transaction. /// @param transactionId Transaction ID. function executeTransaction( uint transactionId ) public ownerExists(msg.sender) confirmed(transactionId, msg.sender) notExecuted(transactionId) { _executeTransaction(transactionId); } function _executeTransaction( uint transactionId ) internal notExecuted(transactionId) { if (isConfirmed(transactionId)) { Transaction storage txn = transactions[transactionId]; txn.executed = true; if ( external_call( txn.destination, txn.value, txn.data.length, txn.data ) ) emit Execution(transactionId); else { emit ExecutionFailure(transactionId); txn.executed = false; } } } // call has been separated into its own function in order to take advantage // of the Solidity's code generator to produce a loop that copies tx.data into memory. function external_call( address destination, uint value, uint dataLength, bytes memory data ) internal returns (bool) { bool result; assembly { let x := mload(0x40) // "Allocate" memory for output (0x40 is where "free memory" pointer is stored by convention) let d := add(data, 32) // First 32 bytes are the padded length of data, so exclude that result := call( sub(gas(), 34710), // 34710 is the value that solidity is currently emitting // It includes callGas (700) + callVeryLow (3, to pay for SUB) + callValueTransferGas (9000) + // callNewAccountGas (25000, in case the destination address does not exist and needs creating) destination, value, d, dataLength, // Size of the input (in bytes) - this is what fixes the padding problem x, 0 // Output is ignored, therefore the output size is zero ) } return result; } /// @dev Returns the confirmation status of a transaction. /// @param transactionId Transaction ID. /// @return status Confirmation status. function isConfirmed(uint transactionId) public view returns (bool status) { uint count = 0; for (uint i = 0; i < owners.length; i++) { if (confirmations[transactionId][owners[i]]) count += 1; if (count == required) return true; } } /* * Internal functions */ /// @dev Adds a new transaction to the transaction mapping, if transaction does not exist yet. /// @param destination Transaction target address. /// @param value Transaction ether value. /// @param data Transaction data payload. /// @return transactionId Returns transaction ID. function addTransaction( address destination, uint value, bytes memory data ) internal notNull(destination) returns (uint transactionId) { if(transactions[transactionId].destination == address(0)) { transactionId = transactionCount; transactions[transactionId] = Transaction({ nonce: transactionId, destination: destination, value: value, data: data, executed: false }); transactionCount += 1; emit Submission(transactionId); } else { revert("transactionId already exist"); } } /* * Web3 call functions */ /// @dev Returns number of confirmations of a transaction. /// @param transactionId Transaction ID. /// @return count Number of confirmations. function getConfirmationCount( uint transactionId ) public view returns (uint count) { for (uint i = 0; i < owners.length; i++) if (confirmations[transactionId][owners[i]]) count += 1; } /// @dev Returns total number of transactions after filers are applied. /// @param pending Include pending transactions. /// @param executed Include executed transactions. /// @return count Total number of transactions after filters are applied. function getTransactionCount( bool pending, bool executed ) public view returns (uint count) { for (uint i = 0; i < transactionCount; i++) if ( (pending && !transactions[i].executed) || (executed && transactions[i].executed) ) count += 1; } /// @dev Returns list of owners. /// @return List of owner addresses. function getOwners() public view returns (address[] memory) { return owners; } /// @dev Returns array with owner addresses, which confirmed transaction. /// @param transactionId Transaction ID. /// @return _confirmations Returns array of owner addresses. function getConfirmations( uint transactionId ) public view returns (address[] memory _confirmations) { address[] memory confirmationsTemp = new address[](owners.length); uint count = 0; uint i; for (i = 0; i < owners.length; i++) if (confirmations[transactionId][owners[i]]) { confirmationsTemp[count] = owners[i]; count += 1; } _confirmations = new address[](count); for (i = 0; i < count; i++) _confirmations[i] = confirmationsTemp[i]; } /// @dev Returns list of transaction IDs in defined range. /// @param from Index start position of transaction array. /// @param to Index end position of transaction array. /// @param pending Include pending transactions. /// @param executed Include executed transactions. /// @return _transactionIds Returns array of transaction IDs. function getTransactionIds( uint from, uint to, bool pending, bool executed ) public view returns (uint[] memory _transactionIds) { uint[] memory transactionIdsTemp = new uint[](transactionCount); uint count = 0; uint i; for (i = 0; i < transactionCount; i++) if ( (pending && !transactions[i].executed) || (executed && transactions[i].executed) ) { transactionIdsTemp[count] = i; count += 1; } _transactionIds = new uint[](to - from); for (i = from; i < to; i++) _transactionIds[i - from] = transactionIdsTemp[i]; } function hashTransaction( Transaction memory transaction ) public pure returns (bytes32) { return keccak256( abi.encode( TRANSACTION_TYPEHASH, transaction.nonce, transaction.destination, transaction.value, keccak256(bytes(transaction.data)) ) ); } function getTransactionMessage( Transaction memory transaction ) public view returns (bytes32) { bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR, hashTransaction(transaction) ) ); return digest; } function batchSignature(Transaction memory txn, Signature[] memory sortedSignatures) public returns (bool isOK) { require(sortedSignatures.length >= required, "invalid signature data length"); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR, hashTransaction(txn) ) ); require(!txNonces[digest], "tx-executed"); uint256 txId = txn.nonce; address lastOwner = address(0); for(uint i = 0; i < sortedSignatures.length; i++) { Signature memory signature = sortedSignatures[i]; address signer = signature.signer; uint8 v = signature.v; bytes32 r = signature.r; bytes32 s = signature.s; address currentOwner = ecrecover(digest, v, r, s); // to save gas, must need signature.signer sorted require(currentOwner > lastOwner && isOwner[currentOwner] && signer == currentOwner, "error-sig"); lastOwner = currentOwner; emit Confirmation(signer, txId); } txn.executed = true; txNonces[digest] = true; if (external_call(txn.destination, txn.value, txn.data.length, txn.data)) { emit Execution(txId); } else { emit ExecutionFailure(txId); txn.executed = false; } return txn.executed; } struct Call { address target; uint value; bytes data; } function multiCall( Call[] memory calls ) public onlyWallet { for (uint i = 0; i < calls.length; i++) { if (external_call( calls[i].target, calls[i].value, calls[i].data.length, calls[i].data )) {} else { revert("internal call failed"); } } } }
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "./MultiSigWalletImplementation.sol"; contract MultiSigWalletImplementationBeacon { event MultiSigWalletImplementationDeployed(address indexed implementation); constructor() { MultiSigWalletImplementation implementation = new MultiSigWalletImplementation(); address[] memory owners = new address[](1); owners[0] = msg.sender; implementation.initialize(owners, 1); emit MultiSigWalletImplementationDeployed(address(implementation)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_implementation","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
0x608060405234801561001057600080fd5b506040516105f33803806105f383398181016040528101906100329190610303565b816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000815111156101295760008273ffffffffffffffffffffffffffffffffffffffff16826040516100a391906103a6565b600060405180830381855af49150503d80600081146100de576040519150601f19603f3d011682016040523d82523d6000602084013e6100e3565b606091505b5050905080610127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161011e90610440565b60405180910390fd5b505b5050610460565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061016f82610144565b9050919050565b61017f81610164565b811461018a57600080fd5b50565b60008151905061019c81610176565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6101f5826101ac565b810181811067ffffffffffffffff82111715610214576102136101bd565b5b80604052505050565b6000610227610130565b905061023382826101ec565b919050565b600067ffffffffffffffff821115610253576102526101bd565b5b61025c826101ac565b9050602081019050919050565b60005b8381101561028757808201518184015260208101905061026c565b60008484015250505050565b60006102a66102a184610238565b61021d565b9050828152602081018484840111156102c2576102c16101a7565b5b6102cd848285610269565b509392505050565b600082601f8301126102ea576102e96101a2565b5b81516102fa848260208601610293565b91505092915050565b6000806040838503121561031a5761031961013a565b5b60006103288582860161018d565b925050602083015167ffffffffffffffff8111156103495761034861013f565b5b610355858286016102d5565b9150509250929050565b600081519050919050565b600081905092915050565b60006103808261035f565b61038a818561036a565b935061039a818560208601610269565b80840191505092915050565b60006103b28284610375565b915081905092915050565b600082825260208201905092915050565b7f4d756c746953696757616c6c657450726f78793a20496e697469616c697a617460008201527f696f6e206661696c656400000000000000000000000000000000000000000000602082015250565b600061042a602a836103bd565b9150610435826103ce565b604082019050919050565b600060208201905081810360008301526104598161041d565b9050919050565b6101848061046f6000396000f3fe6080604052600436106100225760003560e01c80635c60da1b1461007d57610052565b366100525761005060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff166100a8565b005b61007b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff166100a8565b005b34801561008957600080fd5b506100926100ce565b60405161009f9190610133565b60405180910390f35b3660008037600080366000845af43d6000803e80600081146100c9573d6000f35b3d6000fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061011d826100f2565b9050919050565b61012d81610112565b82525050565b60006020820190506101486000830184610124565b9291505056fea26469706673582212209ddd38ba0d1790de3f61b13242414d0a219eeb1743a9f9d028636e2b2243263564736f6c634300081100330000000000000000000000002cf26caf5f1b457de18c19a08c6597943aa246b20000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000016460b5bb3f0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000080000000000000000000000003b5e729537a607480f64e97658e678df03aab4be000000000000000000000000685ac8aee5ad107929b1e9ef2af2075cc5ba187d0000000000000000000000006b46a856522310fa24b3d06286593d042b36eb610000000000000000000000006de00e0fc9a7673208efb1653a086fa51dcbc4bc00000000000000000000000073194d6c6df7b4295d9b84c941b929cbcb2e657b000000000000000000000000a63f89df6154429a60f59069659ba881036fd5b5000000000000000000000000cbf74d4a780397cca5619773f415297aebcda411000000000000000000000000fd585015998120b517dabb2388900e059f44b87600000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106100225760003560e01c80635c60da1b1461007d57610052565b366100525761005060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff166100a8565b005b61007b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff166100a8565b005b34801561008957600080fd5b506100926100ce565b60405161009f9190610133565b60405180910390f35b3660008037600080366000845af43d6000803e80600081146100c9573d6000f35b3d6000fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061011d826100f2565b9050919050565b61012d81610112565b82525050565b60006020820190506101486000830184610124565b9291505056fea26469706673582212209ddd38ba0d1790de3f61b13242414d0a219eeb1743a9f9d028636e2b2243263564736f6c63430008110033
Deployed Bytecode Sourcemap
63:971:3:-:0;;;;;;;;;;;;;;;;;;;;;;;543:25;553:14;;;;;;;;;;543:9;:25::i;:::-;63:971;;468:25;478:14;;;;;;;;;;468:9;:25::i;:::-;63:971;98:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;581:451;686:14;683:1;680;667:34;787:1;784;768:14;765:1;748:15;741:5;728:61;823:16;820:1;817;802:38;860:6;884:1;879:68;;;;985:16;982:1;975:27;879:68;915:16;912:1;905:27;98:29;;;;;;;;;;;;:::o;7:126:4:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o
Swarm Source
ipfs://9ddd38ba0d1790de3f61b13242414d0a219eeb1743a9f9d028636e2b22432635
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 92.67% | $3,005.85 | 917.987 | $2,759,329.08 | |
ETH | 1.82% | $0.723268 | 74,728.1334 | $54,048.47 | |
ETH | 1.37% | $0.030241 | 1,347,121.8381 | $40,738.97 | |
ETH | 1.15% | $0.01118 | 3,072,273.5046 | $34,346.85 | |
ETH | 0.75% | $2.37 | 9,477.4464 | $22,461.55 | |
ETH | 0.36% | $16.4 | 661.7978 | $10,853.48 | |
ETH | 0.36% | $0.00027 | 39,302,513.7728 | $10,611.68 | |
ETH | 0.26% | $0.92772 | 8,230.7736 | $7,635.85 | |
ETH | 0.17% | $2.18 | 2,276.7989 | $4,963.42 | |
ETH | 0.14% | $0.000351 | 12,279,860.4267 | $4,304.71 | |
ETH | 0.11% | $0.003401 | 965,076.0716 | $3,282.42 | |
ETH | 0.07% | $0.004126 | 507,924.7383 | $2,095.79 | |
ETH | 0.05% | $0.000012 | 138,778,386.4312 | $1,637.58 | |
ETH | 0.05% | $12.81 | 114.2062 | $1,463.28 | |
ETH | 0.05% | $0.010463 | 139,274.48 | $1,457.17 | |
ETH | 0.05% | $0.03694 | 38,652.8975 | $1,427.84 | |
ETH | 0.04% | $0.138122 | 9,487.8422 | $1,310.48 | |
ETH | 0.04% | $0.000697 | 1,668,742.5398 | $1,162.98 | |
ETH | 0.04% | $0.428425 | 2,626.6508 | $1,125.32 | |
ETH | 0.04% | $0.00107 | 1,018,217.9159 | $1,089.91 | |
ETH | 0.04% | $0.042158 | 24,960.5361 | $1,052.3 | |
ETH | 0.03% | $0.000289 | 3,325,485.8175 | $961.2 | |
ETH | 0.03% | $0.032761 | 26,955.0028 | $883.07 | |
ETH | 0.03% | $0.016496 | 47,172.6225 | $778.15 | |
ETH | 0.02% | $0.000161 | 4,458,655.552 | $718.02 | |
ETH | 0.02% | $0.000696 | 905,843.8804 | $630.51 | |
ETH | 0.02% | $0.00824 | 75,079.1147 | $618.62 | |
ETH | 0.02% | $0.000022 | 24,623,963.878 | $549.11 | |
ETH | 0.02% | $0.626367 | 804.9469 | $504.19 | |
ETH | 0.02% | $0.000124 | 3,652,994.0655 | $453.15 | |
ETH | 0.01% | $0.001659 | 266,369.3938 | $441.85 | |
ETH | 0.01% | $1 | 440.22 | $440.22 | |
ETH | 0.01% | $0.000021 | 18,410,006.284 | $387.16 | |
ETH | 0.01% | $0.00267 | 132,667.0525 | $354.2 | |
ETH | 0.01% | $0.001189 | 276,785.7097 | $329.08 | |
ETH | 0.01% | $0.070998 | 4,480.9685 | $318.14 | |
ETH | 0.01% | $0.000102 | 3,114,232.5272 | $316.72 | |
ETH | 0.01% | $0.00038 | 820,360.8775 | $311.89 | |
ETH | 0.01% | $0.001026 | 290,748.6997 | $298.2 | |
ETH | <0.01% | $0.017341 | 14,895.2246 | $258.31 | |
ETH | <0.01% | $0.002041 | 112,688.6278 | $229.95 | |
ETH | <0.01% | $0.035788 | 5,308.0173 | $189.96 | |
ETH | <0.01% | $0.516756 | 345.9145 | $178.75 | |
ETH | <0.01% | $0.000001 | 191,011,204.577 | $163.49 | |
ETH | <0.01% | $0.00001 | 13,210,269.7592 | $132.08 | |
ETH | <0.01% | $0.000542 | 236,871.9341 | $128.4 | |
ETH | <0.01% | $0.002571 | 36,821.1971 | $94.68 | |
ETH | <0.01% | $0.000073 | 1,204,133.5942 | $87.88 | |
ETH | <0.01% | $79.06 | 0.8031 | $63.5 | |
ETH | <0.01% | $0.000296 | 212,267.0584 | $62.72 | |
ETH | <0.01% | $0.00121 | 49,019.4893 | $59.33 | |
ETH | <0.01% | $0.001435 | 35,622.4146 | $51.11 | |
ETH | <0.01% | $0.000061 | 722,354.6957 | $43.96 | |
ETH | <0.01% | $0.000305 | 132,683.3661 | $40.48 | |
ETH | <0.01% | $0.04239 | 669.3408 | $28.37 | |
ETH | <0.01% | $0.012429 | 1,247.9557 | $15.51 | |
ETH | <0.01% | $0.001523 | 7,845.3094 | $11.95 | |
ETH | <0.01% | $0.0001 | 34,627.2644 | $3.46 | |
ETH | <0.01% | $0.013677 | 171.4286 | $2.34 | |
ETH | <0.01% | $0.001172 | 677.9661 | $0.7947 | |
ETH | <0.01% | $0.0003 | 920 | $0.2757 |
Loading...
Loading
Loading...
Loading
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.