Overview
ETH Balance
0.0000012 ETH
Eth Value
Less Than $0.01 (@ $2,817.62/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 42,174 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Multi Send | 21135448 | 13 mins ago | IN | 0 ETH | 0.00261111 | ||||
Multi Send | 21135386 | 26 mins ago | IN | 0 ETH | 0.0027003 | ||||
Multi Send | 21135327 | 38 mins ago | IN | 0 ETH | 0.0020818 | ||||
Multi Send | 21135263 | 51 mins ago | IN | 0 ETH | 0.002901 | ||||
Multi Send | 21135244 | 54 mins ago | IN | 0 ETH | 0.00318182 | ||||
Multi Send | 21135063 | 1 hr ago | IN | 0 ETH | 0.00241571 | ||||
Multi Send | 21134958 | 1 hr ago | IN | 0 ETH | 0.00911028 | ||||
Multi Send | 21134867 | 2 hrs ago | IN | 0 ETH | 0.00367058 | ||||
Multi Send | 21134757 | 2 hrs ago | IN | 0 ETH | 0.01436139 | ||||
Multi Send | 21134482 | 3 hrs ago | IN | 0 ETH | 0.00421337 | ||||
Multi Send | 21132935 | 8 hrs ago | IN | 0 ETH | 0.00377358 | ||||
Multi Send | 21132174 | 11 hrs ago | IN | 0 ETH | 0.00393725 | ||||
Multi Send | 21132028 | 11 hrs ago | IN | 0 ETH | 0.00675029 | ||||
Multi Send | 21131676 | 12 hrs ago | IN | 0 ETH | 0.00386505 | ||||
Multi Send | 21131493 | 13 hrs ago | IN | 0 ETH | 0.00482008 | ||||
Multi Send | 21131447 | 13 hrs ago | IN | 0 ETH | 0.00472699 | ||||
Multi Send | 21131446 | 13 hrs ago | IN | 0 ETH | 0.00278663 | ||||
Multi Send | 21131424 | 13 hrs ago | IN | 0 ETH | 0.01037616 | ||||
Multi Send | 21131188 | 14 hrs ago | IN | 0 ETH | 0.15727358 | ||||
Multi Send | 21131106 | 14 hrs ago | IN | 0 ETH | 0.0066923 | ||||
Multi Send | 21130590 | 16 hrs ago | IN | 0 ETH | 0.00195106 | ||||
Multi Send | 21130327 | 17 hrs ago | IN | 0 ETH | 0.00281374 | ||||
Multi Send | 21130274 | 17 hrs ago | IN | 0 ETH | 0.00180146 | ||||
Multi Send | 21130140 | 18 hrs ago | IN | 0 ETH | 0.00335968 | ||||
Multi Send | 21130134 | 18 hrs ago | IN | 0 ETH | 0.00414059 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20276856 | 119 days ago | 0.002 ETH | ||||
20276856 | 119 days ago | 0.002 ETH | ||||
20276856 | 119 days ago | 0.002 ETH | ||||
20276856 | 119 days ago | 0.002 ETH | ||||
20276856 | 119 days ago | 0.002 ETH | ||||
20276856 | 119 days ago | 0.002 ETH | ||||
20276856 | 119 days ago | 0.002 ETH | ||||
20276856 | 119 days ago | 0.002 ETH | ||||
20276856 | 119 days ago | 0.002 ETH | ||||
20276856 | 119 days ago | 0.002 ETH | ||||
17876708 | 456 days ago | 0.062 ETH | ||||
17876708 | 456 days ago | 0.062 ETH | ||||
17876708 | 456 days ago | 0.062 ETH | ||||
17876708 | 456 days ago | 0.062 ETH | ||||
17876708 | 456 days ago | 0.062 ETH | ||||
17876708 | 456 days ago | 0.062 ETH | ||||
17876708 | 456 days ago | 0.062 ETH | ||||
17876708 | 456 days ago | 0.062 ETH | ||||
15445029 | 799 days ago | 0.03 ETH | ||||
15438727 | 800 days ago | 0.045 ETH | ||||
15434862 | 800 days ago | 0.045 ETH | ||||
15408116 | 805 days ago | 0.05 ETH | ||||
15408103 | 805 days ago | 0.05 ETH | ||||
15408079 | 805 days ago | 0.05 ETH | ||||
12504266 | 1261 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
MultiSendCallOnly
Compiler Version
v0.7.6+commit.7338295f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion, GNU LGPLv3 license, Audited
Contract Source Code (Solidity Standard Json-Input format)Audit Report
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity >=0.7.0 <0.9.0; /// @title Multi Send Call Only - Allows to batch multiple transactions into one, but only calls /// @author Stefan George - <[email protected]> /// @author Richard Meissner - <[email protected]> /// @notice The guard logic is not required here as this contract doesn't support nested delegate calls contract MultiSendCallOnly { /// @dev Sends multiple transactions and reverts all if one fails. /// @param transactions Encoded transactions. Each transaction is encoded as a packed bytes of /// operation has to be uint8(0) in this version (=> 1 byte), /// to as a address (=> 20 bytes), /// value as a uint256 (=> 32 bytes), /// data length as a uint256 (=> 32 bytes), /// data as bytes. /// see abi.encodePacked for more information on packed encoding /// @notice The code is for most part the same as the normal MultiSend (to keep compatibility), /// but reverts if a transaction tries to use a delegatecall. /// @notice This method is payable as delegatecalls keep the msg.value from the previous call /// If the calling method (e.g. execTransaction) received ETH this would revert otherwise function multiSend(bytes memory transactions) public payable { // solhint-disable-next-line no-inline-assembly assembly { let length := mload(transactions) let i := 0x20 for { // Pre block is not used in "while mode" } lt(i, length) { // Post block is not used in "while mode" } { // First byte of the data is the operation. // We shift by 248 bits (256 - 8 [operation byte]) it right since mload will always load 32 bytes (a word). // This will also zero out unused data. let operation := shr(0xf8, mload(add(transactions, i))) // We offset the load address by 1 byte (operation byte) // We shift it right by 96 bits (256 - 160 [20 address bytes]) to right-align the data and zero out unused data. let to := shr(0x60, mload(add(transactions, add(i, 0x01)))) // We offset the load address by 21 byte (operation byte + 20 address bytes) let value := mload(add(transactions, add(i, 0x15))) // We offset the load address by 53 byte (operation byte + 20 address bytes + 32 value bytes) let dataLength := mload(add(transactions, add(i, 0x35))) // We offset the load address by 85 byte (operation byte + 20 address bytes + 32 value bytes + 32 data length bytes) let data := add(transactions, add(i, 0x55)) let success := 0 switch operation case 0 { success := call(gas(), to, value, data, dataLength, 0, 0) } // This version does not allow delegatecalls case 1 { revert(0, 0) } if eq(success, 0) { revert(0, 0) } // Next entry starts at 85 byte + data length i := add(i, add(0x55, dataLength)) } } } }
{ "evmVersion": "istanbul", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": false, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- G0 Group - May 1st, 2021 - Security Audit Report
[{"inputs":[{"internalType":"bytes","name":"transactions","type":"bytes"}],"name":"multiSend","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061019a806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100dc6004803603602081101561003957600080fd5b810190808035906020019064010000000081111561005657600080fd5b82018360208201111561006857600080fd5b8035906020019184600183028401116401000000008311171561008a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506100de565b005b805160205b8181101561015f578083015160f81c6001820184015160601c60158301850151603584018601516055850187016000856000811461012857600181146101385761013d565b6000808585888a5af1915061013d565b600080fd5b50600081141561014c57600080fd5b82605501870196505050505050506100e3565b50505056fea264697066735822122035246402746c96964495cae5b36461fd44dfb89f8e6cf6f6b8d60c0aa89f414864736f6c63430007060033
Deployed Bytecode
0x60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100dc6004803603602081101561003957600080fd5b810190808035906020019064010000000081111561005657600080fd5b82018360208201111561006857600080fd5b8035906020019184600183028401116401000000008311171561008a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506100de565b005b805160205b8181101561015f578083015160f81c6001820184015160601c60158301850151603584018601516055850187016000856000811461012857600181146101385761013d565b6000808585888a5af1915061013d565b600080fd5b50600081141561014c57600080fd5b82605501870196505050505050506100e3565b50505056fea264697066735822122035246402746c96964495cae5b36461fd44dfb89f8e6cf6f6b8d60c0aa89f414864736f6c63430007060033
Loading...
Loading
Loading...
Loading
OVERVIEW
Library for call-only transaction batching used in Gnosis SafeLoading...
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.