More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 2,468 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 22268803 | 16 hrs ago | IN | 0.02677907 ETH | 0.00004204 | ||||
Transfer | 22268294 | 18 hrs ago | IN | 0.27674058 ETH | 0.00014136 | ||||
Transfer | 22267841 | 19 hrs ago | IN | 0.04594164 ETH | 0.00006305 | ||||
Transfer | 22266703 | 23 hrs ago | IN | 0.01313897 ETH | 0.00002524 | ||||
Transfer | 22260961 | 42 hrs ago | IN | 0.05248432 ETH | 0.00001349 | ||||
Transfer | 22258958 | 2 days ago | IN | 0.01363859 ETH | 0.00001223 | ||||
Transfer | 22258399 | 2 days ago | IN | 0.01954379 ETH | 0.00001156 | ||||
Transfer | 22257686 | 2 days ago | IN | 0.01713171 ETH | 0.00001136 | ||||
Transfer | 22257162 | 2 days ago | IN | 0.01732943 ETH | 0.00001228 | ||||
Transfer | 22254848 | 2 days ago | IN | 0.08713588 ETH | 0.00001208 | ||||
Transfer | 22253541 | 2 days ago | IN | 0.04005415 ETH | 0.00010854 | ||||
Transfer | 22251122 | 3 days ago | IN | 0.0103813 ETH | 0.0000119 | ||||
Transfer | 22249626 | 3 days ago | IN | 0.00746903 ETH | 0.00001312 | ||||
Transfer | 22249074 | 3 days ago | IN | 0.01843077 ETH | 0.00001161 | ||||
Transfer | 22243879 | 4 days ago | IN | 0.01213665 ETH | 0.00001279 | ||||
Transfer | 22241929 | 4 days ago | IN | 0.00880583 ETH | 0.00001257 | ||||
Transfer | 22237972 | 4 days ago | IN | 0.01636124 ETH | 0.00001705 | ||||
Transfer | 22237377 | 5 days ago | IN | 0.02933383 ETH | 0.00002013 | ||||
Transfer | 22236192 | 5 days ago | IN | 0.01109838 ETH | 0.00001134 | ||||
Transfer | 22236110 | 5 days ago | IN | 0.01587171 ETH | 0.00001384 | ||||
Transfer | 22235399 | 5 days ago | IN | 0.04614466 ETH | 0.00001735 | ||||
Transfer | 22234798 | 5 days ago | IN | 0.02182825 ETH | 0.00001546 | ||||
Transfer | 22229501 | 6 days ago | IN | 0.11818361 ETH | 0.00001246 | ||||
Batch Signature | 22223516 | 7 days ago | IN | 0 ETH | 0.00010439 | ||||
Transfer | 22222407 | 7 days ago | IN | 0.02826244 ETH | 0.00001238 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 22223516 | 7 days ago | 311.19 ETH | ||||
Transfer | 22180731 | 12 days ago | 0.001 ETH | ||||
Transfer | 22065221 | 29 days ago | 0.00004583 ETH | ||||
Transfer | 21952128 | 44 days ago | 0.00001857 ETH | ||||
Transfer | 21952128 | 44 days ago | 0.00004794 ETH | ||||
Transfer | 21952128 | 44 days ago | 0.0004022 ETH | ||||
Transfer | 21464752 | 112 days ago | 56,839 ETH | ||||
Transfer | 21462374 | 113 days ago | 188.57338083 ETH | ||||
Transfer | 21462366 | 113 days ago | 97.38874869 ETH | ||||
Transfer | 21462358 | 113 days ago | 26,941.41408207 ETH | ||||
Transfer | 21353453 | 128 days ago | 0.00008991 ETH | ||||
Transfer | 21353453 | 128 days ago | 0.00504545 ETH | ||||
Transfer | 21282026 | 138 days ago | 0.00052959 ETH | ||||
Transfer | 21282026 | 138 days ago | 0.01033491 ETH | ||||
Transfer | 21210714 | 148 days ago | 1.59552079 ETH | ||||
Transfer | 20863616 | 196 days ago | 951.99 ETH | ||||
Transfer | 20863380 | 196 days ago | 0.01 ETH | ||||
Transfer | 20826543 | 202 days ago | 0.001 ETH | ||||
Transfer | 20826543 | 202 days ago | 0.0035 ETH | ||||
Transfer | 20789484 | 207 days ago | 393.0417801 ETH | ||||
Transfer | 20504884 | 246 days ago | 0.0000284 ETH | ||||
Transfer | 20504884 | 246 days ago | 0.00094182 ETH | ||||
Transfer | 20459542 | 253 days ago | 0.05226357 ETH | ||||
Transfer | 20388901 | 263 days ago | 0.00002905 ETH | ||||
Transfer | 20388901 | 263 days ago | 0.00005228 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
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"}]
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
Latest 25 blocks (From a total of 33 blocks with 1.32 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
22065221 | 29 days ago | 106 | 0.00 TH | 22,930,659 (63.70%) | 0.013517397537084441 ETH |
21952128 | 44 days ago | 125 | 0.00 TH | 13,944,750 (38.93%) | 0.025637434857820462 ETH |
21911482 | 50 days ago | 150 | 0.00 TH | 32,080,081 (89.20%) | 0.025679006461402425 ETH |
21894575 | 52 days ago | 167 | 0.00 TH | 14,441,600 (40.12%) | 0.043109290600474799 ETH |
21353453 | 128 days ago | 123 | 0.00 TH | 8,373,574 (27.91%) | 0.014394945539614356 ETH |
21300438 | 135 days ago | 112 | 0.00 TH | 10,986,474 (36.62%) | 0.056725927245934954 ETH |
21282026 | 138 days ago | 160 | 0.00 TH | 11,411,562 (38.04%) | 0.017544474248341736 ETH |
21219491 | 147 days ago | 124 | 0.00 TH | 11,632,514 (38.78%) | 0.028241308238846734 ETH |
20826543 | 202 days ago | 156 | 0.00 TH | 15,963,297 (53.21%) | 0.068906687958077041 ETH |
20709448 | 218 days ago | 181 | 0.00 TH | 13,045,320 (43.48%) | 0.012622372083962275 ETH |
20670119 | 223 days ago | 121 | 0.00 TH | 17,830,833 (59.44%) | 0.050665641765776964 ETH |
20652454 | 226 days ago | 105 | 0.00 TH | 7,273,132 (24.24%) | 0.01515042561940963 ETH |
20631554 | 229 days ago | 174 | 0.00 TH | 12,381,110 (41.27%) | 0.037387361925754975 ETH |
20620336 | 230 days ago | 160 | 0.00 TH | 15,493,345 (51.64%) | 0.037399018965282148 ETH |
20612011 | 232 days ago | 213 | 0.00 TH | 14,550,094 (48.50%) | 0.021318013044396516 ETH |
20607784 | 232 days ago | 100 | 0.00 TH | 29,957,903 (99.86%) | 0.024262124900204402 ETH |
20586333 | 235 days ago | 185 | 0.00 TH | 21,617,806 (72.06%) | 0.033083004711088208 ETH |
20543691 | 241 days ago | 178 | 0.00 TH | 22,651,829 (75.51%) | 0.02222059517597721 ETH |
20504884 | 246 days ago | 190 | 0.00 TH | 21,464,686 (71.55%) | 0.037041081792893134 ETH |
20504056 | 247 days ago | 218 | 0.00 TH | 19,844,499 (66.15%) | 0.023122604769148094 ETH |
20469041 | 251 days ago | 121 | 0.00 TH | 11,757,548 (39.19%) | 0.023885585397144783 ETH |
20459542 | 253 days ago | 97 | 0.00 TH | 9,837,821 (32.79%) | 0.14935439134661522 ETH |
20457797 | 253 days ago | 135 | 0.00 TH | 14,325,823 (47.75%) | 0.048913147851237904 ETH |
20446608 | 255 days ago | 142 | 0.00 TH | 14,801,949 (49.34%) | 0.028847011028430768 ETH |
20428783 | 257 days ago | 397 | 0.00 TH | 28,095,702 (93.65%) | 0.053762772921568747 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 39307 withdrawals (31,102.394777094 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
1471620 | 22222504 | 7 days ago | 0.019126779 ETH |
1471619 | 22222504 | 7 days ago | 0.019087644 ETH |
1471618 | 22222504 | 7 days ago | 0.096988879 ETH |
1471617 | 22222504 | 7 days ago | 0.019161129 ETH |
1471616 | 22222503 | 7 days ago | 0.019117881 ETH |
1471615 | 22222503 | 7 days ago | 0.019140368 ETH |
1471614 | 22222503 | 7 days ago | 0.019111729 ETH |
1471613 | 22222503 | 7 days ago | 0.019099965 ETH |
1471612 | 22222503 | 7 days ago | 0.019110753 ETH |
1471611 | 22222503 | 7 days ago | 0.019131723 ETH |
1471610 | 22222503 | 7 days ago | 0.019058339 ETH |
1471609 | 22222503 | 7 days ago | 0.065265337 ETH |
1471608 | 22222503 | 7 days ago | 0.019115805 ETH |
1471607 | 22222503 | 7 days ago | 0.019097234 ETH |
1471606 | 22222503 | 7 days ago | 0.019130709 ETH |
1471605 | 22222503 | 7 days ago | 0.019061182 ETH |
1471604 | 22222503 | 7 days ago | 0.019094262 ETH |
1471603 | 22222503 | 7 days ago | 0.019143765 ETH |
1471602 | 22222503 | 7 days ago | 0.019113056 ETH |
1471601 | 22222503 | 7 days ago | 0.01911272 ETH |
1471600 | 22222502 | 7 days ago | 0.019124081 ETH |
1471599 | 22222502 | 7 days ago | 0.019155952 ETH |
1471598 | 22222502 | 7 days ago | 0.019079344 ETH |
1471597 | 22222502 | 7 days ago | 0.019127592 ETH |
1471596 | 22222502 | 7 days ago | 0.019132371 ETH |
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $1,640.67 | 17.3435 | $28,454.96 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.