| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| no token holdings | ||||
| 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) | ||||||||
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
// ─── $TAPE ────────────────────────────────────────────────────────────────
// The ghost tape made fungible. Minted once, to no one who can abuse it:
// deployer and treasury receive zero, the whole supply seeds a locked pool.
// No owner, no mint, no pause, no blacklist, no fee, no callback — a plain,
// boring, honest coin. The only powers it has are the ones every ERC-20 has,
// and one it earns: it burns (reroll, prophesy) and never grows.
// ───────────────────────────────────────────────────────────────────────────
/// @title ArcanaTape ($TAPE)
/// @notice The ghost tape made fungible. Radically fair by construction:
/// - fixed supply, minted ONCE in the constructor to the provisioner
/// (the launch orchestrator that seeds + locks the one-sided pool);
/// - NO owner, NO admin, NO mint function, NO pause, NO blacklist,
/// NO fee-on-transfer, NO callbacks. Nothing here can rug.
/// - deployer and treasury receive ZERO. The only ways into circulation
/// are buying from the locked pool or earning it in-app.
///
/// Deliberately a plain, boring, audited-shape ERC-20 so token sniffers
/// and honeypot scanners come back clean — a scam smell is a launch
/// killer, and the safest token is the one with no special powers.
contract ArcanaTape {
// --------------------------------------------------------------- metadata
string public constant name = "MARKET ARCANA TAPE";
string public constant symbol = "TAPE";
uint8 public constant decimals = 18;
uint256 public totalSupply;
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);
error InsufficientBalance();
error InsufficientAllowance();
error ZeroAddress();
/// @param provisioner receives 100% of supply exactly once. It MUST be the
/// launch contract that creates the pool and locks the LP; it holds
/// no privileged role here beyond having been the initial holder.
/// @param supply total fixed supply (e.g. 1_000_000_000e18).
constructor(address provisioner, uint256 supply) {
if (provisioner == address(0)) revert ZeroAddress();
totalSupply = supply;
balanceOf[provisioner] = supply;
emit Transfer(address(0), provisioner, supply);
}
// ---------------------------------------------------------------- ERC-20
function transfer(address to, uint256 amount) external returns (bool) {
_transfer(msg.sender, to, amount);
return true;
}
function approve(address spender, uint256 amount) external returns (bool) {
allowance[msg.sender][spender] = amount;
emit Approval(msg.sender, spender, amount);
return true;
}
function transferFrom(address from, address to, uint256 amount) external returns (bool) {
uint256 allowed = allowance[from][msg.sender];
if (allowed != type(uint256).max) {
if (allowed < amount) revert InsufficientAllowance();
unchecked {
allowance[from][msg.sender] = allowed - amount;
}
}
_transfer(from, to, amount);
return true;
}
function _transfer(address from, address to, uint256 amount) private {
if (to == address(0)) revert ZeroAddress(); // burning goes through burn()
uint256 bal = balanceOf[from];
if (bal < amount) revert InsufficientBalance();
unchecked {
balanceOf[from] = bal - amount;
balanceOf[to] += amount; // cannot overflow: bounded by totalSupply
}
emit Transfer(from, to, amount);
}
// ------------------------------------------------------------------ burn
/// Deflation is a first-class citizen: reroll and prophesy burn $TAPE.
function burn(uint256 amount) external {
_burn(msg.sender, amount);
}
function burnFrom(address from, uint256 amount) external {
uint256 allowed = allowance[from][msg.sender];
if (allowed != type(uint256).max) {
if (allowed < amount) revert InsufficientAllowance();
unchecked {
allowance[from][msg.sender] = allowed - amount;
}
}
_burn(from, amount);
}
function _burn(address from, uint256 amount) private {
uint256 bal = balanceOf[from];
if (bal < amount) revert InsufficientBalance();
unchecked {
balanceOf[from] = bal - amount;
totalSupply -= amount;
}
emit Transfer(from, address(0), amount);
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "provisioner",
"type": "address",
"internalType": "address"
},
{
"name": "supply",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "nonpayable"
},
{
"name": "InsufficientAllowance",
"type": "error",
"inputs": []
},
{
"name": "InsufficientBalance",
"type": "error",
"inputs": []
},
{
"name": "ZeroAddress",
"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": "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": "burn",
"type": "function",
"inputs": [
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "burnFrom",
"type": "function",
"inputs": [
{
"name": "from",
"type": "address",
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"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": "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"
}
]0x6080346100b85761068490601f38839003908101601f19168201906001600160401b038211838310176100bd57808391604095869485528339810103126100b85780516001600160a01b03811691908290036100b8576020015181156100a7577fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60208260009384558484526001825280868520558551908152a3516105b090816100d48239f35b825163d92e233d60e01b8152600490fd5b600080fd5b634e487b7160e01b600052604160045260246000fdfe608060408181526004918236101561001657600080fd5b600092833560e01c91826306fdde03146103ae57508163095ea7b31461033d57816318160ddd1461032057816323b872dd14610282578163313ce5671461026657816342966c681461024857816370a082311461021057816379cc67901461017d57816395d89b411461011957508063a9059cbb146100e95763dd62ed3e1461009e57600080fd5b346100e557806003193601126100e557806020926100ba61044d565b6100c2610468565b6001600160a01b0391821683526002865283832091168252845220549051908152f35b5080fd5b50346100e557806003193601126100e55760209061011261010861044d565b602435903361047e565b5160018152f35b8383346100e557816003193601126100e5578051918183019083821067ffffffffffffffff83111761016a5750926101669382528252635441504560e01b60208301525191829182610404565b0390f35b634e487b7160e01b815260418552602490fd5b8383346100e557806003193601126100e55761019761044d565b6001600160a01b0381168084526002602090815283852033865290528284205494602435939190600187016101d5575b856101d28686610516565b80f35b8487106102025750849584916101d2965260026020528287203388526020520390852055839285806101c7565b82516313be252b60e01b8152fd5b5050346100e55760203660031901126100e55760209181906001600160a01b0361023861044d565b1681526001845220549051908152f35b8390346100e55760203660031901126100e5576101d2903533610516565b5050346100e557816003193601126100e5576020905160128152f35b82843461031d57606036600319011261031d5761029d61044d565b6102a5610468565b916044359460018060a01b0383168083526002602052858320338452602052858320549160001983036102e1575b6020876101128a898961047e565b87831061030f57508252600260209081528583203384528152918590209086900390558290610112876102d3565b86516313be252b60e01b8152fd5b80fd5b5050346100e557816003193601126100e557602091549051908152f35b5050346100e557806003193601126100e5576020918161035b61044d565b91602435918291338152600287528181209460018060a01b0316948582528752205582519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925843392a35160018152f35b83853461031d578060031936011261031d578183019083821067ffffffffffffffff83111761016a57506101669350815260128252714d41524b455420415243414e41205441504560701b602083015251918291825b6020808252825181830181905290939260005b82811061043957505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610417565b600435906001600160a01b038216820361046357565b600080fd5b602435906001600160a01b038216820361046357565b6001600160a01b039182169291908315610504571690600082815260016020526040812054918083106104f257604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef95876020965260018652038282205586815220818154019055604051908152a3565b604051631e9acf1760e31b8152600490fd5b60405163d92e233d60e01b8152600490fd5b6001600160a01b03166000818152600160205260408120549092908181106104f257817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9260209285875260018452036040862055808554038555604051908152a356fea2646970667358221220a7b305c29bfb2ee34c2696dedd05286815bf075ff0f294063d70a708b512aa2964736f6c634300081800330000000000000000000000009c28decc934f12a398889044c24ef7a9a626a85b0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
0x608060408181526004918236101561001657600080fd5b600092833560e01c91826306fdde03146103ae57508163095ea7b31461033d57816318160ddd1461032057816323b872dd14610282578163313ce5671461026657816342966c681461024857816370a082311461021057816379cc67901461017d57816395d89b411461011957508063a9059cbb146100e95763dd62ed3e1461009e57600080fd5b346100e557806003193601126100e557806020926100ba61044d565b6100c2610468565b6001600160a01b0391821683526002865283832091168252845220549051908152f35b5080fd5b50346100e557806003193601126100e55760209061011261010861044d565b602435903361047e565b5160018152f35b8383346100e557816003193601126100e5578051918183019083821067ffffffffffffffff83111761016a5750926101669382528252635441504560e01b60208301525191829182610404565b0390f35b634e487b7160e01b815260418552602490fd5b8383346100e557806003193601126100e55761019761044d565b6001600160a01b0381168084526002602090815283852033865290528284205494602435939190600187016101d5575b856101d28686610516565b80f35b8487106102025750849584916101d2965260026020528287203388526020520390852055839285806101c7565b82516313be252b60e01b8152fd5b5050346100e55760203660031901126100e55760209181906001600160a01b0361023861044d565b1681526001845220549051908152f35b8390346100e55760203660031901126100e5576101d2903533610516565b5050346100e557816003193601126100e5576020905160128152f35b82843461031d57606036600319011261031d5761029d61044d565b6102a5610468565b916044359460018060a01b0383168083526002602052858320338452602052858320549160001983036102e1575b6020876101128a898961047e565b87831061030f57508252600260209081528583203384528152918590209086900390558290610112876102d3565b86516313be252b60e01b8152fd5b80fd5b5050346100e557816003193601126100e557602091549051908152f35b5050346100e557806003193601126100e5576020918161035b61044d565b91602435918291338152600287528181209460018060a01b0316948582528752205582519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925843392a35160018152f35b83853461031d578060031936011261031d578183019083821067ffffffffffffffff83111761016a57506101669350815260128252714d41524b455420415243414e41205441504560701b602083015251918291825b6020808252825181830181905290939260005b82811061043957505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610417565b600435906001600160a01b038216820361046357565b600080fd5b602435906001600160a01b038216820361046357565b6001600160a01b039182169291908315610504571690600082815260016020526040812054918083106104f257604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef95876020965260018652038282205586815220818154019055604051908152a3565b604051631e9acf1760e31b8152600490fd5b60405163d92e233d60e01b8152600490fd5b6001600160a01b03166000818152600160205260408120549092908181106104f257817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9260209285875260018452036040862055808554038555604051908152a356fea2646970667358221220a7b305c29bfb2ee34c2696dedd05286815bf075ff0f294063d70a708b512aa2964736f6c63430008180033
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0xb086e5…8ec450 | 10 secs agoTue, 18 Aug 2026 05:28:41 UTC | Transfer | [0] 0x000000000000…165d125f [1] 0x000000000000…43e40951 data: 0x000000000000000000…63100000 |
| 0xb086e5…8ec450 | 10 secs agoTue, 18 Aug 2026 05:28:41 UTC | Transfer | [0] 0x000000000000…72414af3 [1] 0x000000000000…165d125f data: 0x000000000000000000…63100000 |
| 0xb086e5…8ec450 | 10 secs agoTue, 18 Aug 2026 05:28:41 UTC | Transfer | [0] 0x000000000000…893b5030 [1] 0x000000000000…72414af3 data: 0x000000000000000000…63100000 |
| 0x695146…3c3c81 | 15 secs agoTue, 18 Aug 2026 05:28:36 UTC | Approval | [0] 0x000000000000…893b5030 [1] 0x000000000000…72414af3 data: 0x000000000000000000…63100000 |
| 0x765809…10420a | 47 secs agoTue, 18 Aug 2026 05:28:04 UTC | Approval | [0] 0x000000000000…893b5030 [1] 0x000000000000…a65d4ace data: 0x000000000000000000…6310b284 |
| 0x16d6ae…a5cc4d | 3 mins agoTue, 18 Aug 2026 05:25:26 UTC | Transfer | [0] 0x000000000000…9f304238 [1] 0x000000000000…e0b05789 data: 0x000000000000000000…63100000 |
| 0x34d93b…4e3ae9 | 11 mins agoTue, 18 Aug 2026 05:16:53 UTC | Transfer | [0] 0x000000000000…5176ca11 [1] 0x000000000000…43e40951 data: 0x000000000000000000…471a0000 |
| 0x34d93b…4e3ae9 | 11 mins agoTue, 18 Aug 2026 05:16:53 UTC | Transfer | [0] 0x000000000000…5176ca11 [1] 0x000000000000…feef303d data: 0x000000000000000000…7f060000 |
| 0x34d93b…4e3ae9 | 11 mins agoTue, 18 Aug 2026 05:16:53 UTC | Transfer | [0] 0x000000000000…e0b05789 [1] 0x000000000000…5176ca11 data: 0x000000000000000000…c6200000 |
| 0xff7b94…96bc70 | 12 mins agoTue, 18 Aug 2026 05:16:51 UTC | Approval | [0] 0x000000000000…e0b05789 [1] 0x000000000000…211389c7 data: 0x000000000000000000…c6200000 |
| 0x6a8fbc…c80ddc | 3 hrs agoTue, 18 Aug 2026 01:30:15 UTC | Transfer | [0] 0x000000000000…9f304238 [1] 0x000000000000…893b5030 data: 0x000000000000000000…63100000 |
| 0xaf40dd…4e8a3d | 7 hrs agoMon, 17 Aug 2026 21:50:09 UTC | Transfer | [0] 0x000000000000…9f304238 [1] 0x000000000000…e0b05789 data: 0x000000000000000000…63100000 |
| 0xa00507…62fd07 | 7 hrs agoMon, 17 Aug 2026 21:45:07 UTC | Transfer | [0] 0x000000000000…9f304238 [1] 0x000000000000…e0b05789 data: 0x000000000000000000…63100000 |
| 0xe66ca7…994d50 | 7 hrs agoMon, 17 Aug 2026 21:41:11 UTC | Transfer | [0] 0x000000000000…5176ca11 [1] 0x000000000000…43e40951 data: 0x000000000000000000…471a0000 |
| 0xe66ca7…994d50 | 7 hrs agoMon, 17 Aug 2026 21:41:11 UTC | Transfer | [0] 0x000000000000…5176ca11 [1] 0x000000000000…feef303d data: 0x000000000000000000…7f060000 |
| 0xe66ca7…994d50 | 7 hrs agoMon, 17 Aug 2026 21:41:11 UTC | Transfer | [0] 0x000000000000…6ffe5071 [1] 0x000000000000…5176ca11 data: 0x000000000000000000…c6200000 |
| 0xe40dfb…21c9f0 | 7 hrs agoMon, 17 Aug 2026 21:41:08 UTC | Approval | [0] 0x000000000000…6ffe5071 [1] 0x000000000000…211389c7 data: 0x000000000000000000…c6200000 |
| 0x4dffe5…30fdb8 | 7 hrs agoMon, 17 Aug 2026 21:40:10 UTC | Transfer | [0] 0x000000000000…9f304238 [1] 0x000000000000…6ffe5071 data: 0x000000000000000000…63100000 |
| 0x6c5281…870fa4 | 7 hrs agoMon, 17 Aug 2026 21:35:08 UTC | Transfer | [0] 0x000000000000…9f304238 [1] 0x000000000000…6ffe5071 data: 0x000000000000000000…63100000 |
| 0x4ae86c…a502a2 | 7 hrs agoMon, 17 Aug 2026 21:30:32 UTC | Transfer | [0] 0x000000000000…5176ca11 [1] 0x000000000000…43e40951 data: 0x000000000000000000…471a0000 |
| 0x4ae86c…a502a2 | 7 hrs agoMon, 17 Aug 2026 21:30:32 UTC | Transfer | [0] 0x000000000000…5176ca11 [1] 0x000000000000…feef303d data: 0x000000000000000000…7f060000 |
| 0x4ae86c…a502a2 | 7 hrs agoMon, 17 Aug 2026 21:30:32 UTC | Transfer | [0] 0x000000000000…e0b05789 [1] 0x000000000000…5176ca11 data: 0x000000000000000000…c6200000 |
| 0x648f83…d4ed48 | 7 hrs agoMon, 17 Aug 2026 21:30:29 UTC | Approval | [0] 0x000000000000…e0b05789 [1] 0x000000000000…211389c7 data: 0x000000000000000000…c6200000 |
| 0x74e122…4f988e | 7 hrs agoMon, 17 Aug 2026 21:30:07 UTC | Transfer | [0] 0x000000000000…9f304238 [1] 0x000000000000…e0b05789 data: 0x000000000000000000…63100000 |
| 0x1b46e4…5da5e7 | 8 hrs agoMon, 17 Aug 2026 21:25:10 UTC | Transfer | [0] 0x000000000000…9f304238 [1] 0x000000000000…e0b05789 data: 0x000000000000000000…63100000 |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x695146…3c3c81 | Approve | 39,447,233 | 15 secs agoTue, 18 Aug 2026 05:28:36 UTC | 0x93c7…5030 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000092 | |
| 0x765809…10420a | Approve | 39,446,908 | 47 secs agoTue, 18 Aug 2026 05:28:04 UTC | 0x93c7…5030 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000092 | |
| 0xff7b94…96bc70 | Approve | 39,440,214 | 12 mins agoTue, 18 Aug 2026 05:16:51 UTC | 0x4c43…5789 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000092 | |
| 0xe40dfb…21c9f0 | Approve | 39,167,486 | 7 hrs agoMon, 17 Aug 2026 21:41:08 UTC | 0xcfc1…5071 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000092 | |
| 0x648f83…d4ed48 | Approve | 39,161,130 | 7 hrs agoMon, 17 Aug 2026 21:30:29 UTC | 0x4c43…5789 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000098 | |
| 0xfd3c93…9592b9 | Approve | 39,143,229 | 8 hrs agoMon, 17 Aug 2026 21:00:34 UTC | 0x4c43…5789 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000092 | |
| 0xb9dfcd…455e67 | Approve | 39,096,540 | 9 hrs agoMon, 17 Aug 2026 19:42:29 UTC | 0x4c43…5789 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000093 | |
| 0x23a45f…d2eec9 | Approve | 39,065,726 | 10 hrs agoMon, 17 Aug 2026 18:50:59 UTC | 0x4c43…5789 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000092 | |
| 0x1c690f…1b9c3f | Approve | 39,051,193 | 11 hrs agoMon, 17 Aug 2026 18:26:42 UTC | 0x8392…230b | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000092 | |
| 0x0698d9…f2ab29 | Approve | 39,041,489 | 11 hrs agoMon, 17 Aug 2026 18:10:30 UTC | 0x4c43…5789 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000093 | |
| 0x1c361b…cff41a | Approve | 39,030,386 | 11 hrs agoMon, 17 Aug 2026 17:51:56 UTC | 0x4c43…5789 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000093 | |
| 0xa088a8…818144 | Approve | 39,000,088 | 12 hrs agoMon, 17 Aug 2026 17:01:19 UTC | 0x4c43…5789 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000091 | |
| 0x371c9e…b0364f | Approve | 38,999,264 | 12 hrs agoMon, 17 Aug 2026 16:59:56 UTC | 0x22e4…e5ff | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000092 | |
| 0x19319d…3425c4 | Approve | 38,999,262 | 12 hrs agoMon, 17 Aug 2026 16:59:56 UTC | 0xda78…5c91 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000094 | |
| 0x9c2b26…8e5d7c | Approve | 38,987,865 | 12 hrs agoMon, 17 Aug 2026 16:40:53 UTC | 0xcfc1…5071 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000093 | |
| 0x60c53b…f2050c | Approve | 38,981,774 | 12 hrs agoMon, 17 Aug 2026 16:30:42 UTC | 0x4c43…5789 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000093 | |
| 0x9e17ad…28a3c4 | Approve | 38,969,502 | 13 hrs agoMon, 17 Aug 2026 16:10:12 UTC | 0x9be7…e2c2 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000095 | |
| 0xe0231b…e446ae | Approve | 38,967,077 | 13 hrs agoMon, 17 Aug 2026 16:06:10 UTC | 0x4c43…5789 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000093 | |
| 0x366069…11b34e | Approve | 38,928,140 | 14 hrs agoMon, 17 Aug 2026 15:01:10 UTC | 0x4c43…5789 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000093 | |
| 0xe87ffa…8cbd7d | Approve | 38,905,506 | 15 hrs agoMon, 17 Aug 2026 14:23:25 UTC | 0x4c43…5789 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000093 | |
| 0xd71089…9496ab | Approve | 38,886,517 | 15 hrs agoMon, 17 Aug 2026 13:51:45 UTC | 0x4c43…5789 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000093 | |
| 0xe99379…a9cc58 | Approve | 38,882,380 | 15 hrs agoMon, 17 Aug 2026 13:44:52 UTC | 0xbf65…ac8b | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000093 | |
| 0xd5ceff…d2e2db | Approve | 38,867,973 | 16 hrs agoMon, 17 Aug 2026 13:20:53 UTC | 0x4c43…5789 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000091 | |
| 0xdc7113…7eee15 | Approve | 38,844,224 | 16 hrs agoMon, 17 Aug 2026 12:41:11 UTC | 0x4c43…5789 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000091 | |
| 0xb25998…908e98 | Approve | 38,837,916 | 16 hrs agoMon, 17 Aug 2026 12:30:38 UTC | 0x4c43…5789 | IN | MARKET ARCANA TAPE | $0.000 ETH | 0.00000092 |