This nametag was submitted by Kleros Curate.
Latest 25 from a total of 8,435 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Multi Send | 137552730 | 5 hrs ago | IN | 0 ETH | 0.000002030422 | ||||
Multi Send | 137549138 | 7 hrs ago | IN | 0 ETH | 0.000002093756 | ||||
Multi Send | 137541551 | 11 hrs ago | IN | 0 ETH | 0.000000366703 | ||||
Multi Send | 137540075 | 12 hrs ago | IN | 0 ETH | 0.000001324785 | ||||
Multi Send | 137531124 | 17 hrs ago | IN | 0 ETH | 0.000001235797 | ||||
Multi Send | 137529738 | 18 hrs ago | IN | 0 ETH | 0.000000184928 | ||||
Multi Send | 137525836 | 20 hrs ago | IN | 0 ETH | 0.000000218957 | ||||
Multi Send | 137525445 | 20 hrs ago | IN | 0 ETH | 0.000000129149 | ||||
Multi Send | 137525407 | 20 hrs ago | IN | 0 ETH | 0.000000199095 | ||||
Multi Send | 137525359 | 20 hrs ago | IN | 0 ETH | 0.000000066788 | ||||
Multi Send | 137522549 | 22 hrs ago | IN | 0 ETH | 0.000000472011 | ||||
Multi Send | 137511182 | 28 hrs ago | IN | 0 ETH | 0.000001236868 | ||||
Multi Send | 137503267 | 33 hrs ago | IN | 0 ETH | 0.000000766333 | ||||
Multi Send | 137492109 | 39 hrs ago | IN | 0 ETH | 0.000000120692 | ||||
Multi Send | 137490728 | 40 hrs ago | IN | 0 ETH | 0.000000358809 | ||||
Multi Send | 137489782 | 40 hrs ago | IN | 0 ETH | 0.000000048232 | ||||
Multi Send | 137489775 | 40 hrs ago | IN | 0 ETH | 0.000000642184 | ||||
Multi Send | 137479666 | 46 hrs ago | IN | 0 ETH | 0.00000123833 | ||||
Multi Send | 137475121 | 2 days ago | IN | 0 ETH | 0.000001389068 | ||||
Multi Send | 137473661 | 2 days ago | IN | 0 ETH | 0.000000510198 | ||||
Multi Send | 137465781 | 2 days ago | IN | 0 ETH | 0.00000112242 | ||||
Multi Send | 137465229 | 2 days ago | IN | 0 ETH | 0.000000135402 | ||||
Multi Send | 137464430 | 2 days ago | IN | 0 ETH | 0.000000663658 | ||||
Multi Send | 137462619 | 2 days ago | IN | 0 ETH | 0.000000138823 | ||||
Multi Send | 137460168 | 2 days ago | IN | 0 ETH | 0.000001172969 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
112851721 | 572 days ago | 0.00069 ETH | ||||
112851692 | 572 days ago | 0.00069 ETH | ||||
112850039 | 572 days ago | 0.002 ETH | ||||
112844359 | 572 days ago | 0.0005 ETH | ||||
112840155 | 572 days ago | 0.0005 ETH | ||||
112839758 | 572 days ago | 0.0012 ETH | ||||
112839650 | 572 days ago | 0.0012 ETH | ||||
112839552 | 572 days ago | 0.0012 ETH | ||||
112838406 | 572 days ago | 0.0005 ETH | ||||
112838335 | 572 days ago | 0.0005 ETH | ||||
112838300 | 572 days ago | 0.0005 ETH | ||||
112836794 | 572 days ago | 0.0012 ETH | ||||
112828051 | 572 days ago | 0.0005 ETH | ||||
112828028 | 572 days ago | 0.0005 ETH | ||||
112827832 | 572 days ago | 0.001 ETH | ||||
112827691 | 572 days ago | 0.001 ETH | ||||
112827602 | 572 days ago | 0.0005 ETH | ||||
112827374 | 572 days ago | 0.0005 ETH | ||||
112827210 | 572 days ago | 0.0005 ETH | ||||
112827111 | 572 days ago | 0.0005 ETH | ||||
112827093 | 572 days ago | 0.0005 ETH | ||||
112827085 | 572 days ago | 0.0005 ETH | ||||
112826973 | 572 days ago | 0.0005 ETH | ||||
112826960 | 572 days ago | 0.0005 ETH | ||||
112826947 | 572 days ago | 0.0005 ETH |
Loading...
Loading
Contract Name:
MultiSendCallOnly
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity Standard Json-Input format)
// 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
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.