| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| no token holdings | ||||
| 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.26;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {ERC20Burnable} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
/**
* $OIL. A plain, fixed-supply ERC-20 with nothing clever in it.
*
* The 1% tax lives in the Uniswap v4 hook attached to the OIL/ETH pool, not
* here, and that is a deliberate architectural choice rather than a
* simplification. Uniswap v3 and v4 settle swaps by comparing the balance they
* actually received against the delta they recorded, so a token that delivers
* 99 when 100 was moved fails the check and the swap reverts. A transfer tax
* would make $OIL untradeable on exactly the venues Robinhood Chain routes
* through.
*
* Taxing at the pool instead buys more than compatibility. The hook can take
* its cut from either side of the trade, so a buy pays in ETH and a sell pays
* in $OIL, which is impossible from inside a token: a transfer hook only ever
* sees the token being moved. It also means no exemption list, since there is
* no tax for the protocol's own plumbing to trip over.
*
* There is no owner and no mint after deployment. Supply is whatever was set
* once, minus whatever activation fees have burned.
*/
contract OilToken is ERC20, ERC20Burnable {
error ZeroAddress();
constructor(uint256 supply, address recipient) ERC20("Oil", "OIL") {
if (recipient == address(0)) revert ZeroAddress();
_mint(recipient, supply);
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "supply",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "recipient",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "nonpayable"
},
{
"name": "ERC20InsufficientAllowance",
"type": "error",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "allowance",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "needed",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "ERC20InsufficientBalance",
"type": "error",
"inputs": [
{
"name": "sender",
"type": "address",
"internalType": "address"
},
{
"name": "balance",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "needed",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "ERC20InvalidApprover",
"type": "error",
"inputs": [
{
"name": "approver",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidReceiver",
"type": "error",
"inputs": [
{
"name": "receiver",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidSender",
"type": "error",
"inputs": [
{
"name": "sender",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidSpender",
"type": "error",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
}
]
},
{
"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": "owner",
"type": "address",
"internalType": "address"
},
{
"name": "spender",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "approve",
"type": "function",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "balanceOf",
"type": "function",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "burn",
"type": "function",
"inputs": [
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "burnFrom",
"type": "function",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"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": "value",
"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": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
}
]0x608060405234801561000f575f80fd5b50604051610b71380380610b7183398101604081905261002e91610220565b6040518060400160405280600381526020016213da5b60ea1b8152506040518060400160405280600381526020016213d25360ea1b815250816003908161007591906102f2565b50600461008282826102f2565b5050506001600160a01b0381166100ac5760405163d92e233d60e01b815260040160405180910390fd5b6100b681836100bd565b50506103d1565b6001600160a01b0382166100eb5760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b6100f65f83836100fa565b5050565b6001600160a01b038316610124578060025f82825461011991906103ac565b909155506101949050565b6001600160a01b0383165f90815260208190526040902054818110156101765760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100e2565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166101b0576002805482900390556101ce565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161021391815260200190565b60405180910390a3505050565b5f8060408385031215610231575f80fd5b825160208401519092506001600160a01b038116811461024f575f80fd5b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061028257607f821691505b6020821081036102a057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156102ed57805f5260205f20601f840160051c810160208510156102cb5750805b601f840160051c820191505b818110156102ea575f81556001016102d7565b50505b505050565b81516001600160401b0381111561030b5761030b61025a565b61031f81610319845461026e565b846102a6565b6020601f821160018114610351575f831561033a5750848201515b5f19600385901b1c1916600184901b1784556102ea565b5f84815260208120601f198516915b828110156103805787850151825560209485019460019092019101610360565b508482101561039d57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b808201808211156103cb57634e487b7160e01b5f52601160045260245ffd5b92915050565b610793806103de5f395ff3fe608060405234801561000f575f80fd5b50600436106100a6575f3560e01c806342966c681161006e57806342966c681461011f57806370a082311461013457806379cc67901461015c57806395d89b411461016f578063a9059cbb14610177578063dd62ed3e1461018a575f80fd5b806306fdde03146100aa578063095ea7b3146100c857806318160ddd146100eb57806323b872dd146100fd578063313ce56714610110575b5f80fd5b6100b26101c2565b6040516100bf91906105ec565b60405180910390f35b6100db6100d636600461063c565b610252565b60405190151581526020016100bf565b6002545b6040519081526020016100bf565b6100db61010b366004610664565b61026b565b604051601281526020016100bf565b61013261012d36600461069e565b61028e565b005b6100ef6101423660046106b5565b6001600160a01b03165f9081526020819052604090205490565b61013261016a36600461063c565b61029b565b6100b26102b4565b6100db61018536600461063c565b6102c3565b6100ef6101983660046106d5565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101d190610706565b80601f01602080910402602001604051908101604052809291908181526020018280546101fd90610706565b80156102485780601f1061021f57610100808354040283529160200191610248565b820191905f5260205f20905b81548152906001019060200180831161022b57829003601f168201915b5050505050905090565b5f3361025f8185856102d0565b60019150505b92915050565b5f336102788582856102e2565b610283858585610363565b506001949350505050565b61029833826103c0565b50565b6102a68233836102e2565b6102b082826103c0565b5050565b6060600480546101d190610706565b5f3361025f818585610363565b6102dd83838360016103f4565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981101561035d578181101561034f57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61035d84848484035f6103f4565b50505050565b6001600160a01b03831661038c57604051634b637e8f60e11b81525f6004820152602401610346565b6001600160a01b0382166103b55760405163ec442f0560e01b81525f6004820152602401610346565b6102dd8383836104c6565b6001600160a01b0382166103e957604051634b637e8f60e11b81525f6004820152602401610346565b6102b0825f836104c6565b6001600160a01b03841661041d5760405163e602df0560e01b81525f6004820152602401610346565b6001600160a01b03831661044657604051634a1406b160e11b81525f6004820152602401610346565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561035d57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104b891815260200190565b60405180910390a350505050565b6001600160a01b0383166104f0578060025f8282546104e5919061073e565b909155506105609050565b6001600160a01b0383165f90815260208190526040902054818110156105425760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610346565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661057c5760028054829003905561059a565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105df91815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610637575f80fd5b919050565b5f806040838503121561064d575f80fd5b61065683610621565b946020939093013593505050565b5f805f60608486031215610676575f80fd5b61067f84610621565b925061068d60208501610621565b929592945050506040919091013590565b5f602082840312156106ae575f80fd5b5035919050565b5f602082840312156106c5575f80fd5b6106ce82610621565b9392505050565b5f80604083850312156106e6575f80fd5b6106ef83610621565b91506106fd60208401610621565b90509250929050565b600181811c9082168061071a57607f821691505b60208210810361073857634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561026557634e487b7160e01b5f52601160045260245ffdfea2646970667358221220bf99638ded2077e3f06646cb8449afa8f5e0f768b9a86f18c61b1e4ad8aa2ac264736f6c634300081a0033000000000000000000000000000000000000000006765c793fa10079d0000000000000000000000000000000a4678db1b1bacea55fa22568015018096a47798d
0x608060405234801561000f575f80fd5b50600436106100a6575f3560e01c806342966c681161006e57806342966c681461011f57806370a082311461013457806379cc67901461015c57806395d89b411461016f578063a9059cbb14610177578063dd62ed3e1461018a575f80fd5b806306fdde03146100aa578063095ea7b3146100c857806318160ddd146100eb57806323b872dd146100fd578063313ce56714610110575b5f80fd5b6100b26101c2565b6040516100bf91906105ec565b60405180910390f35b6100db6100d636600461063c565b610252565b60405190151581526020016100bf565b6002545b6040519081526020016100bf565b6100db61010b366004610664565b61026b565b604051601281526020016100bf565b61013261012d36600461069e565b61028e565b005b6100ef6101423660046106b5565b6001600160a01b03165f9081526020819052604090205490565b61013261016a36600461063c565b61029b565b6100b26102b4565b6100db61018536600461063c565b6102c3565b6100ef6101983660046106d5565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101d190610706565b80601f01602080910402602001604051908101604052809291908181526020018280546101fd90610706565b80156102485780601f1061021f57610100808354040283529160200191610248565b820191905f5260205f20905b81548152906001019060200180831161022b57829003601f168201915b5050505050905090565b5f3361025f8185856102d0565b60019150505b92915050565b5f336102788582856102e2565b610283858585610363565b506001949350505050565b61029833826103c0565b50565b6102a68233836102e2565b6102b082826103c0565b5050565b6060600480546101d190610706565b5f3361025f818585610363565b6102dd83838360016103f4565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981101561035d578181101561034f57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61035d84848484035f6103f4565b50505050565b6001600160a01b03831661038c57604051634b637e8f60e11b81525f6004820152602401610346565b6001600160a01b0382166103b55760405163ec442f0560e01b81525f6004820152602401610346565b6102dd8383836104c6565b6001600160a01b0382166103e957604051634b637e8f60e11b81525f6004820152602401610346565b6102b0825f836104c6565b6001600160a01b03841661041d5760405163e602df0560e01b81525f6004820152602401610346565b6001600160a01b03831661044657604051634a1406b160e11b81525f6004820152602401610346565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561035d57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104b891815260200190565b60405180910390a350505050565b6001600160a01b0383166104f0578060025f8282546104e5919061073e565b909155506105609050565b6001600160a01b0383165f90815260208190526040902054818110156105425760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610346565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661057c5760028054829003905561059a565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105df91815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610637575f80fd5b919050565b5f806040838503121561064d575f80fd5b61065683610621565b946020939093013593505050565b5f805f60608486031215610676575f80fd5b61067f84610621565b925061068d60208501610621565b929592945050506040919091013590565b5f602082840312156106ae575f80fd5b5035919050565b5f602082840312156106c5575f80fd5b6106ce82610621565b9392505050565b5f80604083850312156106e6575f80fd5b6106ef83610621565b91506106fd60208401610621565b90509250929050565b600181811c9082168061071a57607f821691505b60208210810361073857634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561026557634e487b7160e01b5f52601160045260245ffdfea2646970667358221220bf99638ded2077e3f06646cb8449afa8f5e0f768b9a86f18c61b1e4ad8aa2ac264736f6c634300081a0033
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xd1f93a…920e82 | Approve | 39,259,482 | 1 min agoTue, 18 Aug 2026 00:14:46 UTC | 0x9517…2a0e | IN | Oil | $0.000 ETH | 0.00000094 | |
| 0x50a6a3…75c378 | Approve | 39,259,016 | 2 mins agoTue, 18 Aug 2026 00:13:59 UTC | 0x3356…faf4 | IN | Oil | $0.000 ETH | 0.00000093 | |
| 0x19c638…cfa039 | Approve | 39,257,849 | 4 mins agoTue, 18 Aug 2026 00:12:02 UTC | 0xbf02…0aaa | IN | Oil | $0.000 ETH | 0.00000095 | |
| 0x276c65…a69f8e | Approve | 39,257,821 | 4 mins agoTue, 18 Aug 2026 00:11:59 UTC | 0x7a3b…fce0 | IN | Oil | $0.000 ETH | 0.00000094 | |
| 0xcb0f7b…dc8b9c | Approve | 39,250,642 | 16 mins agoTue, 18 Aug 2026 00:00:00 UTC | 0xd001…78da | IN | Oil | $0.000 ETH | 0.00000095 | |
| 0xed9ffd…f342e4 | Approve | 39,249,659 | 17 mins agoMon, 17 Aug 2026 23:58:21 UTC | 0xa242…cd09 | IN | Oil | $0.000 ETH | 0.00000093 | |
| 0xd8b51d…55535d | Approve | 39,249,644 | 17 mins agoMon, 17 Aug 2026 23:58:19 UTC | 0xa6b2…4cbd | IN | Oil | $0.000 ETH | 0.00000096 | |
| 0x7c0df6…e34f05 | Approve | 39,248,794 | 19 mins agoMon, 17 Aug 2026 23:56:55 UTC | 0x94dc…7cce | IN | Oil | $0.000 ETH | 0.00000094 | |
| 0x1e5e32…791978 | Approve | 39,248,794 | 19 mins agoMon, 17 Aug 2026 23:56:55 UTC | 0x1fb3…5246 | IN | Oil | $0.000 ETH | 0.00000094 | |
| 0xe961b3…c60a44 | Approve | 39,248,794 | 19 mins agoMon, 17 Aug 2026 23:56:55 UTC | 0x8c22…0d86 | IN | Oil | $0.000 ETH | 0.00000094 | |
| 0x5cbc89…37f06f | Approve | 39,248,794 | 19 mins agoMon, 17 Aug 2026 23:56:55 UTC | 0x82c1…3989 | IN | Oil | $0.000 ETH | 0.00000094 | |
| 0xc4ce6c…b67e83 | Approve | 39,242,898 | 29 mins agoMon, 17 Aug 2026 23:47:04 UTC | 0xbda8…e0b2 | IN | Oil | $0.000 ETH | 0.00000094 | |
| 0xc7fd2e…f021eb | Approve | 39,239,154 | 35 mins agoMon, 17 Aug 2026 23:40:49 UTC | 0x48d9…bcc9 | IN | Oil | $0.000 ETH | 0.00000096 | |
| 0x51dc5d…e29d21 | Approve | 39,235,965 | 40 mins agoMon, 17 Aug 2026 23:35:30 UTC | 0xad12…25ce | IN | Oil | $0.000 ETH | 0.00000094 | |
| 0x7b518e…24169a | Approve | 39,235,801 | 40 mins agoMon, 17 Aug 2026 23:35:14 UTC | 0x46ab…25ca | IN | Oil | $0.000 ETH | 0.00000096 | |
| 0xb6653f…972620 | Approve | 39,234,337 | 43 mins agoMon, 17 Aug 2026 23:32:46 UTC | 0xa1e4…55a3 | IN | Oil | $0.000 ETH | 0.00000094 | |
| 0xc2e67a…a32fdf | Approve | 39,231,819 | 47 mins agoMon, 17 Aug 2026 23:28:35 UTC | 0xd674…bfe6 | IN | Oil | $0.000 ETH | 0.00000095 | |
| 0xe26c01…369897 | Approve | 39,231,811 | 47 mins agoMon, 17 Aug 2026 23:28:34 UTC | 0x9b92…9377 | IN | Oil | $0.000 ETH | 0.00000094 | |
| 0x7c4d62…a94857 | Approve | 39,229,878 | 50 mins agoMon, 17 Aug 2026 23:25:21 UTC | 0x2f66…985c | IN | Oil | $0.000 ETH | 0.00000094 | |
| 0xe6b219…ef2083 | Approve | 39,229,877 | 50 mins agoMon, 17 Aug 2026 23:25:21 UTC | 0xa61c…58e4 | IN | Oil | $0.000 ETH | 0.00000093 | |
| 0x6ac0bb…e7b107 | Approve | 39,229,775 | 50 mins agoMon, 17 Aug 2026 23:25:11 UTC | 0x0c2c…ccf0 | IN | Oil | $0.000 ETH | 0.00000093 | |
| 0xca6ad9…f2fb82 | Approve | 39,229,775 | 50 mins agoMon, 17 Aug 2026 23:25:11 UTC | 0xab00…4bb7 | IN | Oil | $0.000 ETH | 0.00000093 | |
| 0x80c5f6…7d5b6b | Approve | 39,229,775 | 50 mins agoMon, 17 Aug 2026 23:25:11 UTC | 0x3b35…7c59 | IN | Oil | $0.000 ETH | 0.00000093 | |
| 0xcfb7cd…e425d8 | Approve | 39,228,896 | 52 mins agoMon, 17 Aug 2026 23:23:42 UTC | 0xcd06…ee0b | IN | Oil | $0.000 ETH | 0.00000095 | |
| 0x54d261…0575ed | Approve | 39,228,874 | 52 mins agoMon, 17 Aug 2026 23:23:40 UTC | 0xf314…d215 | IN | Oil | $0.000 ETH | 0.00000094 |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| no token transfers for this address yet | |||||||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x35b821…892cd0 | 1 min agoTue, 18 Aug 2026 00:14:46 UTC | Transfer | [0] 0x000000000000…266b2a0e [1] 0x000000000000…43e40951 data: 0x000000000000000000…292ff3e5 |
| 0x35b821…892cd0 | 1 min agoTue, 18 Aug 2026 00:14:46 UTC | Approval | [0] 0x000000000000…928270cc [1] 0x000000000000…94d8cfd0 data: 0x000000000000000000…00000000 |
| 0x35b821…892cd0 | 1 min agoTue, 18 Aug 2026 00:14:46 UTC | Approval | [0] 0x000000000000…928270cc [1] 0x000000000000…94d8cfd0 data: 0x000000000000000000…398e3d13 |
| 0x35b821…892cd0 | 1 min agoTue, 18 Aug 2026 00:14:46 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…928270cc data: 0x000000000000000000…398e3d13 |
| 0xd1f93a…920e82 | 1 min agoTue, 18 Aug 2026 00:14:46 UTC | Approval | [0] 0x000000000000…266b2a0e [1] 0x000000000000…c06886a2 data: 0xffffffffffffffffff…ffffffff |
| 0xce6e7b…3fe7e0 | 1 min agoTue, 18 Aug 2026 00:14:30 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…5c7bfaf4 data: 0x000000000000000000…4228b663 |
| 0x3a74b5…1ee227 | 1 min agoTue, 18 Aug 2026 00:14:14 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…5c7bfaf4 data: 0x000000000000000000…76e78d86 |
| 0x79948f…ae99b6 | 2 mins agoTue, 18 Aug 2026 00:13:59 UTC | Approval | [0] 0x000000000000…928270cc [1] 0x000000000000…94d8cfd0 data: 0x000000000000000000…00000000 |
| 0x79948f…ae99b6 | 2 mins agoTue, 18 Aug 2026 00:13:59 UTC | Approval | [0] 0x000000000000…928270cc [1] 0x000000000000…94d8cfd0 data: 0x000000000000000000…13b94000 |
| 0x79948f…ae99b6 | 2 mins agoTue, 18 Aug 2026 00:13:59 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…928270cc data: 0x000000000000000000…13b94000 |
| 0x79948f…ae99b6 | 2 mins agoTue, 18 Aug 2026 00:13:59 UTC | Transfer | [0] 0x000000000000…5c7bfaf4 [1] 0x000000000000…43e40951 data: 0x000000000000000000…3c1f0000 |
| 0x50a6a3…75c378 | 2 mins agoTue, 18 Aug 2026 00:13:59 UTC | Approval | [0] 0x000000000000…5c7bfaf4 [1] 0x000000000000…262c40dc data: 0x000000000000000000…3c1f0000 |
| 0x7d53e3…d06f0f | 2 mins agoTue, 18 Aug 2026 00:13:35 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…5c7bfaf4 data: 0x000000000000000000…e9cd7e1c |
| 0x19c638…cfa039 | 4 mins agoTue, 18 Aug 2026 00:12:02 UTC | Approval | [0] 0x000000000000…e9710aaa [1] 0x000000000000…e1a4f53d data: 0xffffffffffffffffff…ffffffff |
| 0xb191d2…453297 | 4 mins agoTue, 18 Aug 2026 00:12:01 UTC | Transfer | [0] 0x000000000000…273eab7f [1] 0x000000000000…43e40951 data: 0x000000000000000000…65b49b00 |
| 0xb191d2…453297 | 4 mins agoTue, 18 Aug 2026 00:12:01 UTC | Approval | [0] 0x000000000000…928270cc [1] 0x000000000000…94d8cfd0 data: 0x000000000000000000…00000000 |
| 0xb191d2…453297 | 4 mins agoTue, 18 Aug 2026 00:12:01 UTC | Approval | [0] 0x000000000000…928270cc [1] 0x000000000000…94d8cfd0 data: 0x000000000000000000…d4f89e40 |
| 0xb191d2…453297 | 4 mins agoTue, 18 Aug 2026 00:12:01 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…928270cc data: 0x000000000000000000…d4f89e40 |
| 0xb191d2…453297 | 4 mins agoTue, 18 Aug 2026 00:12:01 UTC | Transfer | [0] 0x000000000000…273eab7f [1] 0x000000000000…e622fd7a data: 0x000000000000000000…f7818d00 |
| 0xb191d2…453297 | 4 mins agoTue, 18 Aug 2026 00:12:01 UTC | Transfer | [0] 0x000000000000…f39cfce0 [1] 0x000000000000…273eab7f data: 0x000000000000000000…5d362800 |
| 0x588eda…e6dc84 | 4 mins agoTue, 18 Aug 2026 00:12:01 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…e9710aaa data: 0x000000000000000000…50347778 |
| 0x276c65…a69f8e | 4 mins agoTue, 18 Aug 2026 00:11:59 UTC | Approval | [0] 0x000000000000…f39cfce0 [1] 0x000000000000…e35fd727 data: 0xffffffffffffffffff…ffffffff |
| 0xe1295c…03e93c | 4 mins agoTue, 18 Aug 2026 00:11:36 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…02cb74d4 data: 0x000000000000000000…0197b983 |
| 0x4b99da…002214 | 6 mins agoTue, 18 Aug 2026 00:09:32 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…a3c2e08d data: 0x000000000000000000…51fc782b |
| 0x5b2e9d…a5a43c | 7 mins agoTue, 18 Aug 2026 00:08:13 UTC | Transfer | [0] 0x000000000000…e34466bb [1] 0x000000000000…43e40951 data: 0x000000000000000000…b011f9a3 |