// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
/**
* @title SentryTokenStandard
* @dev Bare-bones ERC20 token deployed by the Sentry Launch Factory.
* 1 billion fixed supply, auto-renounced ownership.
*/
contract SentryTokenStandard {
string public name;
string public symbol;
uint8 public decimals;
uint256 public totalSupply;
address public owner;
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);
constructor(string memory _name, string memory _symbol, address _deployer) {
name = _name;
symbol = _symbol;
decimals = 18;
totalSupply = 1_000_000_000 * (10 ** uint256(decimals));
owner = address(0x000000000000000000000000000000000000dEaD);
balanceOf[_deployer] = totalSupply;
emit Transfer(address(0), _deployer, totalSupply);
}
function approve(address spender, uint256 amount) public returns (bool) {
allowance[msg.sender][spender] = amount;
emit Approval(msg.sender, spender, amount);
return true;
}
function transfer(address to, uint256 amount) public returns (bool) {
_transfer(msg.sender, to, amount);
return true;
}
function transferFrom(address from, address to, uint256 amount) public returns (bool) {
require(allowance[from][msg.sender] >= amount, "Insufficient allowance");
allowance[from][msg.sender] -= amount;
_transfer(from, to, amount);
return true;
}
function _transfer(address from, address to, uint256 amount) internal {
require(from != address(0), "Transfer from zero");
require(to != address(0), "Transfer to zero");
require(balanceOf[from] >= amount, "Insufficient balance");
balanceOf[from] -= amount;
balanceOf[to] += amount;
emit Transfer(from, to, amount);
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "_name",
"type": "string",
"internalType": "string"
},
{
"name": "_symbol",
"type": "string",
"internalType": "string"
},
{
"name": "_deployer",
"type": "address",
"internalType": "address"
}
],
"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": "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": "name",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "owner",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"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"
}
]0x608060405234801561001057600080fd5b506004361061009e5760003560e01c806370a082311161006657806370a082311461012d5780638da5cb5b1461014d57806395d89b4114610178578063a9059cbb14610180578063dd62ed3e1461019357600080fd5b806306fdde03146100a3578063095ea7b3146100c157806318160ddd146100e457806323b872dd146100fb578063313ce5671461010e575b600080fd5b6100ab6101be565b6040516100b8919061053c565b60405180910390f35b6100d46100cf3660046105a6565b61024c565b60405190151581526020016100b8565b6100ed60035481565b6040519081526020016100b8565b6100d46101093660046105d0565b6102b9565b60025461011b9060ff1681565b60405160ff90911681526020016100b8565b6100ed61013b36600461060c565b60056020526000908152604090205481565b600454610160906001600160a01b031681565b6040516001600160a01b0390911681526020016100b8565b6100ab610378565b6100d461018e3660046105a6565b610385565b6100ed6101a136600461062e565b600660209081526000928352604080842090915290825290205481565b600080546101cb90610661565b80601f01602080910402602001604051908101604052809291908181526020018280546101f790610661565b80156102445780601f1061021957610100808354040283529160200191610244565b820191906000526020600020905b81548152906001019060200180831161022757829003601f168201915b505050505081565b3360008181526006602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102a79086815260200190565b60405180910390a35060015b92915050565b6001600160a01b038316600090815260066020908152604080832033845290915281205482111561032a5760405162461bcd60e51b8152602060048201526016602482015275496e73756666696369656e7420616c6c6f77616e636560501b60448201526064015b60405180910390fd5b6001600160a01b03841660009081526006602090815260408083203384529091528120805484929061035d9084906106b1565b9091555061036e905084848461039b565b5060019392505050565b600180546101cb90610661565b600061039233848461039b565b50600192915050565b6001600160a01b0383166103e65760405162461bcd60e51b81526020600482015260126024820152715472616e736665722066726f6d207a65726f60701b6044820152606401610321565b6001600160a01b03821661042f5760405162461bcd60e51b815260206004820152601060248201526f5472616e7366657220746f207a65726f60801b6044820152606401610321565b6001600160a01b03831660009081526005602052604090205481111561048e5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b6044820152606401610321565b6001600160a01b038316600090815260056020526040812080548392906104b69084906106b1565b90915550506001600160a01b038216600090815260056020526040812080548392906104e39084906106c4565b92505081905550816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161052f91815260200190565b60405180910390a3505050565b600060208083528351808285015260005b818110156105695785810183015185820160400152820161054d565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146105a157600080fd5b919050565b600080604083850312156105b957600080fd5b6105c28361058a565b946020939093013593505050565b6000806000606084860312156105e557600080fd5b6105ee8461058a565b92506105fc6020850161058a565b9150604084013590509250925092565b60006020828403121561061e57600080fd5b6106278261058a565b9392505050565b6000806040838503121561064157600080fd5b61064a8361058a565b91506106586020840161058a565b90509250929050565b600181811c9082168061067557607f821691505b60208210810361069557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156102b3576102b361069b565b808201808211156102b3576102b361069b56fea264697066735822122033c0f07f9119a80a0559c8e757f7cb747a7bb7f76f39a6bdcff54d656122fdf364736f6c63430008140033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| DIH | 1 | $0.0000106 | $0 |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| 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 | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x255b6c29…163953 | Transfer | 18,443,849 | 22 days agoFri, 24 Jul 2026 20:41:06 UTC | 0xcaf7…5d11 | IN | 0x6c5e…a2fc | $0.001 DIH |
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0xb2a6a6…4d33b8 | 11 hrs agoSun, 16 Aug 2026 08:38:54 UTC | Transfer | [0] 0x000000000000…03d3e2e4 [1] 0x000000000000…c637d75d data: 0x000000000000000000…0db39c0a |
| 0x610820…6d0485 | 3 days agoWed, 12 Aug 2026 20:23:43 UTC | Transfer | [0] 0x000000000000…253f2df0 [1] 0x000000000000…bf008697 data: 0x000000000000000000…9d6e96e6 |
| 0x610820…6d0485 | 3 days agoWed, 12 Aug 2026 20:23:43 UTC | Transfer | [0] 0x000000000000…253f2df0 [1] 0x000000000000…c83345bb data: 0x000000000000000000…1a020ac1 |
| 0x610820…6d0485 | 3 days agoWed, 12 Aug 2026 20:23:43 UTC | Transfer | [0] 0x000000000000…c637d75d [1] 0x000000000000…253f2df0 data: 0x000000000000000000…b770a1a7 |
| 0xd42323…261c4e | 3 days agoWed, 12 Aug 2026 20:17:09 UTC | Approval | [0] 0x000000000000…03d3e2e4 [1] 0x000000000000…72c22734 data: 0xffffffffffffffffff…ffffffff |
| 0xcc09b1…c9978b | 5 days agoTue, 11 Aug 2026 14:39:16 UTC | Transfer | [0] 0x000000000000…40b4350a [1] 0x000000000000…c637d75d data: 0x000000000000000000…04461819 |
| 0x4e5732…b57447 | 6 days agoMon, 10 Aug 2026 00:08:48 UTC | Transfer | [0] 0x000000000000…c637d75d [1] 0x000000000000…40b4350a data: 0x000000000000000000…7860e869 |
| 0x4ddaef…a51500 | 11 days agoWed, 05 Aug 2026 11:39:22 UTC | Transfer | [0] 0x000000000000…e8bedb56 [1] 0x000000000000…c637d75d data: 0x000000000000000000…4ce21ce5 |
| 0x4ddaef…a51500 | 11 days agoWed, 05 Aug 2026 11:39:22 UTC | Approval | [0] 0x000000000000…e8bedb56 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…4ce21ce5 |
| 0x4ddaef…a51500 | 11 days agoWed, 05 Aug 2026 11:39:22 UTC | Transfer | [0] 0x000000000000…94429493 [1] 0x000000000000…e8bedb56 data: 0x000000000000000000…4ce21ce5 |
| 0x365eb1…d5b598 | 11 days agoWed, 05 Aug 2026 11:39:19 UTC | Approval | [0] 0x000000000000…94429493 [1] 0x000000000000…e8bedb56 data: 0xffffffffffffffffff…ffffffff |
| 0x34be9b…fbd14d | 12 days agoTue, 04 Aug 2026 14:48:19 UTC | Transfer | [0] 0x000000000000…c637d75d [1] 0x000000000000…40b4350a data: 0x000000000000000000…8be52fb0 |
| 0x0e9c47…ef8770 | 12 days agoTue, 04 Aug 2026 11:27:51 UTC | Transfer | [0] 0x000000000000…40b4350a [1] 0x000000000000…c637d75d data: 0x000000000000000000…c2c1dbfc |
| 0x0d46ba…94bf3b | 12 days agoTue, 04 Aug 2026 10:11:47 UTC | Transfer | [0] 0x000000000000…01b68226 [1] 0x000000000000…c637d75d data: 0x000000000000000000…4a000000 |
| 0x0bd4f9…80a2f3 | 13 days agoMon, 03 Aug 2026 18:38:15 UTC | Transfer | [0] 0x000000000000…80291a04 [1] 0x000000000000…c637d75d data: 0x000000000000000000…026ab8ef |
| 0x7fc637…ee736a | 14 days agoSun, 02 Aug 2026 01:16:11 UTC | Transfer | [0] 0x000000000000…2e5fb996 [1] 0x000000000000…c637d75d data: 0x000000000000000000…b7740be2 |
| 0x7fc637…ee736a | 14 days agoSun, 02 Aug 2026 01:16:11 UTC | Approval | [0] 0x000000000000…2e5fb996 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…b7740be2 |
| 0x7fc637…ee736a | 14 days agoSun, 02 Aug 2026 01:16:11 UTC | Transfer | [0] 0x000000000000…aeaba238 [1] 0x000000000000…2e5fb996 data: 0x000000000000000000…b7740be2 |
| 0x0e308e…376959 | 14 days agoSun, 02 Aug 2026 01:15:55 UTC | Approval | [0] 0x000000000000…aeaba238 [1] 0x000000000000…2e5fb996 data: 0xffffffffffffffffff…ffffffff |
| 0x613a17…56323f | 15 days agoSat, 01 Aug 2026 14:03:14 UTC | Approval | [0] 0x000000000000…40b4350a [1] 0x000000000000…211389c7 data: 0xffffffffffffffffff…ffffffff |
| 0x61d190…90014b | 15 days agoSat, 01 Aug 2026 14:01:38 UTC | Approval | [0] 0x000000000000…40b4350a [1] 0x000000000000…3ac78ba3 data: 0xffffffffffffffffff…ffffffff |
| 0xad686b…e19f50 | 15 days agoSat, 01 Aug 2026 14:01:15 UTC | Transfer | [0] 0x000000000000…c637d75d [1] 0x000000000000…40b4350a data: 0x000000000000000000…c2c1dbfc |
| 0x4138df…636e79 | 15 days agoSat, 01 Aug 2026 13:23:17 UTC | Transfer | [0] 0x000000000000…2e5fb996 [1] 0x000000000000…c637d75d data: 0x000000000000000000…b6a63aa3 |
| 0x4138df…636e79 | 15 days agoSat, 01 Aug 2026 13:23:17 UTC | Approval | [0] 0x000000000000…2e5fb996 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…b6a63aa3 |
| 0x4138df…636e79 | 15 days agoSat, 01 Aug 2026 13:23:17 UTC | Transfer | [0] 0x000000000000…24b8d816 [1] 0x000000000000…2e5fb996 data: 0x000000000000000000…b6a63aa3 |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 5,750,355 | 37 days agoFri, 10 Jul 2026 03:18:44 UTC | 0x5f7ba1…d328f5 | CREATE | launch | 0x9e8f…36cb | IN | 0x6c5e…a2fc | 0 ETH |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xd42323…261c4e | Approve | 34,809,337 | 3 days agoWed, 12 Aug 2026 20:17:09 UTC | 0xedc6…e2e4 | IN | Clarity Act | $0.000 ETH | 0.00000238 | |
| 0x365eb1…d5b598 | Approve | 28,456,346 | 11 days agoWed, 05 Aug 2026 11:39:19 UTC | 0x8dc8…9493 | IN | Clarity Act | $0.000 ETH | 0.00000093 | |
| 0x0e308e…376959 | Approve | 25,498,377 | 14 days agoSun, 02 Aug 2026 01:15:55 UTC | 0x6c79…a238 | IN | Clarity Act | $0.000 ETH | 0.00000093 | |
| 0x613a17…56323f | Approve | 25,095,753 | 15 days agoSat, 01 Aug 2026 14:03:14 UTC | 0x050a…350a | IN | Clarity Act | $0.000 ETH | 0.00000094 | |
| 0x61d190…90014b | Approve | 25,094,787 | 15 days agoSat, 01 Aug 2026 14:01:38 UTC | 0x050a…350a | IN | Clarity Act | $0.000 ETH | 0.00000093 | |
| 0x35aac8…6cc7c7 | Approve | 22,974,337 | 17 days agoThu, 30 Jul 2026 02:58:01 UTC | 0xb529…1758 | IN | Clarity Act | $0.000 ETH | 0.00000095 | |
| 0xdb5e7e…befb60 | Approve | 22,718,204 | 18 days agoWed, 29 Jul 2026 19:50:17 UTC | 0xddf3…4c16 | IN | Clarity Act | $0.000 ETH | 0.00000101 | |
| 0x307837…b361f0 | Approve | 22,070,525 | 18 days agoWed, 29 Jul 2026 01:47:35 UTC | 0xa5ea…5593 | IN | Clarity Act | $0.000 ETH | 0.00000084 | |
| 0xfc7489…374885 | Approve | 22,070,523 | 18 days agoWed, 29 Jul 2026 01:47:35 UTC | 0x1067…91cb | IN | Clarity Act | $0.000 ETH | 0.00000083 | |
| 0x4d57b9…e9ab80 | Approve | 22,070,523 | 18 days agoWed, 29 Jul 2026 01:47:35 UTC | 0x82cc…214f | IN | Clarity Act | $0.000 ETH | 0.00000083 | |
| 0x0a12a8…4d91f3 | Approve | 21,927,780 | 18 days agoTue, 28 Jul 2026 21:49:37 UTC | 0xaf85…fdce | IN | Clarity Act | $0.000 ETH | 0.00000129 | |
| 0xc40219…3a7650 | Approve | 21,840,148 | 19 days agoTue, 28 Jul 2026 19:23:10 UTC | 0xad01…fce5 | IN | Clarity Act | $0.000 ETH | 0.00000131 | |
| 0x313df3…a758d2 | Transfer | 21,798,802 | 19 days agoTue, 28 Jul 2026 18:14:02 UTC | 0x688a…c44a | IN | Clarity Act | $0.000 ETH | 0.00000149 | |
| 0xa7a1ca…665dd4 | Approve | 21,779,213 | 19 days agoTue, 28 Jul 2026 17:41:18 UTC | 0xdb35…1a04 | IN | Clarity Act | $0.000 ETH | 0.00000083 | |
| 0x94fe87…4c8e1a | Approve | 21,727,614 | 19 days agoTue, 28 Jul 2026 16:15:06 UTC | 0xb7e5…d816 | IN | Clarity Act | $0.000 ETH | 0.00000134 | |
| 0x202f93…7842e9 | Approve | 21,727,156 | 19 days agoTue, 28 Jul 2026 16:14:19 UTC | 0x8dc8…9493 | IN | Clarity Act | $0.000 ETH | 0.00000134 | |
| 0xd65f6a…07fe67 | Approve | 21,345,442 | 19 days agoTue, 28 Jul 2026 05:35:48 UTC | 0x850a…9665 | IN | Clarity Act | $0.000 ETH | 0.00000155 | |
| 0xf97a02…c14081 | Approve | 21,080,801 | 19 days agoMon, 27 Jul 2026 22:13:11 UTC | 0x7b3d…e489 | IN | Clarity Act | $0.000 ETH | 0.00000172 | |
| 0x321d6e…58ae7e | Approve | 21,064,946 | 19 days agoMon, 27 Jul 2026 21:46:37 UTC | 0x2d90…45bb | IN | Clarity Act | $0.000 ETH | 0.00000172 | |
| 0xf4b8eb…d40a9d | Approve | 21,056,880 | 19 days agoMon, 27 Jul 2026 21:33:08 UTC | 0xd465…f93d | IN | Clarity Act | $0.000 ETH | 0.00000173 | |
| 0x35a218…d7ef18 | Transfer | 21,033,204 | 19 days agoMon, 27 Jul 2026 20:53:39 UTC | 0xdf00…7583 | IN | Clarity Act | $0.000 ETH | 0.00000176 | |
| 0xd7951d…241076 | Approve | 21,031,496 | 19 days agoMon, 27 Jul 2026 20:50:49 UTC | 0xca28…9824 | IN | Clarity Act | $0.000 ETH | 0.00000172 | |
| 0xe57004…e15686 | Approve | 21,029,347 | 19 days agoMon, 27 Jul 2026 20:47:13 UTC | 0xdf00…7583 | IN | Clarity Act | $0.000 ETH | 0.00000175 | |
| 0x0053d2…f3852e | Approve | 21,028,937 | 19 days agoMon, 27 Jul 2026 20:46:31 UTC | 0x7344…ae6f | IN | Clarity Act | $0.000 ETH | 0.00000174 | |
| 0x7a549a…ef892f | Approve | 21,028,472 | 19 days agoMon, 27 Jul 2026 20:45:45 UTC | 0x069b…d8e5 | IN | Clarity Act | $0.000 ETH | 0.00000175 |