Feature Tip: Add private address tag to any address under My Name Tag !
There are reports that this address was involved in Address Poisoning. Please exercise caution when interacting with it.
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 8,762 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Execute Batch | 24669382 | 3 hrs ago | IN | 0 ETH | 0.00135868 | ||||
| Execute Batch | 24669379 | 3 hrs ago | IN | 0 ETH | 0.00092736 | ||||
| Execute Batch | 24669377 | 3 hrs ago | IN | 0 ETH | 0.00085672 | ||||
| Execute Batch | 24669377 | 3 hrs ago | IN | 0 ETH | 0.00087953 | ||||
| Execute Batch | 24669375 | 3 hrs ago | IN | 0 ETH | 0.00088788 | ||||
| Execute Batch | 24669375 | 3 hrs ago | IN | 0 ETH | 0.00083982 | ||||
| Execute Batch | 24669372 | 3 hrs ago | IN | 0 ETH | 0.00081511 | ||||
| Execute Batch | 24669372 | 3 hrs ago | IN | 0 ETH | 0.00078918 | ||||
| Execute Batch | 24669372 | 3 hrs ago | IN | 0 ETH | 0.00078182 | ||||
| Execute Batch | 24669369 | 3 hrs ago | IN | 0 ETH | 0.00085795 | ||||
| Execute Batch | 24669369 | 3 hrs ago | IN | 0 ETH | 0.00085612 | ||||
| Execute Batch | 24669367 | 3 hrs ago | IN | 0 ETH | 0.00093733 | ||||
| Execute Batch | 24669366 | 3 hrs ago | IN | 0 ETH | 0.0009214 | ||||
| Execute Batch | 24669365 | 3 hrs ago | IN | 0 ETH | 0.0009004 | ||||
| Execute Batch | 24669365 | 3 hrs ago | IN | 0 ETH | 0.00090349 | ||||
| Execute Batch | 24669361 | 3 hrs ago | IN | 0 ETH | 0.0008183 | ||||
| Execute Batch | 24669361 | 3 hrs ago | IN | 0 ETH | 0.00081746 | ||||
| Execute Batch | 24669361 | 3 hrs ago | IN | 0 ETH | 0.00083461 | ||||
| Execute Batch | 24669357 | 3 hrs ago | IN | 0 ETH | 0.00085524 | ||||
| Execute Batch | 24669355 | 3 hrs ago | IN | 0 ETH | 0.00089903 | ||||
| Execute Batch | 24669354 | 3 hrs ago | IN | 0 ETH | 0.00091343 | ||||
| Execute Batch | 24669353 | 3 hrs ago | IN | 0 ETH | 0.00081233 | ||||
| Execute Batch | 24669351 | 3 hrs ago | IN | 0 ETH | 0.00077003 | ||||
| Execute Batch | 24669351 | 3 hrs ago | IN | 0 ETH | 0.00073931 | ||||
| Execute Batch | 24669351 | 3 hrs ago | IN | 0 ETH | 0.00070763 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Poisoner
Compiler Version
v0.8.34+commit.80d5c536
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity 0.8.34;
contract Poisoner {
/*
This contract is used by bad guys for the address poisoning scam to trick inattentive users into sending USDT/USDC to the wrong addresses
Recreated and exposed by Wintermute
DESCRIPTION OF HOW THIS SCAM WORKS:
https://www.blockaid.io/blog/a-deep-dive-into-address-poisoning
*/
address _executeBatch;
error WhoAreYou();
constructor() {
_executeBatch = msg.sender;
}
struct Call {
address target;
uint256 value;
bytes data;
}
function executeBatch(Call[] calldata calls) external payable {
require(msg.sender == _executeBatch, WhoAreYou());
for (uint256 i = 0; i < calls.length; i++) {
(bool success, ) = calls[i].target.call{value: calls[i].value}(calls[i].data);
require(success, "Delegated call failed");
}
}
}{
"metadata": {
"bytecodeHash": "none",
"appendCBOR": true
},
"optimizer": {
"enabled": true,
"runs": 750
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
},
"remappings": []
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"WhoAreYou","type":"error"},{"inputs":[{"components":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Poisoner.Call[]","name":"calls","type":"tuple[]"}],"name":"executeBatch","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
6080604052348015600e575f5ffd5b505f80546001600160a01b0319163317905561030d8061002d5f395ff3fe60806040526004361061001d575f3560e01c806334fcd5be14610021575b5f5ffd5b61003461002f3660046101ca565b610036565b005b5f5473ffffffffffffffffffffffffffffffffffffffff16331461006d57604051630bf9dbd160e01b815260040160405180910390fd5b5f5b818110156101c5575f83838381811061008a5761008a61023b565b905060200281019061009c919061024f565b6100aa90602081019061026d565b73ffffffffffffffffffffffffffffffffffffffff168484848181106100d2576100d261023b565b90506020028101906100e4919061024f565b602001358585858181106100fa576100fa61023b565b905060200281019061010c919061024f565b61011a9060408101906102a7565b6040516101289291906102f1565b5f6040518083038185875af1925050503d805f8114610162576040519150601f19603f3d011682016040523d82523d5f602084013e610167565b606091505b50509050806101bc5760405162461bcd60e51b815260206004820152601560248201527f44656c6567617465642063616c6c206661696c65640000000000000000000000604482015260640160405180910390fd5b5060010161006f565b505050565b5f5f602083850312156101db575f5ffd5b823567ffffffffffffffff8111156101f1575f5ffd5b8301601f81018513610201575f5ffd5b803567ffffffffffffffff811115610217575f5ffd5b8560208260051b840101111561022b575f5ffd5b6020919091019590945092505050565b634e487b7160e01b5f52603260045260245ffd5b5f8235605e19833603018112610263575f5ffd5b9190910192915050565b5f6020828403121561027d575f5ffd5b813573ffffffffffffffffffffffffffffffffffffffff811681146102a0575f5ffd5b9392505050565b5f5f8335601e198436030181126102bc575f5ffd5b83018035915067ffffffffffffffff8211156102d6575f5ffd5b6020019150368190038213156102ea575f5ffd5b9250929050565b818382375f910190815291905056fea164736f6c6343000822000a
Deployed Bytecode
0x60806040526004361061001d575f3560e01c806334fcd5be14610021575b5f5ffd5b61003461002f3660046101ca565b610036565b005b5f5473ffffffffffffffffffffffffffffffffffffffff16331461006d57604051630bf9dbd160e01b815260040160405180910390fd5b5f5b818110156101c5575f83838381811061008a5761008a61023b565b905060200281019061009c919061024f565b6100aa90602081019061026d565b73ffffffffffffffffffffffffffffffffffffffff168484848181106100d2576100d261023b565b90506020028101906100e4919061024f565b602001358585858181106100fa576100fa61023b565b905060200281019061010c919061024f565b61011a9060408101906102a7565b6040516101289291906102f1565b5f6040518083038185875af1925050503d805f8114610162576040519150601f19603f3d011682016040523d82523d5f602084013e610167565b606091505b50509050806101bc5760405162461bcd60e51b815260206004820152601560248201527f44656c6567617465642063616c6c206661696c65640000000000000000000000604482015260640160405180910390fd5b5060010161006f565b505050565b5f5f602083850312156101db575f5ffd5b823567ffffffffffffffff8111156101f1575f5ffd5b8301601f81018513610201575f5ffd5b803567ffffffffffffffff811115610217575f5ffd5b8560208260051b840101111561022b575f5ffd5b6020919091019590945092505050565b634e487b7160e01b5f52603260045260245ffd5b5f8235605e19833603018112610263575f5ffd5b9190910192915050565b5f6020828403121561027d575f5ffd5b813573ffffffffffffffffffffffffffffffffffffffff811681146102a0575f5ffd5b9392505050565b5f5f8335601e198436030181126102bc575f5ffd5b83018035915067ffffffffffffffff8211156102d6575f5ffd5b6020019150368190038213156102ea575f5ffd5b9250929050565b818382375f910190815291905056fea164736f6c6343000822000a
Deployed Bytecode Sourcemap
29:929:0:-:0;;;;;;;;;;;;;;;;;;;;;612:343;;;;;;:::i;:::-;;:::i;:::-;;;707:13;;;;693:10;:27;685:49;;;;-1:-1:-1;;;685:49:0;;;;;;;;;;;;750:9;745:203;765:16;;;745:203;;;804:12;822:5;;828:1;822:8;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:15;;;;;;;:::i;:::-;:20;;850:5;;856:1;850:8;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:14;;;866:5;;872:1;866:8;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:13;;;;;;;:::i;:::-;822:58;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;803:77;;;903:7;895:41;;;;-1:-1:-1;;;895:41:0;;2425:2:1;895:41:0;;;2407:21:1;2464:2;2444:18;;;2437:30;2503:23;2483:18;;;2476:51;2544:18;;895:41:0;;;;;;;;-1:-1:-1;783:3:0;;745:203;;;;612:343;;:::o;14:632:1:-;122:6;130;183:2;171:9;162:7;158:23;154:32;151:52;;;199:1;196;189:12;151:52;239:9;226:23;272:18;264:6;261:30;258:50;;;304:1;301;294:12;258:50;327:22;;380:4;372:13;;368:27;-1:-1:-1;358:55:1;;409:1;406;399:12;358:55;449:2;436:16;475:18;467:6;464:30;461:50;;;507:1;504;497:12;461:50;560:7;555:2;545:6;542:1;538:14;534:2;530:23;526:32;523:45;520:65;;;581:1;578;571:12;520:65;612:2;604:11;;;;;634:6;;-1:-1:-1;14:632:1;-1:-1:-1;;;14:632:1:o;651:127::-;712:10;707:3;703:20;700:1;693:31;743:4;740:1;733:15;767:4;764:1;757:15;783:319;871:4;929:11;916:25;1023:2;1019:7;1008:8;992:14;988:29;984:43;964:18;960:68;950:96;;1042:1;1039;1032:12;950:96;1063:33;;;;;783:319;-1:-1:-1;;783:319:1:o;1107:309::-;1166:6;1219:2;1207:9;1198:7;1194:23;1190:32;1187:52;;;1235:1;1232;1225:12;1187:52;1274:9;1261:23;1324:42;1317:5;1313:54;1306:5;1303:65;1293:93;;1382:1;1379;1372:12;1293:93;1405:5;1107:309;-1:-1:-1;;;1107:309:1:o;1421:521::-;1498:4;1504:6;1564:11;1551:25;1658:2;1654:7;1643:8;1627:14;1623:29;1619:43;1599:18;1595:68;1585:96;;1677:1;1674;1667:12;1585:96;1704:33;;1756:20;;;-1:-1:-1;1799:18:1;1788:30;;1785:50;;;1831:1;1828;1821:12;1785:50;1864:4;1852:17;;-1:-1:-1;1895:14:1;1891:27;;;1881:38;;1878:58;;;1932:1;1929;1922:12;1878:58;1421:521;;;;;:::o;1947:271::-;2130:6;2122;2117:3;2104:33;2086:3;2156:16;;2181:13;;;2156:16;1947:271;-1:-1:-1;1947:271:1:o
Swarm Source
none
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.