// SPDX-License-Identifier: GPL-3.0
pragma solidity =0.6.12;
import './AlleyERC20.sol';
import './libraries/Math.sol';
import './libraries/UQ112x112.sol';
import './interfaces/IERC20.sol';
import './interfaces/IAlleyFactory.sol';
import './interfaces/IAlleyCallee.sol';
contract AlleyPair is AlleyERC20 {
using SafeMathAlley for uint;
using UQ112x112 for uint224;
uint public constant MINIMUM_LIQUIDITY = 10**3;
bytes4 private constant SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)')));
address public factory;
address public token0;
address public token1;
uint112 private reserve0; // uses single storage slot, accessible via getReserves
uint112 private reserve1; // uses single storage slot, accessible via getReserves
uint32 private blockTimestampLast; // uses single storage slot, accessible via getReserves
uint public price0CumulativeLast;
uint public price1CumulativeLast;
uint public kLast; // reserve0 * reserve1, as of immediately after the most recent liquidity event
uint private unlocked = 1;
modifier lock() {
require(unlocked == 1, 'Alley: LOCKED');
unlocked = 0;
_;
unlocked = 1;
}
function getReserves() public view returns (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast) {
_reserve0 = reserve0;
_reserve1 = reserve1;
_blockTimestampLast = blockTimestampLast;
}
function _safeTransfer(address token, address to, uint value) private {
(bool success, bytes memory data) = token.call(abi.encodeWithSelector(SELECTOR, to, value));
require(success && (data.length == 0 || abi.decode(data, (bool))), 'Alley: TRANSFER_FAILED');
}
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
constructor() public {
factory = msg.sender;
}
// called once by the factory at time of deployment
function initialize(address _token0, address _token1) external {
require(msg.sender == factory, 'Alley: FORBIDDEN'); // sufficient check
token0 = _token0;
token1 = _token1;
}
// update reserves and, on the first call per block, price accumulators
function _update(uint balance0, uint balance1, uint112 _reserve0, uint112 _reserve1) private {
require(balance0 <= uint112(-1) && balance1 <= uint112(-1), 'Alley: OVERFLOW');
uint32 blockTimestamp = uint32(block.timestamp % 2**32);
uint32 timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired
if (timeElapsed > 0 && _reserve0 != 0 && _reserve1 != 0) {
// * never overflows, and + overflow is desired
price0CumulativeLast += uint(UQ112x112.encode(_reserve1).uqdiv(_reserve0)) * timeElapsed;
price1CumulativeLast += uint(UQ112x112.encode(_reserve0).uqdiv(_reserve1)) * timeElapsed;
}
reserve0 = uint112(balance0);
reserve1 = uint112(balance1);
blockTimestampLast = blockTimestamp;
emit Sync(reserve0, reserve1);
}
// if fee is on, mint liquidity equivalent to 1/6th of the growth in sqrt(k)
function _mintFee(uint112 _reserve0, uint112 _reserve1) private returns (bool feeOn) {
address feeTo = IAlleyFactory(factory).feeTo();
feeOn = feeTo != address(0);
uint _kLast = kLast; // gas savings
if (feeOn) {
if (_kLast != 0) {
uint rootK = Math.sqrt(uint(_reserve0).mul(_reserve1));
uint rootKLast = Math.sqrt(_kLast);
if (rootK > rootKLast) {
uint numerator = totalSupply.mul(rootK.sub(rootKLast));
uint denominator = rootK.mul(2).add(rootKLast);
uint liquidity = numerator / denominator;
if (liquidity > 0) _mint(feeTo, liquidity);
}
}
} else if (_kLast != 0) {
kLast = 0;
}
}
// this low-level function should be called from a contract which performs important safety checks
function mint(address to) external lock returns (uint liquidity) {
(uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
uint balance0 = IERC20Alley(token0).balanceOf(address(this));
uint balance1 = IERC20Alley(token1).balanceOf(address(this));
uint amount0 = balance0.sub(_reserve0);
uint amount1 = balance1.sub(_reserve1);
bool feeOn = _mintFee(_reserve0, _reserve1);
uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
if (_totalSupply == 0) {
liquidity = Math.sqrt(amount0.mul(amount1)).sub(MINIMUM_LIQUIDITY);
_mint(address(0), MINIMUM_LIQUIDITY); // permanently lock the first MINIMUM_LIQUIDITY tokens
} else {
liquidity = Math.min(amount0.mul(_totalSupply) / _reserve0, amount1.mul(_totalSupply) / _reserve1);
}
require(liquidity > 0, 'Alley: INSUFFICIENT_LIQUIDITY_MINTED');
_mint(to, liquidity);
_update(balance0, balance1, _reserve0, _reserve1);
if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
emit Mint(msg.sender, amount0, amount1);
}
// this low-level function should be called from a contract which performs important safety checks
function burn(address to) external lock returns (uint amount0, uint amount1) {
(uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
address _token0 = token0; // gas savings
address _token1 = token1; // gas savings
uint balance0 = IERC20Alley(_token0).balanceOf(address(this));
uint balance1 = IERC20Alley(_token1).balanceOf(address(this));
uint liquidity = balanceOf[address(this)];
bool feeOn = _mintFee(_reserve0, _reserve1);
uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
amount0 = liquidity.mul(balance0) / _totalSupply; // using balances ensures pro-rata distribution
amount1 = liquidity.mul(balance1) / _totalSupply; // using balances ensures pro-rata distribution
require(amount0 > 0 && amount1 > 0, 'Alley: INSUFFICIENT_LIQUIDITY_BURNED');
_burn(address(this), liquidity);
_safeTransfer(_token0, to, amount0);
_safeTransfer(_token1, to, amount1);
balance0 = IERC20Alley(_token0).balanceOf(address(this));
balance1 = IERC20Alley(_token1).balanceOf(address(this));
_update(balance0, balance1, _reserve0, _reserve1);
if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
emit Burn(msg.sender, amount0, amount1, to);
}
// this low-level function should be called from a contract which performs important safety checks
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external lock {
require(amount0Out > 0 || amount1Out > 0, 'Alley: INSUFFICIENT_OUTPUT_AMOUNT');
(uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
require(amount0Out < _reserve0 && amount1Out < _reserve1, 'Alley: INSUFFICIENT_LIQUIDITY');
uint balance0;
uint balance1;
{ // scope for _token{0,1}, avoids stack too deep errors
address _token0 = token0;
address _token1 = token1;
require(to != _token0 && to != _token1, 'Alley: INVALID_TO');
if (amount0Out > 0) _safeTransfer(_token0, to, amount0Out); // optimistically transfer tokens
if (amount1Out > 0) _safeTransfer(_token1, to, amount1Out); // optimistically transfer tokens
if (data.length > 0) IAlleyCallee(to).alleyCall(msg.sender, amount0Out, amount1Out, data);
balance0 = IERC20Alley(_token0).balanceOf(address(this));
balance1 = IERC20Alley(_token1).balanceOf(address(this));
}
uint amount0In = balance0 > _reserve0 - amount0Out ? balance0 - (_reserve0 - amount0Out) : 0;
uint amount1In = balance1 > _reserve1 - amount1Out ? balance1 - (_reserve1 - amount1Out) : 0;
require(amount0In > 0 || amount1In > 0, 'Alley: INSUFFICIENT_INPUT_AMOUNT');
{ // scope for reserve{0,1}Adjusted, avoids stack too deep errors
uint balance0Adjusted = balance0.mul(1000).sub(amount0In.mul(3));
uint balance1Adjusted = balance1.mul(1000).sub(amount1In.mul(3));
require(balance0Adjusted.mul(balance1Adjusted) >= uint(_reserve0).mul(_reserve1).mul(1000**2), 'Alley: K');
}
_update(balance0, balance1, _reserve0, _reserve1);
emit Swap(msg.sender, amount0In, amount1In, amount0Out, amount1Out, to);
}
// force balances to match reserves
function skim(address to) external lock {
address _token0 = token0; // gas savings
address _token1 = token1; // gas savings
_safeTransfer(_token0, to, IERC20Alley(_token0).balanceOf(address(this)).sub(reserve0));
_safeTransfer(_token1, to, IERC20Alley(_token1).balanceOf(address(this)).sub(reserve1));
}
// force reserves to match balances
function sync() external lock {
_update(IERC20Alley(token0).balanceOf(address(this)), IERC20Alley(token1).balanceOf(address(this)), reserve0, reserve1);
}
}[
{
"type": "constructor",
"inputs": [],
"stateMutability": "nonpayable"
},
{
"name": "Approval",
"type": "event",
"inputs": [
{
"name": "owner",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "spender",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "Burn",
"type": "event",
"inputs": [
{
"name": "sender",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount0",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "amount1",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "to",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "Mint",
"type": "event",
"inputs": [
{
"name": "sender",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount0",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "amount1",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "Swap",
"type": "event",
"inputs": [
{
"name": "sender",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount0In",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "amount1In",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "amount0Out",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "amount1Out",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "to",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "Sync",
"type": "event",
"inputs": [
{
"name": "reserve0",
"type": "uint112",
"indexed": false,
"internalType": "uint112"
},
{
"name": "reserve1",
"type": "uint112",
"indexed": false,
"internalType": "uint112"
}
],
"anonymous": false
},
{
"name": "Transfer",
"type": "event",
"inputs": [
{
"name": "from",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "to",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "DOMAIN_SEPARATOR",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bytes32",
"internalType": "bytes32"
}
],
"stateMutability": "view"
},
{
"name": "MINIMUM_LIQUIDITY",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "PERMIT_TYPEHASH",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bytes32",
"internalType": "bytes32"
}
],
"stateMutability": "view"
},
{
"name": "allowance",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "approve",
"type": "function",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "balanceOf",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "burn",
"type": "function",
"inputs": [
{
"name": "to",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "amount0",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "amount1",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "nonpayable"
},
{
"name": "decimals",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint8",
"internalType": "uint8"
}
],
"stateMutability": "view"
},
{
"name": "factory",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "getReserves",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "_reserve0",
"type": "uint112",
"internalType": "uint112"
},
{
"name": "_reserve1",
"type": "uint112",
"internalType": "uint112"
},
{
"name": "_blockTimestampLast",
"type": "uint32",
"internalType": "uint32"
}
],
"stateMutability": "view"
},
{
"name": "initialize",
"type": "function",
"inputs": [
{
"name": "_token0",
"type": "address",
"internalType": "address"
},
{
"name": "_token1",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "kLast",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "mint",
"type": "function",
"inputs": [
{
"name": "to",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "liquidity",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "nonpayable"
},
{
"name": "name",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "nonces",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "permit",
"type": "function",
"inputs": [
{
"name": "owner",
"type": "address",
"internalType": "address"
},
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "deadline",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "v",
"type": "uint8",
"internalType": "uint8"
},
{
"name": "r",
"type": "bytes32",
"internalType": "bytes32"
},
{
"name": "s",
"type": "bytes32",
"internalType": "bytes32"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "price0CumulativeLast",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "price1CumulativeLast",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "skim",
"type": "function",
"inputs": [
{
"name": "to",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "swap",
"type": "function",
"inputs": [
{
"name": "amount0Out",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "amount1Out",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "data",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "sync",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "token0",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "token1",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "totalSupply",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "transfer",
"type": "function",
"inputs": [
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "transferFrom",
"type": "function",
"inputs": [
{
"name": "from",
"type": "address",
"internalType": "address"
},
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
}
]0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80636a627842116100f9578063ba9a7a5611610097578063d21220a711610071578063d21220a714610534578063d505accf1461053c578063dd62ed3e1461058d578063fff6cae9146105bb576101a9565b8063ba9a7a56146104fe578063bc25cf7714610506578063c45a01551461052c576101a9565b80637ecebe00116100d35780637ecebe001461046557806389afcb441461048b57806395d89b41146104ca578063a9059cbb146104d2576101a9565b80636a6278421461041157806370a08231146104375780637464fc3d1461045d576101a9565b806323b872dd116101665780633644e515116101405780633644e515146103cb578063485cc955146103d35780635909c0d5146104015780635a3d549314610409576101a9565b806323b872dd1461036f57806330adf81f146103a5578063313ce567146103ad576101a9565b8063022c0d9f146101ae57806306fdde031461023c5780630902f1ac146102b9578063095ea7b3146102f15780630dfe16811461033157806318160ddd14610355575b600080fd5b61023a600480360360808110156101c457600080fd5b8135916020810135916001600160a01b0360408301351691908101906080810160608201356401000000008111156101fb57600080fd5b82018360208201111561020d57600080fd5b8035906020019184600183028401116401000000008311171561022f57600080fd5b5090925090506105c3565b005b610244610aeb565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027e578181015183820152602001610266565b50505050905090810190601f1680156102ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102c1610b16565b604080516001600160701b03948516815292909316602083015263ffffffff168183015290519081900360600190f35b61031d6004803603604081101561030757600080fd5b506001600160a01b038135169060200135610b40565b604080519115158252519081900360200190f35b610339610b57565b604080516001600160a01b039092168252519081900360200190f35b61035d610b66565b60408051918252519081900360200190f35b61031d6004803603606081101561038557600080fd5b506001600160a01b03813581169160208101359091169060400135610b6c565b61035d610c00565b6103b5610c24565b6040805160ff9092168252519081900360200190f35b61035d610c29565b61023a600480360360408110156103e957600080fd5b506001600160a01b0381358116916020013516610c2f565b61035d610caf565b61035d610cb5565b61035d6004803603602081101561042757600080fd5b50356001600160a01b0316610cbb565b61035d6004803603602081101561044d57600080fd5b50356001600160a01b0316610f93565b61035d610fa5565b61035d6004803603602081101561047b57600080fd5b50356001600160a01b0316610fab565b6104b1600480360360208110156104a157600080fd5b50356001600160a01b0316610fbd565b6040805192835260208301919091528051918290030190f35b61024461134d565b61031d600480360360408110156104e857600080fd5b506001600160a01b038135169060200135611372565b61035d61137f565b61023a6004803603602081101561051c57600080fd5b50356001600160a01b0316611385565b6103396114f3565b610339611502565b61023a600480360360e081101561055257600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611511565b61035d600480360360408110156105a357600080fd5b506001600160a01b038135811691602001351661170f565b61023a61172c565b600c5460011461060a576040805162461bcd60e51b815260206004820152600d60248201526c105b1b195e4e881313d0d2d151609a1b604482015290519081900360640190fd5b6000600c558415158061061d5750600084115b6106585760405162461bcd60e51b815260040180806020018281038252602181526020018061210c6021913960400191505060405180910390fd5b600080610663610b16565b5091509150816001600160701b0316871080156106885750806001600160701b031686105b6106d9576040805162461bcd60e51b815260206004820152601d60248201527f416c6c65793a20494e53554646494349454e545f4c4951554944495459000000604482015290519081900360640190fd5b60065460075460009182916001600160a01b039182169190811690891682148015906107175750806001600160a01b0316896001600160a01b031614155b61075c576040805162461bcd60e51b8152602060048201526011602482015270416c6c65793a20494e56414c49445f544f60781b604482015290519081900360640190fd5b8a1561076d5761076d828a8d61188a565b891561077e5761077e818a8c61188a565b861561083057886001600160a01b031663b590f076338d8d8c8c6040518663ffffffff1660e01b815260040180866001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b15801561081757600080fd5b505af115801561082b573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561087657600080fd5b505afa15801561088a573d6000803e3d6000fd5b505050506040513d60208110156108a057600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038316916370a0823191602480820192602092909190829003018186803b1580156108ec57600080fd5b505afa158015610900573d6000803e3d6000fd5b505050506040513d602081101561091657600080fd5b5051925060009150506001600160701b0385168a90038311610939576000610948565b89856001600160701b03160383035b9050600089856001600160701b0316038311610965576000610974565b89856001600160701b03160383035b905060008211806109855750600081115b6109d6576040805162461bcd60e51b815260206004820181905260248201527f416c6c65793a20494e53554646494349454e545f494e5055545f414d4f554e54604482015290519081900360640190fd5b60006109f86109e6846003611a1d565b6109f2876103e8611a1d565b90611a80565b90506000610a0a6109e6846003611a1d565b9050610a2f620f4240610a296001600160701b038b8116908b16611a1d565b90611a1d565b610a398383611a1d565b1015610a77576040805162461bcd60e51b8152602060048201526008602482015267416c6c65793a204b60c01b604482015290519081900360640190fd5b5050610a8584848888611ad0565b60408051838152602081018390528082018d9052606081018c905290516001600160a01b038b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600c55505050505050505050565b6040518060400160405280600f81526020016e04361746e697020416c6c6579204c5608c1b81525081565b6008546001600160701b0380821692600160701b830490911691600160e01b900463ffffffff1690565b6000610b4d338484611c8b565b5060015b92915050565b6006546001600160a01b031681565b60005481565b6001600160a01b038316600090815260026020908152604080832033845290915281205460001914610beb576001600160a01b0384166000908152600260209081526040808320338452909152902054610bc69083611a80565b6001600160a01b03851660009081526002602090815260408083203384529091529020555b610bf6848484611ced565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6005546001600160a01b03163314610c81576040805162461bcd60e51b815260206004820152601060248201526f20b63632bc9d102327a92124a22222a760811b604482015290519081900360640190fd5b600680546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b60095481565b600a5481565b6000600c54600114610d04576040805162461bcd60e51b815260206004820152600d60248201526c105b1b195e4e881313d0d2d151609a1b604482015290519081900360640190fd5b6000600c81905580610d14610b16565b50600654604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b158015610d6857600080fd5b505afa158015610d7c573d6000803e3d6000fd5b505050506040513d6020811015610d9257600080fd5b5051600754604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610de557600080fd5b505afa158015610df9573d6000803e3d6000fd5b505050506040513d6020811015610e0f57600080fd5b505190506000610e28836001600160701b038716611a80565b90506000610e3f836001600160701b038716611a80565b90506000610e4d8787611d9b565b60005490915080610e8457610e706103e86109f2610e6b8787611a1d565b611edb565b9850610e7f60006103e8611f2d565b610ec7565b610ec46001600160701b038916610e9b8684611a1d565b81610ea257fe5b046001600160701b038916610eb78685611a1d565b81610ebe57fe5b04611fb7565b98505b60008911610f065760405162461bcd60e51b81526004018080602001828103825260248152602001806120e86024913960400191505060405180910390fd5b610f108a8a611f2d565b610f1c86868a8a611ad0565b8115610f4657600854610f42906001600160701b0380821691600160701b900416611a1d565b600b555b6040805185815260208101859052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600c5550949695505050505050565b60016020526000908152604090205481565b600b5481565b60046020526000908152604090205481565b600080600c54600114611007576040805162461bcd60e51b815260206004820152600d60248201526c105b1b195e4e881313d0d2d151609a1b604482015290519081900360640190fd5b6000600c81905580611017610b16565b50600654600754604080516370a0823160e01b815230600482015290519496509294506001600160a01b039182169391169160009184916370a08231916024808301926020929190829003018186803b15801561107357600080fd5b505afa158015611087573d6000803e3d6000fd5b505050506040513d602081101561109d57600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b1580156110eb57600080fd5b505afa1580156110ff573d6000803e3d6000fd5b505050506040513d602081101561111557600080fd5b5051306000908152600160205260408120549192506111348888611d9b565b600054909150806111458487611a1d565b8161114c57fe5b049a508061115a8486611a1d565b8161116157fe5b04995060008b118015611174575060008a115b6111af5760405162461bcd60e51b815260040180806020018281038252602481526020018061212d6024913960400191505060405180910390fd5b6111b93084611fcf565b6111c4878d8d61188a565b6111cf868d8c61188a565b604080516370a0823160e01b815230600482015290516001600160a01b038916916370a08231916024808301926020929190829003018186803b15801561121557600080fd5b505afa158015611229573d6000803e3d6000fd5b505050506040513d602081101561123f57600080fd5b5051604080516370a0823160e01b815230600482015290519196506001600160a01b038816916370a0823191602480820192602092909190829003018186803b15801561128b57600080fd5b505afa15801561129f573d6000803e3d6000fd5b505050506040513d60208110156112b557600080fd5b505193506112c585858b8b611ad0565b81156112ef576008546112eb906001600160701b0380821691600160701b900416611a1d565b600b555b604080518c8152602081018c905281516001600160a01b038f169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a35050505050505050506001600c81905550915091565b604051806040016040528060098152602001681392540b541493d5d360ba1b81525081565b6000610b4d338484611ced565b6103e881565b600c546001146113cc576040805162461bcd60e51b815260206004820152600d60248201526c105b1b195e4e881313d0d2d151609a1b604482015290519081900360640190fd5b6000600c55600654600754600854604080516370a0823160e01b815230600482015290516001600160a01b0394851694909316926114759285928792611470926001600160701b03169185916370a0823191602480820192602092909190829003018186803b15801561143e57600080fd5b505afa158015611452573d6000803e3d6000fd5b505050506040513d602081101561146857600080fd5b505190611a80565b61188a565b6114e981846114706008600e9054906101000a90046001600160701b03166001600160701b0316856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561143e57600080fd5b50506001600c5550565b6005546001600160a01b031681565b6007546001600160a01b031681565b42841015611557576040805162461bcd60e51b815260206004820152600e60248201526d105b1b195e4e881156141254915160921b604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e08501825280519083012061190160f01b6101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa158015611672573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906116a85750886001600160a01b0316816001600160a01b0316145b6116f9576040805162461bcd60e51b815260206004820152601860248201527f416c6c65793a20494e56414c49445f5349474e41545552450000000000000000604482015290519081900360640190fd5b611704898989611c8b565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b600c54600114611773576040805162461bcd60e51b815260206004820152600d60248201526c105b1b195e4e881313d0d2d151609a1b604482015290519081900360640190fd5b6000600c55600654604080516370a0823160e01b81523060048201529051611883926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156117c457600080fd5b505afa1580156117d8573d6000803e3d6000fd5b505050506040513d60208110156117ee57600080fd5b5051600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561183b57600080fd5b505afa15801561184f573d6000803e3d6000fd5b505050506040513d602081101561186557600080fd5b50516008546001600160701b0380821691600160701b900416611ad0565b6001600c55565b604080518082018252601981527f7472616e7366657228616464726573732c75696e74323536290000000000000060209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180516001600160e01b031663a9059cbb60e01b1781529251815160009460609489169392918291908083835b602083106119375780518252601f199092019160209182019101611918565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611999576040519150601f19603f3d011682016040523d82523d6000602084013e61199e565b606091505b50915091508180156119cc5750805115806119cc57508080602001905160208110156119c957600080fd5b50515b611a16576040805162461bcd60e51b8152602060048201526016602482015275105b1b195e4e881514905394d1915497d1905253115160521b604482015290519081900360640190fd5b5050505050565b6000811580611a3857505080820282828281611a3557fe5b04145b610b51576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b604482015290519081900360640190fd5b80820382811115610b51576040805162461bcd60e51b815260206004820152601560248201527464732d6d6174682d7375622d756e646572666c6f7760581b604482015290519081900360640190fd5b6001600160701b038411801590611aee57506001600160701b038311155b611b31576040805162461bcd60e51b815260206004820152600f60248201526e416c6c65793a204f564552464c4f5760881b604482015290519081900360640190fd5b60085463ffffffff42811691600160e01b90048116820390811615801590611b6157506001600160701b03841615155b8015611b7557506001600160701b03831615155b15611be0578063ffffffff16611b9d85611b8e86612061565b6001600160e01b031690612073565b600980546001600160e01b03929092169290920201905563ffffffff8116611bc884611b8e87612061565b600a80546001600160e01b0392909216929092020190555b600880546dffffffffffffffffffffffffffff19166001600160701b03888116919091176dffffffffffffffffffffffffffff60701b1916600160701b8883168102919091176001600160e01b0316600160e01b63ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316600090815260016020526040902054611d109082611a80565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611d3f9082612098565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080600560009054906101000a90046001600160a01b03166001600160a01b031663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b158015611dec57600080fd5b505afa158015611e00573d6000803e3d6000fd5b505050506040513d6020811015611e1657600080fd5b5051600b546001600160a01b038216158015945091925090611ec7578015611ec2576000611e53610e6b6001600160701b03888116908816611a1d565b90506000611e6083611edb565b905080821115611ebf576000611e82611e798484611a80565b60005490611a1d565b90506000611e9b83611e95866002611a1d565b90612098565b90506000818381611ea857fe5b0490508015611ebb57611ebb8782611f2d565b5050505b50505b611ed3565b8015611ed3576000600b555b505092915050565b60006003821115611f1e575080600160028204015b81811015611f1857809150600281828581611f0757fe5b040181611f1057fe5b049050611ef0565b50611f28565b8115611f28575060015b919050565b600054611f3a9082612098565b60009081556001600160a01b038316815260016020526040902054611f5f9082612098565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000818310611fc65781611fc8565b825b9392505050565b6001600160a01b038216600090815260016020526040902054611ff29082611a80565b6001600160a01b038316600090815260016020526040812091909155546120199082611a80565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6001600160701b0316600160701b0290565b60006001600160701b0382166001600160e01b0384168161209057fe5b049392505050565b80820182811015610b51576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6164642d6f766572666c6f7760601b604482015290519081900360640190fdfe416c6c65793a20494e53554646494349454e545f4c49515549444954595f4d494e544544416c6c65793a20494e53554646494349454e545f4f55545055545f414d4f554e54416c6c65793a20494e53554646494349454e545f4c49515549444954595f4255524e4544a2646970667358221220b29a3ca6616892f7d64c6cec0352c64a21a4aa38a5a46a915efa21ce656ca02a64736f6c634300060c0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
WETH (WETH) | WETH | 24.196531 | $1,893.2 | $45,808.87 |
| Wrapped Small ETH (WETH) | WETH | 14 | $1,893.2 | $26,504.8 |
| Global Dollar (USDG) | USDG | 5 | $1 | $5 |
| Fake Wall Street (FWS) | FWS | 126,607,254.366151 | — | — |
| AIO Morpho (AIO) | AIO | 261.924945 | — | — |
| The Juggernauts (JUGGERNAUT) | JUGGERNAUT | 15 | — | — |
| Bycocket (BYCOCKET) | BYCOCKET | 14 | — | — |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xfad49c…34f48c | Transfer | 35,627,336 | 4 days agoThu, 13 Aug 2026 19:04:07 UTC | 0xa77c…7319 | IN | Catnip Alley LP | $0.000 ETH | 0.00000210 |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 35,484,170 | 4 days agoThu, 13 Aug 2026 15:05:03 UTC | 0xd2d93f…fa146f | CREATE2 | addLiquidityETH | 0x002e…fb49 | IN | 0x498d…a98a | 0 ETH |
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0xb01053…ddcc12 | 18 mins agoTue, 18 Aug 2026 04:14:32 UTC | Swap | [0] 0x000000000000…0e0559f5 [1] 0x000000000000…0e0559f5 data: 0x000000000000000000…00000000 |
| 0xb01053…ddcc12 | 18 mins agoTue, 18 Aug 2026 04:14:32 UTC | Sync | data: 0x000000000000000000…85fc80ab |
| 0xebc8a3…65bc3c | 18 mins agoTue, 18 Aug 2026 04:14:25 UTC | Swap | [0] 0x000000000000…0e0559f5 [1] 0x000000000000…0e0559f5 data: 0x000000000000000000…00000000 |
| 0xebc8a3…65bc3c | 18 mins agoTue, 18 Aug 2026 04:14:25 UTC | Sync | data: 0x000000000000000000…b71450c7 |
| 0xc6004e…bb865f | 19 mins agoTue, 18 Aug 2026 04:14:17 UTC | Swap | [0] 0x000000000000…0e0559f5 [1] 0x000000000000…0e0559f5 data: 0x000000000000000000…00000000 |
| 0xc6004e…bb865f | 19 mins agoTue, 18 Aug 2026 04:14:17 UTC | Sync | data: 0x000000000000000000…69d5846d |
| 0x92c907…7783a1 | 19 mins agoTue, 18 Aug 2026 04:14:11 UTC | Swap | [0] 0x000000000000…0e0559f5 [1] 0x000000000000…0e0559f5 data: 0x000000000000000000…00000000 |
| 0x92c907…7783a1 | 19 mins agoTue, 18 Aug 2026 04:14:11 UTC | Sync | data: 0x000000000000000000…536607f7 |
| 0x010428…77d16a | 19 mins agoTue, 18 Aug 2026 04:14:03 UTC | Swap | [0] 0x000000000000…0e0559f5 [1] 0x000000000000…0e0559f5 data: 0x000000000000000000…00000000 |
| 0x010428…77d16a | 19 mins agoTue, 18 Aug 2026 04:14:03 UTC | Sync | data: 0x000000000000000000…4c5e6061 |
| 0x7498a0…27cdeb | 19 mins agoTue, 18 Aug 2026 04:13:55 UTC | Swap | [0] 0x000000000000…0e0559f5 [1] 0x000000000000…0e0559f5 data: 0x000000000000000000…00000000 |
| 0x7498a0…27cdeb | 19 mins agoTue, 18 Aug 2026 04:13:55 UTC | Sync | data: 0x000000000000000000…7211a60c |
| 0xdc87d5…087a87 | 19 mins agoTue, 18 Aug 2026 04:13:47 UTC | Swap | [0] 0x000000000000…0e0559f5 [1] 0x000000000000…0e0559f5 data: 0x000000000000000000…00000000 |
| 0xdc87d5…087a87 | 19 mins agoTue, 18 Aug 2026 04:13:47 UTC | Sync | data: 0x000000000000000000…c83e64b3 |
| 0x42a6d0…d84981 | 19 mins agoTue, 18 Aug 2026 04:13:31 UTC | Swap | [0] 0x000000000000…0e0559f5 [1] 0x000000000000…0e0559f5 data: 0x000000000000000000…00000000 |
| 0x42a6d0…d84981 | 19 mins agoTue, 18 Aug 2026 04:13:31 UTC | Sync | data: 0x000000000000000000…de4d8266 |
| 0x3c76a1…c7d283 | 20 mins agoTue, 18 Aug 2026 04:13:08 UTC | Swap | [0] 0x000000000000…0e0559f5 [1] 0x000000000000…0e0559f5 data: 0x000000000000000000…00000000 |
| 0x3c76a1…c7d283 | 20 mins agoTue, 18 Aug 2026 04:13:08 UTC | Sync | data: 0x000000000000000000…24e36807 |
| 0x90dd66…5cd88e | 20 mins agoTue, 18 Aug 2026 04:13:00 UTC | Swap | [0] 0x000000000000…0e0559f5 [1] 0x000000000000…0e0559f5 data: 0x000000000000000000…00000000 |
| 0x90dd66…5cd88e | 20 mins agoTue, 18 Aug 2026 04:13:00 UTC | Sync | data: 0x000000000000000000…75509aad |
| 0x47ff32…13c14d | 25 mins agoTue, 18 Aug 2026 04:08:20 UTC | Swap | [0] 0x000000000000…0e0559f5 [1] 0x000000000000…0e0559f5 data: 0x000000000000000000…00000000 |
| 0x47ff32…13c14d | 25 mins agoTue, 18 Aug 2026 04:08:20 UTC | Sync | data: 0x000000000000000000…378e785b |
| 0x2deb19…35e8cd | 52 mins agoTue, 18 Aug 2026 03:40:24 UTC | Swap | [0] 0x000000000000…0e0559f5 [1] 0x000000000000…0e0559f5 data: 0x000000000000000000…00000000 |
| 0x2deb19…35e8cd | 52 mins agoTue, 18 Aug 2026 03:40:24 UTC | Sync | data: 0x000000000000000000…7d66e69a |
| 0x8feb35…c1d3d1 | 53 mins agoTue, 18 Aug 2026 03:39:53 UTC | Swap | [0] 0x000000000000…0e0559f5 [1] 0x000000000000…5eb19c85 data: 0x000000000000000000…b35e49a9 |
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xb0105325…ddcc12 | Transfer | 39,402,964 | 18 mins agoTue, 18 Aug 2026 04:14:32 UTC | 0x498d…a98a | OUT | 0x0bca…59f5 | 0.002417 WETH | WETH (WETH) | |
| 0xb0105325…ddcc12 | Transfer | 39,402,964 | 18 mins agoTue, 18 Aug 2026 04:14:32 UTC | 0xd890…bef1 | IN | 0x498d…a98a | 12,685.569792 FWS | Fake Wall Street (FWS) | |
| 0xebc8a33f…65bc3c | Transfer | 39,402,895 | 18 mins agoTue, 18 Aug 2026 04:14:25 UTC | 0x498d…a98a | OUT | 0x0bca…59f5 | 0.001843 WETH | WETH (WETH) | |
| 0xebc8a33f…65bc3c | Transfer | 39,402,895 | 18 mins agoTue, 18 Aug 2026 04:14:25 UTC | 0xc76f…291e | IN | 0x498d…a98a | 9,670.304492 FWS | Fake Wall Street (FWS) | |
| 0xc6004eff…bb865f | Transfer | 39,402,821 | 19 mins agoTue, 18 Aug 2026 04:14:17 UTC | 0x498d…a98a | OUT | 0x0bca…59f5 | 0.002516 WETH | WETH (WETH) | |
| 0xc6004eff…bb865f | Transfer | 39,402,821 | 19 mins agoTue, 18 Aug 2026 04:14:17 UTC | 0x094d…d571 | IN | 0x498d…a98a | 13,202.460726 FWS | Fake Wall Street (FWS) | |
| 0x92c90722…7783a1 | Transfer | 39,402,754 | 19 mins agoTue, 18 Aug 2026 04:14:11 UTC | 0x498d…a98a | OUT | 0x0bca…59f5 | 0.002184 WETH | WETH (WETH) | |
| 0x92c90722…7783a1 | Transfer | 39,402,754 | 19 mins agoTue, 18 Aug 2026 04:14:11 UTC | 0x905e…6f08 | IN | 0x498d…a98a | 11,458.908668 FWS | Fake Wall Street (FWS) | |
| 0x01042869…77d16a | Transfer | 39,402,682 | 19 mins agoTue, 18 Aug 2026 04:14:03 UTC | 0x498d…a98a | OUT | 0x0bca…59f5 | 0.001843 WETH | WETH (WETH) | |
| 0x01042869…77d16a | Transfer | 39,402,682 | 19 mins agoTue, 18 Aug 2026 04:14:03 UTC | 0xf8bc…2197 | IN | 0x498d…a98a | 9,667.401688 FWS | Fake Wall Street (FWS) | |
| 0x7498a071…27cdeb | Transfer | 39,402,596 | 19 mins agoTue, 18 Aug 2026 04:13:55 UTC | 0x498d…a98a | OUT | 0x0bca…59f5 | 0.001842 WETH | WETH (WETH) | |
| 0x7498a071…27cdeb | Transfer | 39,402,596 | 19 mins agoTue, 18 Aug 2026 04:13:55 UTC | 0x79a2…c68f | IN | 0x498d…a98a | 9,662.001629 FWS | Fake Wall Street (FWS) | |
| 0xdc87d571…087a87 | Transfer | 39,402,518 | 19 mins agoTue, 18 Aug 2026 04:13:47 UTC | 0x498d…a98a | OUT | 0x0bca…59f5 | 0.001985 WETH | WETH (WETH) | |
| 0xdc87d571…087a87 | Transfer | 39,402,518 | 19 mins agoTue, 18 Aug 2026 04:13:47 UTC | 0xdc0e…04ce | IN | 0x498d…a98a | 10,405.992119 FWS | Fake Wall Street (FWS) | |
| 0x42a6d0bd…d84981 | Transfer | 39,402,354 | 19 mins agoTue, 18 Aug 2026 04:13:31 UTC | 0x498d…a98a | OUT | 0x0bca…59f5 | 0.002146 WETH | WETH (WETH) | |
| 0x42a6d0bd…d84981 | Transfer | 39,402,354 | 19 mins agoTue, 18 Aug 2026 04:13:31 UTC | 0xed35…8dc0 | IN | 0x498d…a98a | 11,251.696333 FWS | Fake Wall Street (FWS) | |
| 0x3c76a15c…c7d283 | Transfer | 39,402,119 | 20 mins agoTue, 18 Aug 2026 04:13:08 UTC | 0x498d…a98a | OUT | 0x0bca…59f5 | 0.001150 WETH | WETH (WETH) | |
| 0x3c76a15c…c7d283 | Transfer | 39,402,119 | 20 mins agoTue, 18 Aug 2026 04:13:08 UTC | 0x4b55…2ead | IN | 0x498d…a98a | 6,027.961893 FWS | Fake Wall Street (FWS) | |
| 0x90dd66dd…5cd88e | Transfer | 39,402,047 | 20 mins agoTue, 18 Aug 2026 04:13:00 UTC | 0x498d…a98a | OUT | 0x0bca…59f5 | 0.001815 WETH | WETH (WETH) | |
| 0x90dd66dd…5cd88e | Transfer | 39,402,047 | 20 mins agoTue, 18 Aug 2026 04:13:00 UTC | 0x2b6a…d682 | IN | 0x498d…a98a | 9,513.607368 FWS | Fake Wall Street (FWS) | |
| 0x47ff3289…13c14d | Transfer | 39,399,262 | 25 mins agoTue, 18 Aug 2026 04:08:20 UTC | 0x498d…a98a | OUT | 0x0bca…59f5 | 0.003829 WETH | WETH (WETH) | |
| 0x47ff3289…13c14d | Transfer | 39,399,262 | 25 mins agoTue, 18 Aug 2026 04:08:20 UTC | 0x0122…5fe4 | IN | 0x498d…a98a | 20,061.429981 FWS | Fake Wall Street (FWS) | |
| 0x2deb194c…35e8cd | Transfer | 39,382,549 | 52 mins agoTue, 18 Aug 2026 03:40:24 UTC | 0x498d…a98a | OUT | 0x0bca…59f5 | 0.005511 WETH | WETH (WETH) | |
| 0x2deb194c…35e8cd | Transfer | 39,382,549 | 52 mins agoTue, 18 Aug 2026 03:40:24 UTC | 0x5fe7…9a87 | IN | 0x498d…a98a | 28,864.548158 FWS | Fake Wall Street (FWS) | |
| 0x8feb3549…c1d3d1 | Transfer | 39,382,242 | 53 mins agoTue, 18 Aug 2026 03:39:53 UTC | 0x498d…a98a | OUT | 0x3f91…9c85 | 291,561.092514 FWS | Fake Wall Street (FWS) |