// SPDX-License-Identifier: MIT
pragma solidity 0.8.26;
import {IUniswapV3Pool, IUniswapV3SwapCallback, IWETH9} from "./interfaces/IUniswapV3.sol";
// ============================================================================
// LoxleyCloneLauncher — single-sided V3 launch with GRINDABLE VANITY + a
// pump.fun-style BURNED LP (majority burned for real, remainder fee-locked).
//
// Same block-zero-tradable single-sided pool as LoxleyPoolLauncher, but:
// 1. The coin is an EIP-1167 CLONE of a fixed OpenZeppelin implementation, so
// its CREATE2 address depends ONLY on the salt. A salt can be pre-ground
// off-thread so the address ends in "hood". Clones are cheap to mint and
// still OZ-clean (the impl is standard OZ ERC20).
// 2. The supply is minted into TWO positions over the same range:
// - burnBps (default 85%) → its position NFT is sent to 0xdEaD. That is
// a REAL burn, exactly what pump.fun does at migration — scanners
// (GMGN "Burnt/Locked LP") verify it on-chain with no whitelisting.
// - the remainder → locked in the LoxleyFeeLocker (no withdraw path),
// so its share of the 1% swap fees still streams to the creator and
// the protocol treasury.
// Both positions are unpullable; the difference is only who can collect
// each position's fees (nobody vs. locker).
// ============================================================================
interface INPM {
function createAndInitializePoolIfNecessary(address token0, address token1, uint24 fee, uint160 sqrtPriceX96)
external
payable
returns (address pool);
struct MintParams {
address token0;
address token1;
uint24 fee;
int24 tickLower;
int24 tickUpper;
uint256 amount0Desired;
uint256 amount1Desired;
uint256 amount0Min;
uint256 amount1Min;
address recipient;
uint256 deadline;
}
function mint(MintParams calldata params)
external
payable
returns (uint256 tokenId, uint128 liquidity, uint256 amount0, uint256 amount1);
function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}
interface ILoxleyCoin {
function initialize(string memory name, string memory symbol, uint256 supply, address curve) external;
function approve(address spender, uint256 value) external returns (bool);
}
contract LoxleyCloneLauncher is IUniswapV3SwapCallback {
uint256 public constant TOTAL_SUPPLY = 1_000_000_000e18;
uint256 public constant BPS = 10_000;
uint256 public constant MAX_LAUNCH_FEE_BPS = 500;
uint160 internal constant MIN_SQRT = 4295128740;
address public immutable WETH;
INPM public immutable npm;
/// @notice The OpenZeppelin clone-target implementation coins are cloned from.
address public immutable coinImpl;
/// @notice Where every launch's LP position is locked (fees still payable).
address public immutable feeLocker;
address private expectedPool;
address public owner;
address public treasury;
uint256 public launchFeeBps = 100; // fee on the creator's first buy (bps)
/// @notice Share of each launch's liquidity whose LP NFT is BURNED to 0xdEaD
/// (the rest is fee-locked). Floor 8000 so the on-chain burn always
/// satisfies the scanners' "Burnt/Locked LP >= 80%" bar.
uint256 public burnBps = 8500;
address public constant DEAD = 0x000000000000000000000000000000000000dEaD;
uint24 public launchFee = 10_000;
uint160 public launchSqrtPriceX96 = 1761773193750706363641693178420302;
int24 public launchTickLower = 154200;
int24 public launchTickUpper = 200200;
struct Launch {
address creator;
uint256 lpTokenId;
bool exists;
}
mapping(address => Launch) public launches;
address[] public allTokens;
event Launched(address indexed token, address indexed creator, address pool, uint256 lpTokenId, bytes32 salt);
event DevBought(address indexed token, address indexed creator, uint256 ethIn, uint256 launchFee);
/// @notice The burned share of the launch LP — NFT provably owned by 0xdEaD.
event LpBurned(address indexed token, uint256 burnTokenId, uint256 burnBps);
error NotOwner();
error TokenSortsAsToken0();
error CloneFailed();
error BadCallback();
error TransferFailed();
modifier onlyOwner() {
if (msg.sender != owner) revert NotOwner();
_;
}
constructor(address weth_, address npm_, address treasury_, address coinImpl_, address feeLocker_) {
owner = msg.sender;
treasury = treasury_;
WETH = weth_;
npm = INPM(npm_);
coinImpl = coinImpl_;
feeLocker = feeLocker_;
}
function setLaunchConfig(uint24 fee_, uint160 sqrtPriceX96_, int24 tickLower_, int24 tickUpper_) external onlyOwner {
launchFee = fee_;
launchSqrtPriceX96 = sqrtPriceX96_;
launchTickLower = tickLower_;
launchTickUpper = tickUpper_;
}
/// @notice Predict the address a salt will clone to. The frontend grinds a
/// salt whose result ends in "hood" and sorts above WETH.
function predict(bytes32 salt) public view returns (address) {
bytes32 h = keccak256(
abi.encodePacked(
bytes1(0xff),
address(this),
salt,
keccak256(_cloneCreationCode(coinImpl))
)
);
return address(uint160(uint256(h)));
}
/// @notice Launch a coin into a single-sided V3 pool at a vanity address,
/// and lock the LP in the fee-locker.
function launch(string calldata name, string calldata symbol, bytes32 salt)
external
payable
returns (address token, address pool)
{
token = _cloneDeterministic(coinImpl, salt);
// token1 = coin so ordering is always (WETH, coin).
if (token <= WETH) revert TokenSortsAsToken0();
ILoxleyCoin(token).initialize(name, symbol, TOTAL_SUPPLY, address(this));
uint24 fee = launchFee;
pool = npm.createAndInitializePoolIfNecessary(WETH, token, fee, launchSqrtPriceX96);
ILoxleyCoin(token).approve(address(npm), TOTAL_SUPPLY);
// Position 1 — the BURNED share (pump.fun model): minted over the same
// range, then its NFT goes to 0xdEaD. Nobody can ever pull it or even
// collect its fees; scanners verify the burn straight off ownerOf.
uint256 burnAmount = (TOTAL_SUPPLY * burnBps) / BPS;
(uint256 burnTokenId,,,) = npm.mint(
INPM.MintParams({
token0: WETH,
token1: token,
fee: fee,
tickLower: launchTickLower,
tickUpper: launchTickUpper,
amount0Desired: 0,
amount1Desired: burnAmount,
amount0Min: 0,
amount1Min: 0,
recipient: address(this),
deadline: block.timestamp
})
);
npm.safeTransferFrom(address(this), DEAD, burnTokenId, "");
emit LpBurned(token, burnTokenId, burnBps);
// Position 2 — the fee stream: the remainder, locked in the fee-locker
// (no withdraw path) so its share of swap fees pays creator + treasury.
(uint256 lpTokenId,,,) = npm.mint(
INPM.MintParams({
token0: WETH,
token1: token,
fee: fee,
tickLower: launchTickLower,
tickUpper: launchTickUpper,
amount0Desired: 0,
amount1Desired: TOTAL_SUPPLY - burnAmount,
amount0Min: 0,
amount1Min: 0,
recipient: address(this),
deadline: block.timestamp
})
);
launches[token] = Launch({creator: msg.sender, lpTokenId: lpTokenId, exists: true});
allTokens.push(token);
npm.safeTransferFrom(address(this), feeLocker, lpTokenId, abi.encode(token, msg.sender));
emit Launched(token, msg.sender, pool, lpTokenId, salt);
if (msg.value > 0) {
uint256 launchFeeWei = (msg.value * launchFeeBps) / BPS;
uint256 buyEth = msg.value - launchFeeWei;
if (launchFeeWei > 0) {
(bool okFee,) = treasury.call{value: launchFeeWei}("");
if (!okFee) revert TransferFailed();
}
if (buyEth > 0) {
IWETH9(WETH).deposit{value: buyEth}();
expectedPool = pool;
IUniswapV3Pool(pool).swap(msg.sender, true, int256(buyEth), MIN_SQRT, "");
expectedPool = address(0);
}
emit DevBought(token, msg.sender, buyEth, launchFeeWei);
}
}
/// @inheritdoc IUniswapV3SwapCallback
function uniswapV3SwapCallback(int256 amount0Delta, int256 amount1Delta, bytes calldata) external override {
if (msg.sender != expectedPool || expectedPool == address(0)) revert BadCallback();
uint256 owed = uint256(amount0Delta > 0 ? amount0Delta : amount1Delta);
if (!IWETH9(WETH).transfer(msg.sender, owed)) revert TransferFailed();
}
// ---- EIP-1167 minimal proxy (OZ Clones) ---------------------------------
function _cloneCreationCode(address impl) internal pure returns (bytes memory) {
return abi.encodePacked(
hex"3d602d80600a3d3981f3363d3d373d3d3d363d73",
impl,
hex"5af43d82803e903d91602b57fd5bf3"
);
}
function _cloneDeterministic(address impl, bytes32 salt) internal returns (address instance) {
bytes memory code = _cloneCreationCode(impl);
assembly {
instance := create2(0, add(code, 0x20), mload(code), salt)
}
if (instance == address(0)) revert CloneFailed();
}
function tokenCount() external view returns (uint256) {
return allTokens.length;
}
function setTreasury(address t) external onlyOwner {
treasury = t;
}
function setLaunchFeeBps(uint256 bps) external onlyOwner {
require(bps <= MAX_LAUNCH_FEE_BPS, "fee");
launchFeeBps = bps;
}
/// @notice Tune the burned share of launch LPs. Hard floor 80% so every
/// launch clears the scanners' burnt-LP bar; 100% = full pump-style
/// burn (no fee stream).
function setBurnBps(uint256 bps) external onlyOwner {
require(bps >= 8000 && bps <= BPS, "burn");
burnBps = bps;
}
function transferOwnership(address next) external onlyOwner {
owner = next;
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "weth_",
"type": "address",
"internalType": "address"
},
{
"name": "npm_",
"type": "address",
"internalType": "address"
},
{
"name": "treasury_",
"type": "address",
"internalType": "address"
},
{
"name": "coinImpl_",
"type": "address",
"internalType": "address"
},
{
"name": "feeLocker_",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "nonpayable"
},
{
"name": "BadCallback",
"type": "error",
"inputs": []
},
{
"name": "CloneFailed",
"type": "error",
"inputs": []
},
{
"name": "NotOwner",
"type": "error",
"inputs": []
},
{
"name": "TokenSortsAsToken0",
"type": "error",
"inputs": []
},
{
"name": "TransferFailed",
"type": "error",
"inputs": []
},
{
"name": "DevBought",
"type": "event",
"inputs": [
{
"name": "token",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "creator",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "ethIn",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "launchFee",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "Launched",
"type": "event",
"inputs": [
{
"name": "token",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "creator",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "pool",
"type": "address",
"indexed": false,
"internalType": "address"
},
{
"name": "lpTokenId",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "salt",
"type": "bytes32",
"indexed": false,
"internalType": "bytes32"
}
],
"anonymous": false
},
{
"name": "LpBurned",
"type": "event",
"inputs": [
{
"name": "token",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "burnTokenId",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "burnBps",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "BPS",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "DEAD",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "MAX_LAUNCH_FEE_BPS",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "TOTAL_SUPPLY",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "WETH",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "allTokens",
"type": "function",
"inputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "burnBps",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "coinImpl",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "feeLocker",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "launch",
"type": "function",
"inputs": [
{
"name": "name",
"type": "string",
"internalType": "string"
},
{
"name": "symbol",
"type": "string",
"internalType": "string"
},
{
"name": "salt",
"type": "bytes32",
"internalType": "bytes32"
}
],
"outputs": [
{
"name": "token",
"type": "address",
"internalType": "address"
},
{
"name": "pool",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "payable"
},
{
"name": "launchFee",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint24",
"internalType": "uint24"
}
],
"stateMutability": "view"
},
{
"name": "launchFeeBps",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "launchSqrtPriceX96",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint160",
"internalType": "uint160"
}
],
"stateMutability": "view"
},
{
"name": "launchTickLower",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "int24",
"internalType": "int24"
}
],
"stateMutability": "view"
},
{
"name": "launchTickUpper",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "int24",
"internalType": "int24"
}
],
"stateMutability": "view"
},
{
"name": "launches",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "creator",
"type": "address",
"internalType": "address"
},
{
"name": "lpTokenId",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "exists",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "npm",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "contract INPM"
}
],
"stateMutability": "view"
},
{
"name": "owner",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "predict",
"type": "function",
"inputs": [
{
"name": "salt",
"type": "bytes32",
"internalType": "bytes32"
}
],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "setBurnBps",
"type": "function",
"inputs": [
{
"name": "bps",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "setLaunchConfig",
"type": "function",
"inputs": [
{
"name": "fee_",
"type": "uint24",
"internalType": "uint24"
},
{
"name": "sqrtPriceX96_",
"type": "uint160",
"internalType": "uint160"
},
{
"name": "tickLower_",
"type": "int24",
"internalType": "int24"
},
{
"name": "tickUpper_",
"type": "int24",
"internalType": "int24"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "setLaunchFeeBps",
"type": "function",
"inputs": [
{
"name": "bps",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "setTreasury",
"type": "function",
"inputs": [
{
"name": "t",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "tokenCount",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "transferOwnership",
"type": "function",
"inputs": [
{
"name": "next",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "treasury",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "uniswapV3SwapCallback",
"type": "function",
"inputs": [
{
"name": "amount0Delta",
"type": "int256",
"internalType": "int256"
},
{
"name": "amount1Delta",
"type": "int256",
"internalType": "int256"
},
{
"name": "",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [],
"stateMutability": "nonpayable"
}
]0x6101006040526064600355612134600455600580546001600160e81b0319167c030e08025a5800000000000056dcb435961211732ec87ef3dc4e00271017905534801561004a575f80fd5b50604051611a62380380611a62833981016040819052610069916100c9565b60018054336001600160a01b031991821617909155600280549091166001600160a01b0394851617905593821660805291811660a05290811660c0521660e05261012a565b80516001600160a01b03811681146100c4575f80fd5b919050565b5f805f805f60a086880312156100dd575f80fd5b6100e6866100ae565b94506100f4602087016100ae565b9350610102604087016100ae565b9250610110606087016100ae565b915061011e608087016100ae565b90509295509295909350565b60805160a05160c05160e05161189c6101c65f395f818161036f0152610cf401525f818161021e015281816105bf015261065501525f81816103d5015281816107a4015281816108280152818161098501528181610a3101528181610b590152610cc601525f818161047b0152818161067e01528181610755015281816108ee01528181610af301528181610e9601526112b7015261189c5ff3fe608060405260043610610195575f3560e01c80637f1e9ef6116100e7578063bc412da811610087578063f0f4426011610062578063f0f4426014610531578063f2fde38b14610550578063f83159ac1461056f578063fa461e331461058e575f80fd5b8063bc412da8146104bc578063cf3cf573146104dc578063d64aae881461050b575f80fd5b80639f181b5e116100c25780639f181b5e14610435578063ac4e294514610449578063ad5c46481461046a578063addc831e1461049d575f80fd5b80637f1e9ef6146103c45780638da5cb5b146103f7578063902d55a514610416575f80fd5b806326bb5ad91161015257806361d027b31161012d57806361d027b314610320578063634282af1461033f57806370e9d2441461035e57806375a946c814610391575f80fd5b806326bb5ad9146102c35780632942aa3b146102d857806353deb3d61461030b575f80fd5b8063021a70591461019957806303fd2a45146101c15780630e787cce146101ee578063109cbac51461020d5780631f2d855014610240578063249d39e9146102ae575b5f80fd5b3480156101a4575f80fd5b506101ae60035481565b6040519081526020015b60405180910390f35b3480156101cc575f80fd5b506101d661dead81565b6040516001600160a01b0390911681526020016101b8565b3480156101f9575f80fd5b506101d66102083660046113fe565b6105ad565b348015610218575f80fd5b506101d67f000000000000000000000000000000000000000000000000000000000000000081565b34801561024b575f80fd5b5061028761025a36600461142c565b60066020525f90815260409020805460018201546002909201546001600160a01b03909116919060ff1683565b604080516001600160a01b03909416845260208401929092521515908201526060016101b8565b3480156102b9575f80fd5b506101ae61271081565b3480156102ce575f80fd5b506101ae6101f481565b6102eb6102e6366004611493565b61064e565b604080516001600160a01b039384168152929091166020830152016101b8565b348015610316575f80fd5b506101ae60045481565b34801561032b575f80fd5b506002546101d6906001600160a01b031681565b34801561034a575f80fd5b506101d66103593660046113fe565b61100e565b348015610369575f80fd5b506101d67f000000000000000000000000000000000000000000000000000000000000000081565b34801561039c575f80fd5b506005546103b190600160d01b900460020b81565b60405160029190910b81526020016101b8565b3480156103cf575f80fd5b506101d67f000000000000000000000000000000000000000000000000000000000000000081565b348015610402575f80fd5b506001546101d6906001600160a01b031681565b348015610421575f80fd5b506101ae6b033b2e3c9fd0803ce800000081565b348015610440575f80fd5b506007546101ae565b348015610454575f80fd5b506104686104633660046113fe565b611036565b005b348015610475575f80fd5b506101d67f000000000000000000000000000000000000000000000000000000000000000081565b3480156104a8575f80fd5b506104686104b73660046113fe565b6110a3565b3480156104c7575f80fd5b506005546103b190600160b81b900460020b81565b3480156104e7575f80fd5b506005546104f79062ffffff1681565b60405162ffffff90911681526020016101b8565b348015610516575f80fd5b506005546101d690630100000090046001600160a01b031681565b34801561053c575f80fd5b5061046861054b36600461142c565b61111c565b34801561055b575f80fd5b5061046861056a36600461142c565b611169565b34801561057a575f80fd5b5061046861058936600461151c565b6111b6565b348015610599575f80fd5b506104686105a8366004611578565b611249565b5f806001600160f81b031930846105e37f000000000000000000000000000000000000000000000000000000000000000061134d565b805160209182012060405161062f95949392016001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b5f8061067a7f0000000000000000000000000000000000000000000000000000000000000000846113b8565b91507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316116106ce57604051630109f1b760e41b815260040160405180910390fd5b604051635e9d09fb60e11b81526001600160a01b0383169063bd3a13f690610710908a908a908a908a906b033b2e3c9fd0803ce80000009030906004016115ef565b5f604051808303815f87803b158015610727575f80fd5b505af1158015610739573d5f803e3d5ffd5b50506005546040516309f56ab160e11b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152868116602483015262ffffff8316604483018190526301000000909304811660648301529193507f000000000000000000000000000000000000000000000000000000000000000090911691506313ead562906084016020604051808303815f875af11580156107ed573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108119190611639565b60405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526b033b2e3c9fd0803ce800000060248301529193509084169063095ea7b3906044016020604051808303815f875af115801561088c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108b09190611654565b505f6127106004546b033b2e3c9fd0803ce80000006108cf9190611687565b6108d991906116a4565b60408051610160810182526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081168252878116602083015262ffffff861682840152600554600160b81b8104600290810b6060850152600160d01b909104900b60808301525f60a0830181905260c0830185905260e08301819052610100830181905230610120840152426101408401529251634418b22b60e11b815293945091927f0000000000000000000000000000000000000000000000000000000000000000909216916388316456916109ba916004016116c3565b6080604051808303815f875af11580156109d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109fa9190611787565b5050604051635c46a7ef60e11b815230600482015261dead602482015260448101839052608060648201525f6084820152919250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063b88d4fde9060a4015f604051808303815f87803b158015610a7a575f80fd5b505af1158015610a8c573d5f803e3d5ffd5b50505050846001600160a01b03167f70868fc31c21c9ed1fbb6e22978876ec65f532b8cc54f57b3ec24129cde33f5c82600454604051610ad6929190918252602082015260400190565b60405180910390a260408051610160810182526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081168252878116602083015262ffffff861692820192909252600554600160b81b8104600290810b6060840152600160d01b909104900b60808201525f60a08201819052917f0000000000000000000000000000000000000000000000000000000000000000169063883164569060c08101610b9a876b033b2e3c9fd0803ce80000006117d7565b81526020015f81526020015f8152602001306001600160a01b03168152602001428152506040518263ffffffff1660e01b8152600401610bda91906116c3565b6080604051808303815f875af1158015610bf6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c1a9190611787565b50506040805160608101825233808252602080830186815260018486018181526001600160a01b038f81165f81815260068752898120985189549084166001600160a01b0319918216178a5595518986015592516002909801805498151560ff19909916989098179097556007805493840181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6889091018054909216909417905592519495507f00000000000000000000000000000000000000000000000000000000000000009091169363b88d4fde935030927f0000000000000000000000000000000000000000000000000000000000000000928792610d38928e9291016001600160a01b0392831681529116602082015260400190565b6040516020818303038152906040526040518563ffffffff1660e01b8152600401610d6694939291906117ea565b5f604051808303815f87803b158015610d7d575f80fd5b505af1158015610d8f573d5f803e3d5ffd5b5050604080516001600160a01b038981168252602082018690529181018b905233935090891691507fe97dbb1246407d6715b60232f495949c5dd7afb9e224040681a296e16e1526b29060600160405180910390a33415611000575f61271060035434610dfc9190611687565b610e0691906116a4565b90505f610e1382346117d7565b90508115610e8e576002546040515f916001600160a01b03169084908381818185875af1925050503d805f8114610e65576040519150601f19603f3d011682016040523d82523d5f602084013e610e6a565b606091505b5050905080610e8c576040516312171d8360e31b815260040160405180910390fd5b505b8015610fb7577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004015f604051808303818588803b158015610eed575f80fd5b505af1158015610eff573d5f803e3d5ffd5b50505f80546001600160a01b0319166001600160a01b038c169081178255604051630251596160e31b815233600482015260016024820152604481018790526401000276a4606482015260a0608482015260a4810192909252935063128acb08925060c401905060408051808303815f875af1158015610f81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fa59190611844565b50505f80546001600160a01b03191690555b604080518281526020810184905233916001600160a01b038b16917f08eef824a639810a10dded3f269c86e65f8d085fac126edc56d873507412456b910160405180910390a350505b505050509550959350505050565b6007818154811061101d575f80fd5b5f918252602090912001546001600160a01b0316905081565b6001546001600160a01b03163314611061576040516330cd747160e01b815260040160405180910390fd5b6101f481111561109e5760405162461bcd60e51b815260206004820152600360248201526266656560e81b60448201526064015b60405180910390fd5b600355565b6001546001600160a01b031633146110ce576040516330cd747160e01b815260040160405180910390fd5b611f4081101580156110e257506127108111155b6111175760405162461bcd60e51b815260040161109590602080825260049082015263313ab93760e11b604082015260600190565b600455565b6001546001600160a01b03163314611147576040516330cd747160e01b815260040160405180910390fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b03163314611194576040516330cd747160e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b031633146111e1576040516330cd747160e01b815260040160405180910390fd5b6005805462ffffff9586166001600160b81b03199091161763010000006001600160a01b0395909516949094029390931765ffffffffffff60b81b1916600160b81b9285169290920262ffffff60d01b191691909117600160d01b9190931602919091179055565b5f546001600160a01b03163314158061126a57505f546001600160a01b0316155b1561128857604051630d84beff60e31b815260040160405180910390fd5b5f8085136112965783611298565b845b60405163a9059cbb60e01b8152336004820152602481018290529091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb906044016020604051808303815f875af1158015611305573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113299190611654565b611346576040516312171d8360e31b815260040160405180910390fd5b5050505050565b604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b6020820152606082811b6bffffffffffffffffffffffff191660348301526e5af43d82803e903d91602b57fd5bf360881b6048830152906057016040516020818303038152906040529050919050565b5f806113c38461134d565b9050828151602083015ff591506001600160a01b0382166113f7576040516342bcb05b60e11b815260040160405180910390fd5b5092915050565b5f6020828403121561140e575f80fd5b5035919050565b6001600160a01b0381168114611429575f80fd5b50565b5f6020828403121561143c575f80fd5b813561144781611415565b9392505050565b5f8083601f84011261145e575f80fd5b50813567ffffffffffffffff811115611475575f80fd5b60208301915083602082850101111561148c575f80fd5b9250929050565b5f805f805f606086880312156114a7575f80fd5b853567ffffffffffffffff8111156114bd575f80fd5b6114c98882890161144e565b909650945050602086013567ffffffffffffffff8111156114e8575f80fd5b6114f48882890161144e565b96999598509660400135949350505050565b8035600281900b8114611517575f80fd5b919050565b5f805f806080858703121561152f575f80fd5b843562ffffff81168114611541575f80fd5b9350602085013561155181611415565b925061155f60408601611506565b915061156d60608601611506565b905092959194509250565b5f805f806060858703121561158b575f80fd5b8435935060208501359250604085013567ffffffffffffffff8111156115af575f80fd5b6115bb8782880161144e565b95989497509550505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b608081525f61160260808301888a6115c7565b82810360208401526116158187896115c7565b604084019590955250506001600160a01b0391909116606090910152949350505050565b5f60208284031215611649575f80fd5b815161144781611415565b5f60208284031215611664575f80fd5b81518015158114611447575f80fd5b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761169e5761169e611673565b92915050565b5f826116be57634e487b7160e01b5f52601260045260245ffd5b500490565b81516001600160a01b03168152610160810160208301516116ef60208401826001600160a01b03169052565b506040830151611706604084018262ffffff169052565b50606083015161171b606084018260020b9052565b506080830151611730608084018260020b9052565b5060a083015160a083015260c083015160c083015260e083015160e08301526101008301516101008301526101208301516117776101208401826001600160a01b03169052565b5061014092830151919092015290565b5f805f806080858703121561179a575f80fd5b845160208601519094506fffffffffffffffffffffffffffffffff811681146117c1575f80fd5b6040860151606090960151949790965092505050565b8181038181111561169e5761169e611673565b60018060a01b038516815260018060a01b0384166020820152826040820152608060608201525f8251806080840152806020850160a085015e5f60a0828501015260a0601f19601f83011684010191505095945050505050565b5f8060408385031215611855575f80fd5b50508051602090910151909290915056fea26469706673582212203cee9fa35234d971e42f1be1891abf00f89d557b19c7c1a6a74bb26d5dfffe0364736f6c634300081a00330000000000000000000000000bd7d308f8e1639fab988df18a8011f41eacad7300000000000000000000000073991a25c818bf1f1128deaab1492d45638de0d30000000000000000000000009768c2c880f7fd92f19020a9ab219390911aa323000000000000000000000000c1b5d42ca147e11ca826ba632e4e6916ec6833aa0000000000000000000000005bbb8801b280a3aac5dd3900ef1eb71fd5f206ae
0x608060405260043610610195575f3560e01c80637f1e9ef6116100e7578063bc412da811610087578063f0f4426011610062578063f0f4426014610531578063f2fde38b14610550578063f83159ac1461056f578063fa461e331461058e575f80fd5b8063bc412da8146104bc578063cf3cf573146104dc578063d64aae881461050b575f80fd5b80639f181b5e116100c25780639f181b5e14610435578063ac4e294514610449578063ad5c46481461046a578063addc831e1461049d575f80fd5b80637f1e9ef6146103c45780638da5cb5b146103f7578063902d55a514610416575f80fd5b806326bb5ad91161015257806361d027b31161012d57806361d027b314610320578063634282af1461033f57806370e9d2441461035e57806375a946c814610391575f80fd5b806326bb5ad9146102c35780632942aa3b146102d857806353deb3d61461030b575f80fd5b8063021a70591461019957806303fd2a45146101c15780630e787cce146101ee578063109cbac51461020d5780631f2d855014610240578063249d39e9146102ae575b5f80fd5b3480156101a4575f80fd5b506101ae60035481565b6040519081526020015b60405180910390f35b3480156101cc575f80fd5b506101d661dead81565b6040516001600160a01b0390911681526020016101b8565b3480156101f9575f80fd5b506101d66102083660046113fe565b6105ad565b348015610218575f80fd5b506101d67f000000000000000000000000c1b5d42ca147e11ca826ba632e4e6916ec6833aa81565b34801561024b575f80fd5b5061028761025a36600461142c565b60066020525f90815260409020805460018201546002909201546001600160a01b03909116919060ff1683565b604080516001600160a01b03909416845260208401929092521515908201526060016101b8565b3480156102b9575f80fd5b506101ae61271081565b3480156102ce575f80fd5b506101ae6101f481565b6102eb6102e6366004611493565b61064e565b604080516001600160a01b039384168152929091166020830152016101b8565b348015610316575f80fd5b506101ae60045481565b34801561032b575f80fd5b506002546101d6906001600160a01b031681565b34801561034a575f80fd5b506101d66103593660046113fe565b61100e565b348015610369575f80fd5b506101d67f0000000000000000000000005bbb8801b280a3aac5dd3900ef1eb71fd5f206ae81565b34801561039c575f80fd5b506005546103b190600160d01b900460020b81565b60405160029190910b81526020016101b8565b3480156103cf575f80fd5b506101d67f00000000000000000000000073991a25c818bf1f1128deaab1492d45638de0d381565b348015610402575f80fd5b506001546101d6906001600160a01b031681565b348015610421575f80fd5b506101ae6b033b2e3c9fd0803ce800000081565b348015610440575f80fd5b506007546101ae565b348015610454575f80fd5b506104686104633660046113fe565b611036565b005b348015610475575f80fd5b506101d67f0000000000000000000000000bd7d308f8e1639fab988df18a8011f41eacad7381565b3480156104a8575f80fd5b506104686104b73660046113fe565b6110a3565b3480156104c7575f80fd5b506005546103b190600160b81b900460020b81565b3480156104e7575f80fd5b506005546104f79062ffffff1681565b60405162ffffff90911681526020016101b8565b348015610516575f80fd5b506005546101d690630100000090046001600160a01b031681565b34801561053c575f80fd5b5061046861054b36600461142c565b61111c565b34801561055b575f80fd5b5061046861056a36600461142c565b611169565b34801561057a575f80fd5b5061046861058936600461151c565b6111b6565b348015610599575f80fd5b506104686105a8366004611578565b611249565b5f806001600160f81b031930846105e37f000000000000000000000000c1b5d42ca147e11ca826ba632e4e6916ec6833aa61134d565b805160209182012060405161062f95949392016001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b5f8061067a7f000000000000000000000000c1b5d42ca147e11ca826ba632e4e6916ec6833aa846113b8565b91507f0000000000000000000000000bd7d308f8e1639fab988df18a8011f41eacad736001600160a01b0316826001600160a01b0316116106ce57604051630109f1b760e41b815260040160405180910390fd5b604051635e9d09fb60e11b81526001600160a01b0383169063bd3a13f690610710908a908a908a908a906b033b2e3c9fd0803ce80000009030906004016115ef565b5f604051808303815f87803b158015610727575f80fd5b505af1158015610739573d5f803e3d5ffd5b50506005546040516309f56ab160e11b81526001600160a01b037f0000000000000000000000000bd7d308f8e1639fab988df18a8011f41eacad7381166004830152868116602483015262ffffff8316604483018190526301000000909304811660648301529193507f00000000000000000000000073991a25c818bf1f1128deaab1492d45638de0d390911691506313ead562906084016020604051808303815f875af11580156107ed573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108119190611639565b60405163095ea7b360e01b81526001600160a01b037f00000000000000000000000073991a25c818bf1f1128deaab1492d45638de0d3811660048301526b033b2e3c9fd0803ce800000060248301529193509084169063095ea7b3906044016020604051808303815f875af115801561088c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108b09190611654565b505f6127106004546b033b2e3c9fd0803ce80000006108cf9190611687565b6108d991906116a4565b60408051610160810182526001600160a01b037f0000000000000000000000000bd7d308f8e1639fab988df18a8011f41eacad7381168252878116602083015262ffffff861682840152600554600160b81b8104600290810b6060850152600160d01b909104900b60808301525f60a0830181905260c0830185905260e08301819052610100830181905230610120840152426101408401529251634418b22b60e11b815293945091927f00000000000000000000000073991a25c818bf1f1128deaab1492d45638de0d3909216916388316456916109ba916004016116c3565b6080604051808303815f875af11580156109d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109fa9190611787565b5050604051635c46a7ef60e11b815230600482015261dead602482015260448101839052608060648201525f6084820152919250507f00000000000000000000000073991a25c818bf1f1128deaab1492d45638de0d36001600160a01b03169063b88d4fde9060a4015f604051808303815f87803b158015610a7a575f80fd5b505af1158015610a8c573d5f803e3d5ffd5b50505050846001600160a01b03167f70868fc31c21c9ed1fbb6e22978876ec65f532b8cc54f57b3ec24129cde33f5c82600454604051610ad6929190918252602082015260400190565b60405180910390a260408051610160810182526001600160a01b037f0000000000000000000000000bd7d308f8e1639fab988df18a8011f41eacad7381168252878116602083015262ffffff861692820192909252600554600160b81b8104600290810b6060840152600160d01b909104900b60808201525f60a08201819052917f00000000000000000000000073991a25c818bf1f1128deaab1492d45638de0d3169063883164569060c08101610b9a876b033b2e3c9fd0803ce80000006117d7565b81526020015f81526020015f8152602001306001600160a01b03168152602001428152506040518263ffffffff1660e01b8152600401610bda91906116c3565b6080604051808303815f875af1158015610bf6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c1a9190611787565b50506040805160608101825233808252602080830186815260018486018181526001600160a01b038f81165f81815260068752898120985189549084166001600160a01b0319918216178a5595518986015592516002909801805498151560ff19909916989098179097556007805493840181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6889091018054909216909417905592519495507f00000000000000000000000073991a25c818bf1f1128deaab1492d45638de0d39091169363b88d4fde935030927f0000000000000000000000005bbb8801b280a3aac5dd3900ef1eb71fd5f206ae928792610d38928e9291016001600160a01b0392831681529116602082015260400190565b6040516020818303038152906040526040518563ffffffff1660e01b8152600401610d6694939291906117ea565b5f604051808303815f87803b158015610d7d575f80fd5b505af1158015610d8f573d5f803e3d5ffd5b5050604080516001600160a01b038981168252602082018690529181018b905233935090891691507fe97dbb1246407d6715b60232f495949c5dd7afb9e224040681a296e16e1526b29060600160405180910390a33415611000575f61271060035434610dfc9190611687565b610e0691906116a4565b90505f610e1382346117d7565b90508115610e8e576002546040515f916001600160a01b03169084908381818185875af1925050503d805f8114610e65576040519150601f19603f3d011682016040523d82523d5f602084013e610e6a565b606091505b5050905080610e8c576040516312171d8360e31b815260040160405180910390fd5b505b8015610fb7577f0000000000000000000000000bd7d308f8e1639fab988df18a8011f41eacad736001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004015f604051808303818588803b158015610eed575f80fd5b505af1158015610eff573d5f803e3d5ffd5b50505f80546001600160a01b0319166001600160a01b038c169081178255604051630251596160e31b815233600482015260016024820152604481018790526401000276a4606482015260a0608482015260a4810192909252935063128acb08925060c401905060408051808303815f875af1158015610f81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fa59190611844565b50505f80546001600160a01b03191690555b604080518281526020810184905233916001600160a01b038b16917f08eef824a639810a10dded3f269c86e65f8d085fac126edc56d873507412456b910160405180910390a350505b505050509550959350505050565b6007818154811061101d575f80fd5b5f918252602090912001546001600160a01b0316905081565b6001546001600160a01b03163314611061576040516330cd747160e01b815260040160405180910390fd5b6101f481111561109e5760405162461bcd60e51b815260206004820152600360248201526266656560e81b60448201526064015b60405180910390fd5b600355565b6001546001600160a01b031633146110ce576040516330cd747160e01b815260040160405180910390fd5b611f4081101580156110e257506127108111155b6111175760405162461bcd60e51b815260040161109590602080825260049082015263313ab93760e11b604082015260600190565b600455565b6001546001600160a01b03163314611147576040516330cd747160e01b815260040160405180910390fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b03163314611194576040516330cd747160e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b031633146111e1576040516330cd747160e01b815260040160405180910390fd5b6005805462ffffff9586166001600160b81b03199091161763010000006001600160a01b0395909516949094029390931765ffffffffffff60b81b1916600160b81b9285169290920262ffffff60d01b191691909117600160d01b9190931602919091179055565b5f546001600160a01b03163314158061126a57505f546001600160a01b0316155b1561128857604051630d84beff60e31b815260040160405180910390fd5b5f8085136112965783611298565b845b60405163a9059cbb60e01b8152336004820152602481018290529091507f0000000000000000000000000bd7d308f8e1639fab988df18a8011f41eacad736001600160a01b03169063a9059cbb906044016020604051808303815f875af1158015611305573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113299190611654565b611346576040516312171d8360e31b815260040160405180910390fd5b5050505050565b604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b6020820152606082811b6bffffffffffffffffffffffff191660348301526e5af43d82803e903d91602b57fd5bf360881b6048830152906057016040516020818303038152906040529050919050565b5f806113c38461134d565b9050828151602083015ff591506001600160a01b0382166113f7576040516342bcb05b60e11b815260040160405180910390fd5b5092915050565b5f6020828403121561140e575f80fd5b5035919050565b6001600160a01b0381168114611429575f80fd5b50565b5f6020828403121561143c575f80fd5b813561144781611415565b9392505050565b5f8083601f84011261145e575f80fd5b50813567ffffffffffffffff811115611475575f80fd5b60208301915083602082850101111561148c575f80fd5b9250929050565b5f805f805f606086880312156114a7575f80fd5b853567ffffffffffffffff8111156114bd575f80fd5b6114c98882890161144e565b909650945050602086013567ffffffffffffffff8111156114e8575f80fd5b6114f48882890161144e565b96999598509660400135949350505050565b8035600281900b8114611517575f80fd5b919050565b5f805f806080858703121561152f575f80fd5b843562ffffff81168114611541575f80fd5b9350602085013561155181611415565b925061155f60408601611506565b915061156d60608601611506565b905092959194509250565b5f805f806060858703121561158b575f80fd5b8435935060208501359250604085013567ffffffffffffffff8111156115af575f80fd5b6115bb8782880161144e565b95989497509550505050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b608081525f61160260808301888a6115c7565b82810360208401526116158187896115c7565b604084019590955250506001600160a01b0391909116606090910152949350505050565b5f60208284031215611649575f80fd5b815161144781611415565b5f60208284031215611664575f80fd5b81518015158114611447575f80fd5b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761169e5761169e611673565b92915050565b5f826116be57634e487b7160e01b5f52601260045260245ffd5b500490565b81516001600160a01b03168152610160810160208301516116ef60208401826001600160a01b03169052565b506040830151611706604084018262ffffff169052565b50606083015161171b606084018260020b9052565b506080830151611730608084018260020b9052565b5060a083015160a083015260c083015160c083015260e083015160e08301526101008301516101008301526101208301516117776101208401826001600160a01b03169052565b5061014092830151919092015290565b5f805f806080858703121561179a575f80fd5b845160208601519094506fffffffffffffffffffffffffffffffff811681146117c1575f80fd5b6040860151606090960151949790965092505050565b8181038181111561169e5761169e611673565b60018060a01b038516815260018060a01b0384166020820152826040820152608060608201525f8251806080840152806020850160a085015e5f60a0828501015260a0601f19601f83011684010191505095945050505050565b5f8060408385031215611855575f80fd5b50508051602090910151909290915056fea26469706673582212203cee9fa35234d971e42f1be1891abf00f89d557b19c7c1a6a74bb26d5dfffe0364736f6c634300081a0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| DIH | 1 | $0.0000102 | $0 | |
| Bycockets (BYCOCKET) | BYCOCKET | 21 | — | — |
| dd (DD) | DD | 0.000000 | — | — |
| TWEWU (TWEWU) | TWEWU | 0.000000 | — | — |
| Captain Tsubasa Lovers (TSUBASA) | TSUBASA | 0.000000 | — | — |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0xf134e9…5576e0 | 34 days agoTue, 14 Jul 2026 05:15:19 UTC | 0x08eef8…456b | [0] 0x000000000000…167ee810 [1] 0x000000000000…8c3b700b data: 0x000000000000000000…d4a51000 |
| 0xf134e9…5576e0 | 34 days agoTue, 14 Jul 2026 05:15:19 UTC | 0xe97dbb…26b2 | [0] 0x000000000000…167ee810 [1] 0x000000000000…8c3b700b data: 0x000000000000000000…1acc1022 |
| 0xf134e9…5576e0 | 34 days agoTue, 14 Jul 2026 05:15:19 UTC | 0x70868f…3f5c | [0] 0x000000000000…167ee810 data: 0x000000000000000000…00002134 |
| 0x65f591…6569ae | 35 days agoTue, 14 Jul 2026 04:08:42 UTC | 0xe97dbb…26b2 | [0] 0x000000000000…b4522455 [1] 0x000000000000…7314287b data: 0x000000000000000000…5ecff06a |
| 0x65f591…6569ae | 35 days agoTue, 14 Jul 2026 04:08:42 UTC | 0x70868f…3f5c | [0] 0x000000000000…b4522455 data: 0x000000000000000000…00002134 |
| 0xc13c94…194cc0 | 35 days agoMon, 13 Jul 2026 23:46:27 UTC | 0x08eef8…456b | [0] 0x000000000000…a81c4889 [1] 0x000000000000…911aa323 data: 0x000000000000000000…883d2000 |
| 0xc13c94…194cc0 | 35 days agoMon, 13 Jul 2026 23:46:27 UTC | 0xe97dbb…26b2 | [0] 0x000000000000…a81c4889 [1] 0x000000000000…911aa323 data: 0x000000000000000000…5ddff06f |
| 0xc13c94…194cc0 | 35 days agoMon, 13 Jul 2026 23:46:27 UTC | 0x70868f…3f5c | [0] 0x000000000000…a81c4889 data: 0x000000000000000000…00002134 |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xb0102f14…ebdbb7 | Transfer | 18,539,111 | 24 days agoFri, 24 Jul 2026 23:20:15 UTC | 0xcaf7…5d11 | IN | 0xdea1…2fb9 | $0.001 DIH | ||
| 0xbecf35cc…30e988 | Transfer | 9,992,363 | 34 days agoWed, 15 Jul 2026 01:20:56 UTC | 0xb545…cc2c | IN | 0xdea1…2fb9 | 21 BYCOCKET | Bycockets (BYCOCKET) | |
| 0xf134e9b0…5576e0 | Transfer | 9,269,994 | 34 days agoTue, 14 Jul 2026 05:15:19 UTC | 0xdea1…2fb9 | OUT | 0x6c47…4248 | 0.000099 WETH | WETH (WETH) | |
| 0xf134e9b0…5576e0 | Transfer | 9,269,994 | 34 days agoTue, 14 Jul 2026 05:15:19 UTC | 0x0000…0000 | IN | 0xdea1…2fb9 | 0.000099 WETH | WETH (WETH) | |
| 0xf134e9b0…5576e0 | Transfer | 9,269,994 | 34 days agoTue, 14 Jul 2026 05:15:19 UTC | 0xdea1…2fb9 | OUT | 0x6c47…4248 | 149,999,999.999999 TWEWU | TWEWU (TWEWU) | |
| 0xf134e9b0…5576e0 | Transfer | 9,269,994 | 34 days agoTue, 14 Jul 2026 05:15:19 UTC | 0xdea1…2fb9 | OUT | 0x6c47…4248 | 849,999,999.999999 TWEWU | TWEWU (TWEWU) | |
| 0xf134e9b0…5576e0 | Transfer | 9,269,994 | 34 days agoTue, 14 Jul 2026 05:15:19 UTC | 0x0000…0000 | IN | 0xdea1…2fb9 | 1,000,000,000.000000 TWEWU | TWEWU (TWEWU) | |
| 0x65f591bd…6569ae | Transfer | 9,230,191 | 35 days agoTue, 14 Jul 2026 04:08:42 UTC | 0xdea1…2fb9 | OUT | 0xebf4…f5d0 | 149,999,999.999999 TSUBASA | Captain Tsubasa Lovers (TSUBASA) | |
| 0x65f591bd…6569ae | Transfer | 9,230,191 | 35 days agoTue, 14 Jul 2026 04:08:42 UTC | 0xdea1…2fb9 | OUT | 0xebf4…f5d0 | 849,999,999.999999 TSUBASA | Captain Tsubasa Lovers (TSUBASA) | |
| 0x65f591bd…6569ae | Transfer | 9,230,191 | 35 days agoTue, 14 Jul 2026 04:08:42 UTC | 0x0000…0000 | IN | 0xdea1…2fb9 | 1,000,000,000.000000 TSUBASA | Captain Tsubasa Lovers (TSUBASA) | |
| 0xc13c9437…194cc0 | Transfer | 9,073,346 | 35 days agoMon, 13 Jul 2026 23:46:27 UTC | 0xdea1…2fb9 | OUT | 0xe8b7…fca7 | 0.00495 WETH | WETH (WETH) | |
| 0xc13c9437…194cc0 | Transfer | 9,073,346 | 35 days agoMon, 13 Jul 2026 23:46:27 UTC | 0x0000…0000 | IN | 0xdea1…2fb9 | 0.00495 WETH | WETH (WETH) | |
| 0xc13c9437…194cc0 | Transfer | 9,073,346 | 35 days agoMon, 13 Jul 2026 23:46:27 UTC | 0xdea1…2fb9 | OUT | 0xe8b7…fca7 | 149,999,999.999999 DD | dd (DD) | |
| 0xc13c9437…194cc0 | Transfer | 9,073,346 | 35 days agoMon, 13 Jul 2026 23:46:27 UTC | 0xdea1…2fb9 | OUT | 0xe8b7…fca7 | 849,999,999.999999 DD | dd (DD) | |
| 0xc13c9437…194cc0 | Transfer | 9,073,346 | 35 days agoMon, 13 Jul 2026 23:46:27 UTC | 0x0000…0000 | IN | 0xdea1…2fb9 | 1,000,000,000.000000 DD | dd (DD) |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 9,269,994 | 34 days agoTue, 14 Jul 2026 05:15:19 UTC | 0xf134e9…5576e0 | CALL | launch | 0xdea1…2fb9 | OUT | 0x0bd7…ad73 | 0.00009 ETH |
| 9,269,994 | 34 days agoTue, 14 Jul 2026 05:15:19 UTC | 0xf134e9…5576e0 | CALL | launch | 0xdea1…2fb9 | OUT | 0x9768…a323 | 0.00000 ETH |
| 9,269,994 | 34 days agoTue, 14 Jul 2026 05:15:19 UTC | 0xf134e9…5576e0 | CREATE2 | launch | 0xdea1…2fb9 | OUT | 0xf2b3…e810 | 0 ETH |
| 9,230,191 | 35 days agoTue, 14 Jul 2026 04:08:42 UTC | 0x65f591…6569ae | CREATE2 | launch | 0xdea1…2fb9 | OUT | 0x2a0a…2455 | 0 ETH |
| 9,073,346 | 35 days agoMon, 13 Jul 2026 23:46:27 UTC | 0xc13c94…194cc0 | CALL | launch | 0xdea1…2fb9 | OUT | 0x0bd7…ad73 | 0.00495 ETH |
| 9,073,346 | 35 days agoMon, 13 Jul 2026 23:46:27 UTC | 0xc13c94…194cc0 | CALL | launch | 0xdea1…2fb9 | OUT | 0x9768…a323 | 0.00005 ETH |
| 9,073,346 | 35 days agoMon, 13 Jul 2026 23:46:27 UTC | 0xc13c94…194cc0 | CREATE2 | launch | 0xdea1…2fb9 | OUT | 0x2e45…4889 | 0 ETH |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xf134e9…5576e0 | launch | 9,269,994 | 34 days agoTue, 14 Jul 2026 05:15:19 UTC | 0x59da…700b | IN | LoxleyCloneLauncher | $0.190.0001 ETH | 0.00027592 | |
| 0x65f591…6569ae | launch | 9,230,191 | 35 days agoTue, 14 Jul 2026 04:08:42 UTC | 0x52c6…287b | IN | LoxleyCloneLauncher | $0.000 ETH | 0.00027070 | |
| 0xc13c94…194cc0 | launch | 9,073,346 | 35 days agoMon, 13 Jul 2026 23:46:27 UTC | 0x9768…a323 | IN | LoxleyCloneLauncher | $9.460.005 ETH | 0.00029553 |
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xf134e9b0…5576e0 | Transfer | 9,269,994 | 34 days agoTue, 14 Jul 2026 05:15:19 UTC | 0xdea1…2fb9 | OUT | 0x5bbb…06ae | Transfer | Uniswap V3 Positions NFT-V1 (UNI-V3-POS) #112058 | |
| 0xf134e9b0…5576e0 | Transfer | 9,269,994 | 34 days agoTue, 14 Jul 2026 05:15:19 UTC | 0x0000…0000 | IN | 0xdea1…2fb9 | Mint | Uniswap V3 Positions NFT-V1 (UNI-V3-POS) #112058 | |
| 0xf134e9b0…5576e0 | Transfer | 9,269,994 | 34 days agoTue, 14 Jul 2026 05:15:19 UTC | 0xdea1…2fb9 | OUT | 0x0000…dead | Transfer | Uniswap V3 Positions NFT-V1 (UNI-V3-POS) #112057 | |
| 0xf134e9b0…5576e0 | Transfer | 9,269,994 | 34 days agoTue, 14 Jul 2026 05:15:19 UTC | 0x0000…0000 | IN | 0xdea1…2fb9 | Mint | Uniswap V3 Positions NFT-V1 (UNI-V3-POS) #112057 | |
| 0x65f591bd…6569ae | Transfer | 9,230,191 | 35 days agoTue, 14 Jul 2026 04:08:42 UTC | 0xdea1…2fb9 | OUT | 0x5bbb…06ae | Transfer | Uniswap V3 Positions NFT-V1 (UNI-V3-POS) #111789 | |
| 0x65f591bd…6569ae | Transfer | 9,230,191 | 35 days agoTue, 14 Jul 2026 04:08:42 UTC | 0x0000…0000 | IN | 0xdea1…2fb9 | Mint | Uniswap V3 Positions NFT-V1 (UNI-V3-POS) #111789 | |
| 0x65f591bd…6569ae | Transfer | 9,230,191 | 35 days agoTue, 14 Jul 2026 04:08:42 UTC | 0xdea1…2fb9 | OUT | 0x0000…dead | Transfer | Uniswap V3 Positions NFT-V1 (UNI-V3-POS) #111788 | |
| 0x65f591bd…6569ae | Transfer | 9,230,191 | 35 days agoTue, 14 Jul 2026 04:08:42 UTC | 0x0000…0000 | IN | 0xdea1…2fb9 | Mint | Uniswap V3 Positions NFT-V1 (UNI-V3-POS) #111788 | |
| 0xc13c9437…194cc0 | Transfer | 9,073,346 | 35 days agoMon, 13 Jul 2026 23:46:27 UTC | 0xdea1…2fb9 | OUT | 0x5bbb…06ae | Transfer | Uniswap V3 Positions NFT-V1 (UNI-V3-POS) #110477 | |
| 0xc13c9437…194cc0 | Transfer | 9,073,346 | 35 days agoMon, 13 Jul 2026 23:46:27 UTC | 0x0000…0000 | IN | 0xdea1…2fb9 | Mint | Uniswap V3 Positions NFT-V1 (UNI-V3-POS) #110477 | |
| 0xc13c9437…194cc0 | Transfer | 9,073,346 | 35 days agoMon, 13 Jul 2026 23:46:27 UTC | 0xdea1…2fb9 | OUT | 0x0000…dead | Transfer | Uniswap V3 Positions NFT-V1 (UNI-V3-POS) #110476 | |
| 0xc13c9437…194cc0 | Transfer | 9,073,346 | 35 days agoMon, 13 Jul 2026 23:46:27 UTC | 0x0000…0000 | IN | 0xdea1…2fb9 | Mint | Uniswap V3 Positions NFT-V1 (UNI-V3-POS) #110476 |