// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;
/*
████████╗ █████╗ ██╗ ██╗ ██╗███████╗
╚══██╔══╝██╔══██╗██║ ██║ ██║██╔════╝
██║ ███████║██║ ██║ ██║███████╗
██║ ██╔══██║██║ ██║ ██║╚════██║
██║ ██║ ██║███████╗╚██████╔╝███████║
╚═╝ ╚═╝ ╚═╝╚══════╝ ╚═════╝ ╚══════╝
https://x.com/talusliquidity
Market cap says what a token is worth on paper. Pool depth says what can actually be taken
out of it. TALUS turns fees into a permanent bid placed under the price, one that can
never be withdrawn and never steps down.
*/
import {ERC20} from "solady/tokens/ERC20.sol";
/// @title TALUS
/// @notice Supply 1,000,000,000. No mint function. No owner. No tax. No team allocation, no
/// presale, no whitelist, no private round. Nothing here can be changed after deployment,
/// because there is nothing here that can change anything.
contract Talus is ERC20 {
uint256 public constant TOTAL_SUPPLY = 1_000_000_000e18;
/// @dev Tokens sent here are gone. `circulatingSupply()` excludes them.
address public constant DEAD = 0x000000000000000000000000000000000000dEaD;
constructor(address recipient) {
_mint(recipient, TOTAL_SUPPLY);
}
function name() public pure override returns (string memory) {
return "Talus";
}
function symbol() public pure override returns (string memory) {
return "TALUS";
}
/// @notice Total supply minus everything burned. The burn is one-way, so this only falls.
function circulatingSupply() external view returns (uint256) {
return totalSupply() - balanceOf(DEAD);
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "recipient",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "nonpayable"
},
{
"name": "AllowanceOverflow",
"type": "error",
"inputs": []
},
{
"name": "AllowanceUnderflow",
"type": "error",
"inputs": []
},
{
"name": "InsufficientAllowance",
"type": "error",
"inputs": []
},
{
"name": "InsufficientBalance",
"type": "error",
"inputs": []
},
{
"name": "InvalidPermit",
"type": "error",
"inputs": []
},
{
"name": "Permit2AllowanceIsFixedAtInfinity",
"type": "error",
"inputs": []
},
{
"name": "PermitExpired",
"type": "error",
"inputs": []
},
{
"name": "TotalSupplyOverflow",
"type": "error",
"inputs": []
},
{
"name": "Approval",
"type": "event",
"inputs": [
{
"name": "owner",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "spender",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount",
"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": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "DEAD",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "DOMAIN_SEPARATOR",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "result",
"type": "bytes32",
"internalType": "bytes32"
}
],
"stateMutability": "view"
},
{
"name": "TOTAL_SUPPLY",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "allowance",
"type": "function",
"inputs": [
{
"name": "owner",
"type": "address",
"internalType": "address"
},
{
"name": "spender",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "result",
"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": "owner",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "result",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "circulatingSupply",
"type": "function",
"inputs": [],
"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": "pure"
},
{
"name": "nonces",
"type": "function",
"inputs": [
{
"name": "owner",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "result",
"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": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "pure"
},
{
"name": "totalSupply",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "result",
"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"
}
]0x6080346100f457601f610c2738819003918201601f19168301916001600160401b038311848410176100f8578084926020946040528339810103126100f457516001600160a01b03811681036100f4576805345cdf77eb68f44c546b033b2e3c9fd0803ce800000081019081106100e7576805345cdf77eb68f44c556387a211a2600c525f526020600c206b033b2e3c9fd0803ce800000081540190556b033b2e3c9fd0803ce8000000602052600c5160601c5f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602080a3604051610b1a908161010d8239f35b63e5cfe9575f526004601cfd5b5f80fd5b634e487b7160e01b5f52604160045260245ffdfe6080806040526004361015610012575f80fd5b5f3560e01c90816303fd2a45146109645750806306fdde03146108f9578063095ea7b31461083f57806318160ddd146107fc57806323b872dd146106db578063313ce567146106a25780633644e515146105d857806370a08231146105885780637ecebe0014610538578063902d55a5146104f45780639358928b1461046757806395d89b41146103f8578063a9059cbb1461034b578063d505accf146101175763dd62ed3e146100c1575f80fd5b346101135760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011357602061010b6100fd6109e4565b610105610a07565b90610a7b565b604051908152f35b5f80fd5b346101135760e07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101135761014e6109e4565b610156610a07565b604435916064356084359260ff841684036101135773ffffffffffffffffffffffffffffffffffffffff16938019156e22d473030f116ddee9f6b43ac78ba38618171561033e576101a5610a2a565b60208101907f54616c75730000000000000000000000000000000000000000000000000000008252519020908242116103315773ffffffffffffffffffffffffffffffffffffffff60405194169465383775081901600e52855f5260c06020600c20958654957f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8252602082019586528660408301967fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc688528b6060850198468a528c608087019330855260a08820602e527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9885252528688525260a082015220604e526042602c205f5260ff1660205260a43560405260c43560605260208060805f60015afa93853d5103610324577f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259460209401905585777f5e9f200000000000000000000000000000000000000000176040526034602c2055a3005b63ddafbaef5f526004601cfd5b631a15a3cc5f526004601cfd5b633f68539a5f526004601cfd5b346101135760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610113576103826109e4565b602435906387a211a2600c52335f526020600c2080548084116103eb5783900390555f526020600c20818154019055602052600c5160601c337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602080a3602060405160018152f35b63f4d678b85f526004601cfd5b34610113575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011357610463610431610a2a565b7f54414c555300000000000000000000000000000000000000000000000000000060208201526040519182918261099c565b0390f35b34610113575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610113576805345cdf77eb68f44c546387a211a2600c5261dead5f526020600c205481039081116104c757602090604051908152f35b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b34610113575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101135760206040516b033b2e3c9fd0803ce80000008152f35b346101135760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101135761056f6109e4565b6338377508600c525f52602080600c2054604051908152f35b346101135760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610113576105bf6109e4565b6387a211a2600c525f52602080600c2054604051908152f35b34610113575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011357602060a0610612610a2a565b828101907f54616c75730000000000000000000000000000000000000000000000000000008252519020604051907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8252838201527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6604082015246606082015230608082015220604051908152f35b34610113575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011357602060405160128152f35b346101135760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610113576107126109e4565b61071a610a07565b604435908260601b6e22d473030f116ddee9f6b43ac78ba333036107b2575b6387a211a217600c526020600c2080548084116103eb5783900390555f526020600c2081815401905560205273ffffffffffffffffffffffffffffffffffffffff600c5160601c91167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602080a3602060405160018152f35b33602052637f5e9f208117600c526034600c209081549182196107d8575b509050610739565b8285116107ef57846387a211a293039055856107d0565b6313be252b5f526004601cfd5b34610113575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101135760206805345cdf77eb68f44c54604051908152f35b346101135760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610113576108766109e4565b602435908119156e22d473030f116ddee9f6b43ac78ba373ffffffffffffffffffffffffffffffffffffffff831618171561033e57602052637f5e9f20600c52335f52806034600c20555f52602c5160601c337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560205fa3602060405160018152f35b34610113575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011357610463610932610a2a565b7f54616c757300000000000000000000000000000000000000000000000000000060208201526040519182918261099c565b34610113575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610113578061dead60209252f35b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f602060409481855280519182918282880152018686015e5f8582860101520116010190565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361011357565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361011357565b604051906040820182811067ffffffffffffffff821117610a4e5760405260058252565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b906e22d473030f116ddee9f6b43ac78ba373ffffffffffffffffffffffffffffffffffffffff821614610abe57602052637f5e9f20600c525f526034600c205490565b50507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9056fea26469706673582212207f7d20cb9ae93727463c1f102c78091059073a7a7b4f58c5eeac8758c93c317b64736f6c634300081c0033000000000000000000000000633ee30746c4d9c860a8d426f15b12379ea93c97
0x6080806040526004361015610012575f80fd5b5f3560e01c90816303fd2a45146109645750806306fdde03146108f9578063095ea7b31461083f57806318160ddd146107fc57806323b872dd146106db578063313ce567146106a25780633644e515146105d857806370a08231146105885780637ecebe0014610538578063902d55a5146104f45780639358928b1461046757806395d89b41146103f8578063a9059cbb1461034b578063d505accf146101175763dd62ed3e146100c1575f80fd5b346101135760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011357602061010b6100fd6109e4565b610105610a07565b90610a7b565b604051908152f35b5f80fd5b346101135760e07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101135761014e6109e4565b610156610a07565b604435916064356084359260ff841684036101135773ffffffffffffffffffffffffffffffffffffffff16938019156e22d473030f116ddee9f6b43ac78ba38618171561033e576101a5610a2a565b60208101907f54616c75730000000000000000000000000000000000000000000000000000008252519020908242116103315773ffffffffffffffffffffffffffffffffffffffff60405194169465383775081901600e52855f5260c06020600c20958654957f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8252602082019586528660408301967fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc688528b6060850198468a528c608087019330855260a08820602e527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9885252528688525260a082015220604e526042602c205f5260ff1660205260a43560405260c43560605260208060805f60015afa93853d5103610324577f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259460209401905585777f5e9f200000000000000000000000000000000000000000176040526034602c2055a3005b63ddafbaef5f526004601cfd5b631a15a3cc5f526004601cfd5b633f68539a5f526004601cfd5b346101135760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610113576103826109e4565b602435906387a211a2600c52335f526020600c2080548084116103eb5783900390555f526020600c20818154019055602052600c5160601c337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602080a3602060405160018152f35b63f4d678b85f526004601cfd5b34610113575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011357610463610431610a2a565b7f54414c555300000000000000000000000000000000000000000000000000000060208201526040519182918261099c565b0390f35b34610113575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610113576805345cdf77eb68f44c546387a211a2600c5261dead5f526020600c205481039081116104c757602090604051908152f35b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b34610113575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101135760206040516b033b2e3c9fd0803ce80000008152f35b346101135760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101135761056f6109e4565b6338377508600c525f52602080600c2054604051908152f35b346101135760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610113576105bf6109e4565b6387a211a2600c525f52602080600c2054604051908152f35b34610113575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011357602060a0610612610a2a565b828101907f54616c75730000000000000000000000000000000000000000000000000000008252519020604051907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8252838201527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6604082015246606082015230608082015220604051908152f35b34610113575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011357602060405160128152f35b346101135760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610113576107126109e4565b61071a610a07565b604435908260601b6e22d473030f116ddee9f6b43ac78ba333036107b2575b6387a211a217600c526020600c2080548084116103eb5783900390555f526020600c2081815401905560205273ffffffffffffffffffffffffffffffffffffffff600c5160601c91167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602080a3602060405160018152f35b33602052637f5e9f208117600c526034600c209081549182196107d8575b509050610739565b8285116107ef57846387a211a293039055856107d0565b6313be252b5f526004601cfd5b34610113575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101135760206805345cdf77eb68f44c54604051908152f35b346101135760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610113576108766109e4565b602435908119156e22d473030f116ddee9f6b43ac78ba373ffffffffffffffffffffffffffffffffffffffff831618171561033e57602052637f5e9f20600c52335f52806034600c20555f52602c5160601c337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560205fa3602060405160018152f35b34610113575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011357610463610932610a2a565b7f54616c757300000000000000000000000000000000000000000000000000000060208201526040519182918261099c565b34610113575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610113578061dead60209252f35b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f602060409481855280519182918282880152018686015e5f8582860101520116010190565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361011357565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361011357565b604051906040820182811067ffffffffffffffff821117610a4e5760405260058252565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b906e22d473030f116ddee9f6b43ac78ba373ffffffffffffffffffffffffffffffffffffffff821614610abe57602052637f5e9f20600c525f526034600c205490565b50507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9056fea26469706673582212207f7d20cb9ae93727463c1f102c78091059073a7a7b4f58c5eeac8758c93c317b64736f6c634300081c0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| no token holdings | ||||
| 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 | ||
|---|---|---|---|---|---|---|---|---|---|
| no token 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 |
|---|---|---|---|
| 0x5fd055…a5b946 | 2 days agoSat, 15 Aug 2026 22:09:15 UTC | Transfer | [0] 0x000000000000…4b7f098f [1] 0x000000000000…0000dead data: 0x000000000000000000…0c61b5a3 |
| 0xf015e7…0ef49a | 7 days agoMon, 10 Aug 2026 21:39:45 UTC | Approval | [0] 0x000000000000…4b7f098f [1] 0x000000000000…eb649eba data: 0x000000000000000000…00000000 |
| 0x0a22ea…e87a33 | 7 days agoMon, 10 Aug 2026 21:39:31 UTC | Approval | [0] 0x000000000000…4b7f098f [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…00000000 |
| 0xdf0a77…56f774 | 7 days agoMon, 10 Aug 2026 18:19:03 UTC | Approval | [0] 0x000000000000…4b7f098f [1] 0x000000000000…eb649eba data: 0xffffffffffffffffff…ffffffff |
| 0xcab1a2…f9e1be | 7 days agoMon, 10 Aug 2026 16:24:56 UTC | Approval | [0] 0x000000000000…b87eaa57 [1] 0x000000000000…c06886a2 data: 0x000000000000000000…00000000 |
| 0x3f7a37…2259d7 | 7 days agoMon, 10 Aug 2026 16:23:04 UTC | Transfer | [0] 0x000000000000…efe7c270 [1] 0x000000000000…9ea93c97 data: 0x000000000000000000…8eee3b46 |
| 0x7b0a4f…3b4a1e | 7 days agoMon, 10 Aug 2026 16:23:01 UTC | Transfer | [0] 0x000000000000…653a0882 [1] 0x000000000000…efe7c270 data: 0x000000000000000000…b49dafa9 |
| 0xde9ea2…0e3b9d | 7 days agoMon, 10 Aug 2026 16:23:01 UTC | Transfer | [0] 0x000000000000…9b1d61b0 [1] 0x000000000000…efe7c270 data: 0x000000000000000000…f7af8d8a |
| 0x7baa67…78bb12 | 7 days agoMon, 10 Aug 2026 16:22:58 UTC | Transfer | [0] 0x000000000000…efe7c270 [1] 0x000000000000…9b1d61b0 data: 0x000000000000000000…e1a81165 |
| 0xa5cffd…70d42c | 7 days agoMon, 10 Aug 2026 16:22:58 UTC | Transfer | [0] 0x000000000000…efe7c270 [1] 0x000000000000…653a0882 data: 0x000000000000000000…71e2cb03 |
| 0x46493c…56af1f | 7 days agoMon, 10 Aug 2026 16:22:58 UTC | Transfer | [0] 0x000000000000…efe7c270 [1] 0x000000000000…9b1d61b0 data: 0x000000000000000000…281c3d6d |
| 0xae70c1…7a2eab | 7 days agoMon, 10 Aug 2026 16:22:58 UTC | Transfer | [0] 0x000000000000…efe7c270 [1] 0x000000000000…653a0882 data: 0x000000000000000000…9899d593 |
| 0x2e09eb…2bc69f | 7 days agoMon, 10 Aug 2026 16:22:57 UTC | Transfer | [0] 0x000000000000…efe7c270 [1] 0x000000000000…653a0882 data: 0x000000000000000000…7f6185e9 |
| 0xe43087…f4405b | 7 days agoMon, 10 Aug 2026 16:22:57 UTC | Transfer | [0] 0x000000000000…efe7c270 [1] 0x000000000000…9b1d61b0 data: 0x000000000000000000…60fa6f83 |
| 0xb60ed8…3e70cf | 7 days agoMon, 10 Aug 2026 16:22:56 UTC | Transfer | [0] 0x000000000000…efe7c270 [1] 0x000000000000…9b1d61b0 data: 0x000000000000000000…fa28195d |
| 0xd5553e…6bb28f | 7 days agoMon, 10 Aug 2026 16:22:56 UTC | Transfer | [0] 0x000000000000…efe7c270 [1] 0x000000000000…653a0882 data: 0x000000000000000000…54cfd23d |
| 0x2488cc…9931d1 | 7 days agoMon, 10 Aug 2026 16:22:56 UTC | Transfer | [0] 0x000000000000…efe7c270 [1] 0x000000000000…9b1d61b0 data: 0x000000000000000000…04f76651 |
| 0x33a95d…972835 | 7 days agoMon, 10 Aug 2026 16:22:56 UTC | Transfer | [0] 0x000000000000…efe7c270 [1] 0x000000000000…653a0882 data: 0x000000000000000000…b2515b0e |
| 0xa8a8a5…1d4bbb | 7 days agoMon, 10 Aug 2026 16:22:56 UTC | Transfer | [0] 0x000000000000…efe7c270 [1] 0x000000000000…9b1d61b0 data: 0x000000000000000000…4defd7ae |
| 0x1ebbb9…a798d9 | 7 days agoMon, 10 Aug 2026 16:22:56 UTC | Transfer | [0] 0x000000000000…efe7c270 [1] 0x000000000000…653a0882 data: 0x000000000000000000…846291b4 |
| 0xe90490…1a84ec | 7 days agoMon, 10 Aug 2026 16:22:55 UTC | Transfer | [0] 0x000000000000…efe7c270 [1] 0x000000000000…9b1d61b0 data: 0x000000000000000000…a76e0df9 |
| 0xad810b…f67b91 | 7 days agoMon, 10 Aug 2026 16:22:55 UTC | Transfer | [0] 0x000000000000…efe7c270 [1] 0x000000000000…653a0882 data: 0x000000000000000000…bff1b24d |
| 0xb56d88…bc0b39 | 7 days agoMon, 10 Aug 2026 16:22:54 UTC | Transfer | [0] 0x000000000000…d9e558fd [1] 0x000000000000…efe7c270 data: 0x000000000000000000…f2cf7112 |
| 0x3648b5…e613c6 | 7 days agoMon, 10 Aug 2026 16:22:54 UTC | Approval | [0] 0x000000000000…d9e558fd [1] 0x000000000000…262c40dc data: 0x000000000000000000…f2cf7112 |
| 0xc3293b…d76409 | 7 days agoMon, 10 Aug 2026 16:22:46 UTC | Transfer | [0] 0x000000000000…efe7c270 [1] 0x000000000000…9b1d61b0 data: 0x000000000000000000…84c840b0 |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x5fd055…a5b946 | Transfer | 37,462,221 | 2 days agoSat, 15 Aug 2026 22:09:15 UTC | 0x9f0e…098f | IN | Talus | $0.000 ETH | 0.00000129 | |
| 0xf015e7…0ef49a | Approve | 33,128,893 | 7 days agoMon, 10 Aug 2026 21:39:45 UTC | 0x9f0e…098f | IN | Talus | $0.000 ETH | 0.00000065 | |
| 0x0a22ea…e87a33 | Approve | 33,128,759 | 7 days agoMon, 10 Aug 2026 21:39:31 UTC | 0x9f0e…098f | IN | Talus | $0.000 ETH | 0.00000066 | |
| 0xdf0a77…56f774 | Approve | 33,008,595 | 7 days agoMon, 10 Aug 2026 18:19:03 UTC | 0x9f0e…098f | IN | Talus | $0.000 ETH | 0.00000122 | |
| 0xcab1a2…f9e1be | Approve | 32,940,148 | 7 days agoMon, 10 Aug 2026 16:24:56 UTC | 0x0080…aa57 | IN | Talus | $0.000 ETH | 0.00000062 | |
| 0x3648b5…e613c6 | Approve | 32,938,923 | 7 days agoMon, 10 Aug 2026 16:22:54 UTC | 0xfa53…58fd | IN | Talus | $0.000 ETH | 0.00000126 | |
| 0xca7dbd…c5b20f | Approve | 32,938,744 | 7 days agoMon, 10 Aug 2026 16:22:36 UTC | 0xf49e…0853 | IN | Talus | $0.000 ETH | 0.00000125 | |
| 0x21858a…124eeb | Approve | 32,938,564 | 7 days agoMon, 10 Aug 2026 16:22:18 UTC | 0xaabf…0cd3 | IN | Talus | $0.000 ETH | 0.00000126 | |
| 0x2a9bf3…ca4434 | Approve | 32,938,496 | 7 days agoMon, 10 Aug 2026 16:22:12 UTC | 0xfa53…58fd | IN | Talus | $0.000 ETH | 0.00000073 | |
| 0xe2f412…2bfc7e | Approve | 32,938,496 | 7 days agoMon, 10 Aug 2026 16:22:12 UTC | 0xf49e…0853 | IN | Talus | $0.000 ETH | 0.00000073 | |
| 0x617a25…9eb7f5 | Approve | 32,938,490 | 7 days agoMon, 10 Aug 2026 16:22:11 UTC | 0xf49e…0853 | IN | Talus | $0.000 ETH | 0.00000124 | |
| 0xdab4c8…70a9b5 | Approve | 32,938,490 | 7 days agoMon, 10 Aug 2026 16:22:11 UTC | 0xfa53…58fd | IN | Talus | $0.000 ETH | 0.00000124 | |
| 0x2134a2…ba62e3 | Approve | 32,938,486 | 7 days agoMon, 10 Aug 2026 16:22:10 UTC | 0xbc6f…fc80 | IN | Talus | $0.000 ETH | 0.00000128 | |
| 0x1e03a7…02ca02 | Approve | 32,938,461 | 7 days agoMon, 10 Aug 2026 16:22:08 UTC | 0x7773…bbcd | IN | Talus | $0.000 ETH | 0.00000123 | |
| 0xdf2a90…c2b503 | Approve | 32,938,411 | 7 days agoMon, 10 Aug 2026 16:22:03 UTC | 0xe081…a2d1 | IN | Talus | $0.000 ETH | 0.00000124 | |
| 0x90c914…33c8ec | Approve | 32,938,376 | 7 days agoMon, 10 Aug 2026 16:21:59 UTC | 0xaeb0…af35 | IN | Talus | $0.000 ETH | 0.00000125 | |
| 0x7109bf…b3296e | Approve | 32,938,375 | 7 days agoMon, 10 Aug 2026 16:21:59 UTC | 0xaeb0…af35 | IN | Talus | $0.000 ETH | 0.00000125 | |
| 0x06dc31…4e150e | Approve | 32,938,314 | 7 days agoMon, 10 Aug 2026 16:21:53 UTC | 0xfcd1…3a10 | IN | Talus | $0.000 ETH | 0.00000072 | |
| 0xd52e9d…ee84ee | Approve | 32,938,308 | 7 days agoMon, 10 Aug 2026 16:21:53 UTC | 0xfcd1…3a10 | IN | Talus | $0.000 ETH | 0.00000127 | |
| 0xdb3273…621da8 | Approve | 32,938,237 | 7 days agoMon, 10 Aug 2026 16:21:45 UTC | 0x2848…68ea | IN | Talus | $0.000 ETH | 0.00000126 | |
| 0xf502ed…cef274 | Approve | 32,938,228 | 7 days agoMon, 10 Aug 2026 16:21:45 UTC | 0xdeb7…42b2 | IN | Talus | $0.000 ETH | 0.00000073 | |
| 0xdc6a4a…29d633 | Approve | 32,938,225 | 7 days agoMon, 10 Aug 2026 16:21:44 UTC | 0x86ae…776d | IN | Talus | $0.000 ETH | 0.00000125 | |
| 0x57c3cc…dd1ba5 | Approve | 32,938,222 | 7 days agoMon, 10 Aug 2026 16:21:44 UTC | 0x2b32…63b5 | IN | Talus | $0.000 ETH | 0.00000124 | |
| 0x2bf7d7…50e5e7 | Approve | 32,938,222 | 7 days agoMon, 10 Aug 2026 16:21:44 UTC | 0xa7bd…1625 | IN | Talus | $0.000 ETH | 0.00000124 | |
| 0xe0085b…5f174d | Approve | 32,938,222 | 7 days agoMon, 10 Aug 2026 16:21:44 UTC | 0xdeb7…42b2 | IN | Talus | $0.000 ETH | 0.00000124 |