// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
/// @title HoodToken — fixed-supply ERC-20 for Hoodlab launches
/// @notice No owner, no mint, no tax, no pause. Full supply minted once to the launcher,
/// which locks it into a one-sided Uniswap v3 position.
contract HoodToken {
string public name;
string public symbol;
uint8 public constant decimals = 18;
uint256 public immutable totalSupply;
/// @notice On-chain marketing — readable on any explorer's "Read Contract" tab.
string public constant launchedOn = "Launched on hoodlab.fun";
string public constant website = "https://hoodlab.fun";
/// @notice Token socials as JSON: {"d":description,"x":..,"tg":..,"web":..}
string public socials;
mapping(address => uint256) public balanceOf;
mapping(address => mapping(address => uint256)) public allowance;
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
/// @notice Emitted at mint so the "launched on hoodlab.fun" message + socials
/// appear in the deployment transaction's logs on Blockscout.
event LaunchedOnHoodlab(string message, string website, string socials);
constructor(string memory _name, string memory _symbol, uint256 _supply, address _recipient, string memory _socials) {
name = _name;
symbol = _symbol;
totalSupply = _supply;
socials = _socials;
balanceOf[_recipient] = _supply;
emit Transfer(address(0), _recipient, _supply);
emit LaunchedOnHoodlab("Launched on hoodlab.fun", "https://hoodlab.fun", _socials);
}
function transfer(address to, uint256 amount) external returns (bool) {
return _transfer(msg.sender, to, amount);
}
function transferFrom(address from, address to, uint256 amount) external returns (bool) {
uint256 allowed = allowance[from][msg.sender];
if (allowed != type(uint256).max) {
require(allowed >= amount, "ERC20: insufficient allowance");
allowance[from][msg.sender] = allowed - amount;
}
return _transfer(from, to, amount);
}
function approve(address spender, uint256 amount) external returns (bool) {
allowance[msg.sender][spender] = amount;
emit Approval(msg.sender, spender, amount);
return true;
}
function _transfer(address from, address to, uint256 amount) internal returns (bool) {
require(to != address(0), "ERC20: transfer to zero");
uint256 fromBal = balanceOf[from];
require(fromBal >= amount, "ERC20: insufficient balance");
unchecked {
balanceOf[from] = fromBal - amount;
balanceOf[to] += amount;
}
emit Transfer(from, to, amount);
return true;
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "_name",
"type": "string",
"internalType": "string"
},
{
"name": "_symbol",
"type": "string",
"internalType": "string"
},
{
"name": "_supply",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "_recipient",
"type": "address",
"internalType": "address"
},
{
"name": "_socials",
"type": "string",
"internalType": "string"
}
],
"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": "LaunchedOnHoodlab",
"type": "event",
"inputs": [
{
"name": "message",
"type": "string",
"indexed": false,
"internalType": "string"
},
{
"name": "website",
"type": "string",
"indexed": false,
"internalType": "string"
},
{
"name": "socials",
"type": "string",
"indexed": false,
"internalType": "string"
}
],
"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": "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": "amount",
"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": "decimals",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint8",
"internalType": "uint8"
}
],
"stateMutability": "view"
},
{
"name": "launchedOn",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "name",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "socials",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"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": "amount",
"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": "amount",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "website",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
}
]0x608060408181526004918236101561001657600080fd5b600092833560e01c91826306fdde031461057457508163095ea7b31461050557816318160ddd146104ca57816323b872dd146103e3578163313ce567146103c757816353cd512a1461030657816370a08231146102ce57816395d89b41146101cf578163a9059cbb1461019c578163beb0a41614610151578163dd62ed3e14610104575063df05eef5146100a957600080fd5b3461010057816003193601126101005780516100fc916100c882610631565b601782527f4c61756e63686564206f6e20686f6f646c61622e66756e00000000000000000060208301525191829182610685565b0390f35b5080fd5b90503461014d578160031936011261014d5760209282916101236106ce565b61012b6106e9565b6001600160a01b03918216845291865283832091168252845220549051908152f35b8280fd5b50503461010057816003193601126101005780516100fc9161017282610631565b6013825272343a3a38399d1797b437b7b23630b117333ab760691b60208301525191829182610685565b5050346101005780600319360112610100576020906101c66101bc6106ce565b60243590336106ff565b90519015158152f35b9190503461014d578260031936011261014d578051918360018054918260011c926001811680156102c4575b60209586861082146102b1575084885290811561028f5750600114610236575b6100fc868661022c828b0383610663565b5191829182610685565b929550600183527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b82841061027c57505050826100fc9461022c92820101943861021b565b805486850188015292860192810161025f565b60ff191687860152505050151560051b830101925061022c826100fc3861021b565b634e487b7160e01b845260229052602483fd5b93607f16936101fb565b5050346101005760203660031901126101005760209181906001600160a01b036102f66106ce565b1681526003845220549051908152f35b9190503461014d578260031936011261014d5780519183600254906001908260011c926001811680156103bd575b60209586861082146102b1575084885290811561028f5750600114610364576100fc868661022c828b0383610663565b929550600283527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace5b8284106103aa57505050826100fc9461022c92820101943861021b565b805486850188015292860192810161038d565b93607f1693610334565b5050346101005781600319360112610100576020905160128152f35b838334610100576060366003190112610100576103fe6106ce565b6104066106e9565b6001600160a01b03821680855260208681528486203387528152848620549095604435949260018301610442575b505050906101c692916106ff565b8583106104875785830392831161047457908697986101c6979282528952818120338252895220558594938780610434565b634e487b7160e01b825260118952602482fd5b865162461bcd60e51b8152808a01899052601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606490fd5b505034610100578160031936011261010057602090517f0000000000000000000000000000000000000000033b2e3c9fd0803ce80000008152f35b90503461014d578160031936011261014d576020926105226106ce565b918360243592839233825287528181209460018060a01b0316948582528752205582519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925843392a35160018152f35b9291503461062d578360031936011261062d578354600181811c9186908281168015610623575b60209586861082146102b1575084885290811561028f57506001146105cb576100fc868661022c828b0383610663565b8080949750527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5635b82841061061057505050826100fc9461022c92820101943861021b565b80548685018801529286019281016105f3565b93607f169361059b565b8380fd5b6040810190811067ffffffffffffffff82111761064d57604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff82111761064d57604052565b6020808252825181830181905290939260005b8281106106ba57505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610698565b600435906001600160a01b03821682036106e457565b600080fd5b602435906001600160a01b03821682036106e457565b6001600160a01b0391821692919083156107bb5716906000828152600360205260408120549180831061077657604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef95876020965260038652038282205586815220818154019055604051908152a3600190565b60405162461bcd60e51b815260206004820152601b60248201527f45524332303a20696e73756666696369656e742062616c616e636500000000006044820152606490fd5b60405162461bcd60e51b815260206004820152601760248201527f45524332303a207472616e7366657220746f207a65726f0000000000000000006044820152606490fdfea2646970667358221220a47515dbae0d3932f4cf45bba4c589250f766ae159ef94b0aaeb53d3f5fedf7164736f6c63430008180033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| DIH | 1 | $0.0000102 | $0 | |
| THE JUGGERNAUT (JUGGERNAUT) | JUGGERNAUT | 15 | — | — |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x176c88…d56138 | Approve | 37,826,909 | 13 hrs agoSun, 16 Aug 2026 08:19:18 UTC | 0xedc6…e2e4 | IN | Elon Cat | $0.000 ETH | 0.00000109 | |
| 0x15f2df…70a0a6 | Approve | 30,654,136 | 8 days agoSat, 08 Aug 2026 00:47:57 UTC | 0x3c86…ab89 | IN | Elon Cat | $0.000 ETH | 0.00000146 | |
| 0x022ed5…af08d5 | Approve | 30,654,136 | 8 days agoSat, 08 Aug 2026 00:47:57 UTC | 0x5638…9192 | IN | Elon Cat | $0.000 ETH | 0.00000146 | |
| 0x7f2774…935930 | Approve | 30,654,134 | 8 days agoSat, 08 Aug 2026 00:47:56 UTC | 0x8004…ba9b | IN | Elon Cat | $0.000 ETH | 0.00000146 | |
| 0xb50edb…5041bf | Approve | 25,063,666 | 15 days agoSat, 01 Aug 2026 13:09:34 UTC | 0xefd3…df0f | IN | Elon Cat | $0.000 ETH | 0.00000092 | |
| 0xb6ca85…ce91b9 | Approve | 22,722,176 | 18 days agoWed, 29 Jul 2026 19:56:56 UTC | 0x6992…1257 | IN | Elon Cat | $0.000 ETH | 0.00000101 | |
| 0xa0cf4e…8f9f28 | Approve | 21,876,864 | 19 days agoTue, 28 Jul 2026 20:24:35 UTC | 0x5b81…0c08 | IN | Elon Cat | $0.000 ETH | 0.00000130 | |
| 0x671c99…b2ab8c | Approve | 21,665,716 | 19 days agoTue, 28 Jul 2026 14:31:41 UTC | 0x98cf…5b6f | IN | Elon Cat | $0.000 ETH | 0.00000132 | |
| 0xa40d7a…781e6e | Approve | 21,338,593 | 19 days agoTue, 28 Jul 2026 05:24:18 UTC | 0xc116…f3ce | IN | Elon Cat | $0.000 ETH | 0.00000154 | |
| 0x3aa45e…927673 | Approve | 21,027,856 | 20 days agoMon, 27 Jul 2026 20:44:44 UTC | 0x7a88…b98e | IN | Elon Cat | $0.000 ETH | 0.00000172 | |
| 0x72fbea…71f4d9 | Approve | 20,950,249 | 20 days agoMon, 27 Jul 2026 18:35:02 UTC | 0xd608…5c79 | IN | Elon Cat | $0.000 ETH | 0.00000172 | |
| 0xdb814f…3c0fed | Approve | 20,889,710 | 20 days agoMon, 27 Jul 2026 16:52:29 UTC | 0xbe2f…4a78 | IN | Elon Cat | $0.000 ETH | 0.00000169 | |
| 0xc8beca…d7c670 | Approve | 20,888,003 | 20 days agoMon, 27 Jul 2026 16:49:30 UTC | 0xb6d0…c0c2 | IN | Elon Cat | $0.000 ETH | 0.00000173 | |
| 0x9fce5c…ace298 | Approve | 20,863,021 | 20 days agoMon, 27 Jul 2026 16:07:04 UTC | 0x1b78…685b | IN | Elon Cat | $0.000 ETH | 0.00000169 | |
| 0xdca782…b49735 | Approve | 20,863,021 | 20 days agoMon, 27 Jul 2026 16:07:04 UTC | 0xe7e9…b628 | IN | Elon Cat | $0.000 ETH | 0.00000169 | |
| 0xe8ca02…c9c635 | Approve | 20,860,598 | 20 days agoMon, 27 Jul 2026 16:03:03 UTC | 0x77af…342d | IN | Elon Cat | $0.000 ETH | 0.00000166 | |
| 0x614965…87089a | Approve | 20,858,801 | 20 days agoMon, 27 Jul 2026 16:00:02 UTC | 0x4a36…9925 | IN | Elon Cat | $0.000 ETH | 0.00000167 | |
| 0xdf7faf…ff2f43 | Approve | 20,853,559 | 20 days agoMon, 27 Jul 2026 15:51:18 UTC | 0xfaa9…1c95 | IN | Elon Cat | $0.000 ETH | 0.00000165 | |
| 0x7a6d38…106dc8 | Approve | 20,853,559 | 20 days agoMon, 27 Jul 2026 15:51:18 UTC | 0xa65a…d188 | IN | Elon Cat | $0.000 ETH | 0.00000165 | |
| 0x50839a…82b6c6 | Approve | 20,610,954 | 20 days agoMon, 27 Jul 2026 09:05:48 UTC | 0x3e00…aa32 | IN | Elon Cat | $0.000 ETH | 0.00000178 | |
| 0x1b68a3…831ab9 | Approve | 20,610,949 | 20 days agoMon, 27 Jul 2026 09:05:47 UTC | 0xa5ea…5593 | IN | Elon Cat | $0.000 ETH | 0.00000179 | |
| 0xf9c465…8ae940 | Approve | 20,610,947 | 20 days agoMon, 27 Jul 2026 09:05:47 UTC | 0x82cc…214f | IN | Elon Cat | $0.000 ETH | 0.00000178 | |
| 0x5b7fcf…98c0fe | Approve | 20,610,947 | 20 days agoMon, 27 Jul 2026 09:05:47 UTC | 0x1067…91cb | IN | Elon Cat | $0.000 ETH | 0.00000178 | |
| 0xef6d42…4de976 | Approve | 20,599,260 | 20 days agoMon, 27 Jul 2026 08:46:12 UTC | 0xa598…a7e3 | IN | Elon Cat | $0.000 ETH | 0.00000181 | |
| 0x114494…3d7718 | Approve | 20,554,571 | 20 days agoMon, 27 Jul 2026 07:31:24 UTC | 0x6f83…2699 | IN | Elon Cat | $0.000 ETH | 0.00000185 |
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| no internal transactions found for this address yet (traced blocks + on-demand) | ||||||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x6fb3ce…c4702d | 13 hrs agoSun, 16 Aug 2026 09:11:51 UTC | Transfer | [0] 0x000000000000…03d3e2e4 [1] 0x000000000000…406c2fd2 data: 0x000000000000000000…0b9aa706 |
| 0x176c88…d56138 | 13 hrs agoSun, 16 Aug 2026 08:19:18 UTC | Approval | [0] 0x000000000000…03d3e2e4 [1] 0x000000000000…72c22734 data: 0xffffffffffffffffff…ffffffff |
| 0x01530f…db921c | 8 days agoSat, 08 Aug 2026 00:48:20 UTC | Transfer | [0] 0x000000000000…a9f8e4bf [1] 0x000000000000…406c2fd2 data: 0x000000000000000000…92c01d27 |
| 0x01530f…db921c | 8 days agoSat, 08 Aug 2026 00:48:20 UTC | Approval | [0] 0x000000000000…a9f8e4bf [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…92c01d27 |
| 0x01530f…db921c | 8 days agoSat, 08 Aug 2026 00:48:20 UTC | Transfer | [0] 0x000000000000…a9869192 [1] 0x000000000000…a9f8e4bf data: 0x000000000000000000…92c01d27 |
| 0x64440f…cb0a55 | 8 days agoSat, 08 Aug 2026 00:48:09 UTC | Transfer | [0] 0x000000000000…a9f8e4bf [1] 0x000000000000…406c2fd2 data: 0x000000000000000000…bdd454af |
| 0x64440f…cb0a55 | 8 days agoSat, 08 Aug 2026 00:48:09 UTC | Approval | [0] 0x000000000000…a9f8e4bf [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…bdd454af |
| 0x64440f…cb0a55 | 8 days agoSat, 08 Aug 2026 00:48:09 UTC | Transfer | [0] 0x000000000000…464bab89 [1] 0x000000000000…a9f8e4bf data: 0x000000000000000000…bdd454af |
| 0x1d0f02…4d7a9c | 8 days agoSat, 08 Aug 2026 00:48:03 UTC | Transfer | [0] 0x000000000000…a9f8e4bf [1] 0x000000000000…406c2fd2 data: 0x000000000000000000…5b4ed216 |
| 0x1d0f02…4d7a9c | 8 days agoSat, 08 Aug 2026 00:48:03 UTC | Approval | [0] 0x000000000000…a9f8e4bf [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…5b4ed216 |
| 0x1d0f02…4d7a9c | 8 days agoSat, 08 Aug 2026 00:48:03 UTC | Transfer | [0] 0x000000000000…44cdba9b [1] 0x000000000000…a9f8e4bf data: 0x000000000000000000…5b4ed216 |
| 0x022ed5…af08d5 | 8 days agoSat, 08 Aug 2026 00:47:57 UTC | Approval | [0] 0x000000000000…a9869192 [1] 0x000000000000…a9f8e4bf data: 0xffffffffffffffffff…ffffffff |
| 0x15f2df…70a0a6 | 8 days agoSat, 08 Aug 2026 00:47:57 UTC | Approval | [0] 0x000000000000…464bab89 [1] 0x000000000000…a9f8e4bf data: 0xffffffffffffffffff…ffffffff |
| 0x7f2774…935930 | 8 days agoSat, 08 Aug 2026 00:47:56 UTC | Approval | [0] 0x000000000000…44cdba9b [1] 0x000000000000…a9f8e4bf data: 0xffffffffffffffffff…ffffffff |
| 0x5dcc0a…3dde27 | 10 days agoThu, 06 Aug 2026 18:27:28 UTC | Transfer | [0] 0x000000000000…406c2fd2 [1] 0x000000000000…1d2954e2 data: 0x000000000000000000…89916307 |
| 0x77dc00…9cb288 | 10 days agoThu, 06 Aug 2026 18:23:21 UTC | Transfer | [0] 0x000000000000…406c2fd2 [1] 0x000000000000…40986128 data: 0x000000000000000000…31c8e79f |
| 0x5144bb…c6001b | 10 days agoThu, 06 Aug 2026 18:11:50 UTC | Transfer | [0] 0x000000000000…406c2fd2 [1] 0x000000000000…90534ea7 data: 0x000000000000000000…f0b67f88 |
| 0x370b14…52dd9b | 10 days agoThu, 06 Aug 2026 11:34:14 UTC | Transfer | [0] 0x000000000000…b12b28df [1] 0x000000000000…406c2fd2 data: 0x000000000000000000…651089e3 |
| 0xe0945b…5fd2f0 | 11 days agoWed, 05 Aug 2026 20:21:01 UTC | Transfer | [0] 0x000000000000…00565593 [1] 0x000000000000…406c2fd2 data: 0x000000000000000000…134dab3e |
| 0xb64120…c41ed0 | 11 days agoWed, 05 Aug 2026 20:21:00 UTC | Transfer | [0] 0x000000000000…174a91cb [1] 0x000000000000…406c2fd2 data: 0x000000000000000000…667886da |
| 0x6b7b9d…d25359 | 11 days agoWed, 05 Aug 2026 20:21:00 UTC | Transfer | [0] 0x000000000000…6fa0214f [1] 0x000000000000…406c2fd2 data: 0x000000000000000000…1aab1e27 |
| 0xe65228…a58d25 | 11 days agoWed, 05 Aug 2026 20:20:58 UTC | Transfer | [0] 0x000000000000…406c2fd2 [1] 0x000000000000…00565593 data: 0x000000000000000000…134dab3e |
| 0x19d27f…a0a20e | 11 days agoWed, 05 Aug 2026 20:20:57 UTC | Transfer | [0] 0x000000000000…406c2fd2 [1] 0x000000000000…6fa0214f data: 0x000000000000000000…1aab1e27 |
| 0xb8fb8f…e309e6 | 11 days agoWed, 05 Aug 2026 20:20:57 UTC | Transfer | [0] 0x000000000000…406c2fd2 [1] 0x000000000000…174a91cb data: 0x000000000000000000…667886da |
| 0x04526a…091779 | 15 days agoSat, 01 Aug 2026 13:09:39 UTC | Transfer | [0] 0x000000000000…db8c0904 [1] 0x000000000000…406c2fd2 data: 0x000000000000000000…5c741f96 |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xc7aeed37…403573 | Transfer | 18,563,616 | 22 days agoSat, 25 Jul 2026 00:01:13 UTC | 0xcaf7…5d11 | IN | 0x5387…35ce | $0.001 DIH | ||
| 0xf5edf0e3…53e7dd | Transfer | 6,797,049 | 36 days agoSat, 11 Jul 2026 08:25:06 UTC | 0x1673…13db | IN | 0x5387…35ce | 15 JUGGERNAUT | THE JUGGERNAUT (JUGGERNAUT) |