// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
/// @title PartyToken
/// @notice Minimal fixed-supply ERC20 launched by PartyFactory via CREATE2.
/// @dev No owner, no mint, no transfer hooks. The full supply is minted once to
/// `recipient` (the factory) in the constructor. The caller-bound CREATE2
/// salt is mined off-chain so this token sorts below the paired asset (token0).
contract PartyToken is ERC20 {
/// @notice IPFS (or https) URI of the token's metadata JSON.
string public metadataUri;
constructor(
string memory name_,
string memory symbol_,
uint256 supply_,
address recipient_,
string memory metadataUri_
) ERC20(name_, symbol_) {
metadataUri = metadataUri_;
_mint(recipient_, supply_);
}
/// @notice Alias for `metadataUri`, mirroring the ERC721 tokenURI convention.
function tokenURI() external view returns (string memory) {
return metadataUri;
}
}[
{
"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": "metadataUri_",
"type": "string",
"internalType": "string"
}
],
"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": "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": "decimals",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint8",
"internalType": "uint8"
}
],
"stateMutability": "view"
},
{
"name": "metadataUri",
"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": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "tokenURI",
"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"
}
]0x6080604090808252600480361015610015575f80fd5b5f3560e01c91826306fdde031461046557508163095ea7b3146103bd57816318160ddd1461039f57816323b872dd146102ad578163313ce567146102925781633c130d901461023457816370a082311461025c57816377a4d5591461023457816395d89b411461011557508063a9059cbb146100e55763dd62ed3e14610099575f80fd5b346100e157806003193601126100e1576020906100b4610567565b6100bc61057d565b9060018060a01b038091165f5260018452825f2091165f528252805f20549051908152f35b5f80fd5b50346100e157806003193601126100e15760209061010e610104610567565b6024359033610698565b5160018152f35b82346100e1575f3660031901126100e1578051905f835460018160011c906001831692831561022a575b6020938484108114610217578388529081156101fb57506001146101a7575b505050829003601f01601f191682019267ffffffffffffffff841183851017610194575082918261019092528261053d565b0390f35b604190634e487b7160e01b5f525260245ffd5b5f878152929350837f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b8385106101e7575050505083010184808061015e565b8054888601830152930192849082016101d1565b60ff1916878501525050151560051b840101905084808061015e565b602289634e487b7160e01b5f525260245ffd5b91607f169161013f565b82346100e1575f3660031901126100e15761019090610251610593565b90519182918261053d565b82346100e15760203660031901126100e1576020906001600160a01b03610281610567565b165f525f8252805f20549051908152f35b82346100e1575f3660031901126100e1576020905160128152f35b9050346100e15760603660031901126100e1576102c8610567565b6102d061057d565b906044359260018060a01b038216805f526001602052855f20335f52602052855f2054915f19831061030b575b60208761010e888888610698565b85831061037357811561035d57331561034757505f9081526001602090815286822033835281529086902091859003909155829061010e6102fd565b6024905f885191634a1406b160e11b8352820152fd5b6024905f88519163e602df0560e01b8352820152fd5b8651637dc7a0d960e11b8152339181019182526020820193909352604081018690528291506060010390fd5b82346100e1575f3660031901126100e1576020906002549051908152f35b82346100e157806003193601126100e1576103d6610567565b60243590331561044f576001600160a01b03169081156104395760209350335f5260018452825f20825f52845280835f205582519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925843392a35160018152f35b8251634a1406b160e11b81525f81860152602490fd5b825163e602df0560e01b81525f81860152602490fd5b83346100e1575f3660031901126100e1575f60035460018160011c9060018316928315610533575b6020938484108114610217578388529081156101fb57506001146104dd57505050829003601f01601f191682019267ffffffffffffffff841183851017610194575082918261019092528261053d565b60035f908152929350837fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b83851061051f575050505083010184808061015e565b805488860183015293019284908201610509565b91607f169161048d565b602060409281835280519182918282860152018484015e5f828201840152601f01601f1916010190565b600435906001600160a01b03821682036100e157565b602435906001600160a01b03821682036100e157565b604051905f60055460018160011c906001831692831561068e575b602093848410811461067a5783885290811561065e5750600114610608575b505050829003601f01601f1916820167ffffffffffffffff8111838210176105f457604052565b634e487b7160e01b5f52604160045260245ffd5b60055f908152929350837f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b83851061064a57505050508301015f80806105cd565b805488860183015293019284908201610634565b60ff1916878501525050151560051b84010190505f80806105cd565b634e487b7160e01b5f52602260045260245ffd5b91607f16916105ae565b916001600160a01b0380841692831561075a571692831561074257825f525f60205260405f2054908282106107105750817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92602092855f525f84520360405f2055845f5260405f20818154019055604051908152a3565b60405163391434e360e21b81526001600160a01b03919091166004820152602481019190915260448101829052606490fd5b60405163ec442f0560e01b81525f6004820152602490fd5b604051634b637e8f60e11b81525f6004820152602490fdfea2646970667358221220d17c4219ae719cdd67293c7cc1df6199db324657aed7aeb144d3027dcf6fac5364736f6c63430008190033
| 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 | |||||||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x7926a1…80b584 | 48 mins agoTue, 18 Aug 2026 00:46:42 UTC | Transfer | [0] 0x000000000000…f320eb29 [1] 0x000000000000…6454321c data: 0x000000000000000000…325a970a |
| 0x05bbcc…57a14e | 55 mins agoTue, 18 Aug 2026 00:39:33 UTC | Transfer | [0] 0x000000000000…a9f8e4bf [1] 0x000000000000…6454321c data: 0x000000000000000000…7860b231 |
| 0x05bbcc…57a14e | 55 mins agoTue, 18 Aug 2026 00:39:33 UTC | Approval | [0] 0x000000000000…a9f8e4bf [1] 0x000000000000…bafad669 data: 0x000000000000000000…7860b231 |
| 0x05bbcc…57a14e | 55 mins agoTue, 18 Aug 2026 00:39:33 UTC | Transfer | [0] 0x000000000000…559a400f [1] 0x000000000000…a9f8e4bf data: 0x000000000000000000…7860b231 |
| 0x34ce44…841391 | 1 hr agoTue, 18 Aug 2026 00:21:43 UTC | Transfer | [0] 0x000000000000…6454321c [1] 0x000000000000…82ea0c12 data: 0x000000000000000000…47cdc6d0 |
| 0x6ef2e4…25c9cd | 2 hrs agoMon, 17 Aug 2026 23:23:25 UTC | Transfer | [0] 0x000000000000…5611baec [1] 0x000000000000…6454321c data: 0x000000000000000000…48c4a84f |
| 0x6df309…98f6b9 | 2 hrs agoMon, 17 Aug 2026 22:57:03 UTC | Transfer | [0] 0x000000000000…d317f5c4 [1] 0x000000000000…6454321c data: 0x000000000000000000…4a1010d4 |
| 0x5c92f7…0b7615 | 3 hrs agoMon, 17 Aug 2026 21:51:55 UTC | Transfer | [0] 0x000000000000…a9f8e4bf [1] 0x000000000000…6454321c data: 0x000000000000000000…4cace83a |
| 0x5c92f7…0b7615 | 3 hrs agoMon, 17 Aug 2026 21:51:55 UTC | Approval | [0] 0x000000000000…a9f8e4bf [1] 0x000000000000…bafad669 data: 0x000000000000000000…4cace83a |
| 0x5c92f7…0b7615 | 3 hrs agoMon, 17 Aug 2026 21:51:55 UTC | Transfer | [0] 0x000000000000…547b773b [1] 0x000000000000…a9f8e4bf data: 0x000000000000000000…4cace83a |
| 0x9c8ec1…b86e3f | 3 hrs agoMon, 17 Aug 2026 21:51:55 UTC | Transfer | [0] 0x000000000000…a9f8e4bf [1] 0x000000000000…6454321c data: 0x000000000000000000…f66f445f |
| 0x9c8ec1…b86e3f | 3 hrs agoMon, 17 Aug 2026 21:51:55 UTC | Approval | [0] 0x000000000000…a9f8e4bf [1] 0x000000000000…bafad669 data: 0x000000000000000000…f66f445f |
| 0x9c8ec1…b86e3f | 3 hrs agoMon, 17 Aug 2026 21:51:55 UTC | Transfer | [0] 0x000000000000…d3850451 [1] 0x000000000000…a9f8e4bf data: 0x000000000000000000…f66f445f |
| 0x3309bc…e7231c | 3 hrs agoMon, 17 Aug 2026 21:51:52 UTC | Transfer | [0] 0x000000000000…c8aebb4f [1] 0x000000000000…6454321c data: 0x000000000000000000…9ca737ba |
| 0x3309bc…e7231c | 3 hrs agoMon, 17 Aug 2026 21:51:52 UTC | Transfer | [0] 0x000000000000…6ecee0ed [1] 0x000000000000…c8aebb4f data: 0x000000000000000000…9ca737ba |
| 0xd8b3c1…b459a8 | 3 hrs agoMon, 17 Aug 2026 21:51:52 UTC | Approval | [0] 0x000000000000…6ecee0ed [1] 0x000000000000…e1a4f53d data: 0xffffffffffffffffff…ffffffff |
| 0x676b3d…fa8fb7 | 4 hrs agoMon, 17 Aug 2026 21:28:19 UTC | Transfer | [0] 0x000000000000…ec4fff4f [1] 0x000000000000…96694462 data: 0x000000000000000000…b79cd6ac |
| 0x676b3d…fa8fb7 | 4 hrs agoMon, 17 Aug 2026 21:28:19 UTC | Transfer | [0] 0x000000000000…d113f996 [1] 0x000000000000…ec4fff4f data: 0x000000000000000000…b79cd6ac |
| 0x676b3d…fa8fb7 | 4 hrs agoMon, 17 Aug 2026 21:28:19 UTC | Transfer | [0] 0x000000000000…6454321c [1] 0x000000000000…d113f996 data: 0x000000000000000000…b79cd6ac |
| 0x645bd0…e41c5f | 4 hrs agoMon, 17 Aug 2026 21:25:47 UTC | Transfer | [0] 0x000000000000…d113f996 [1] 0x000000000000…6454321c data: 0x000000000000000000…a40f6da6 |
| 0x645bd0…e41c5f | 4 hrs agoMon, 17 Aug 2026 21:25:47 UTC | Transfer | [0] 0x000000000000…ec4fff4f [1] 0x000000000000…d113f996 data: 0x000000000000000000…a40f6da6 |
| 0x645bd0…e41c5f | 4 hrs agoMon, 17 Aug 2026 21:25:47 UTC | Approval | [0] 0x000000000000…ec4fff4f [1] 0x000000000000…b66337b5 data: 0x000000000000000000…a40f6da6 |
| 0x645bd0…e41c5f | 4 hrs agoMon, 17 Aug 2026 21:25:47 UTC | Transfer | [0] 0x000000000000…03d9f84a [1] 0x000000000000…ec4fff4f data: 0x000000000000000000…a40f6da6 |
| 0x645bd0…e41c5f | 4 hrs agoMon, 17 Aug 2026 21:25:47 UTC | Approval | [0] 0x000000000000…03d9f84a [1] 0x000000000000…f1c315be data: 0x000000000000000000…a40f6da6 |
| 0x5a9841…a1deb3 | 4 hrs agoMon, 17 Aug 2026 21:23:21 UTC | Transfer | [0] 0x000000000000…7f3c1d22 [1] 0x000000000000…6454321c data: 0x000000000000000000…b72c3f39 |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xd8b3c1…b459a8 | Approve | 39,173,910 | 3 hrs agoMon, 17 Aug 2026 21:51:52 UTC | 0xc792…e0ed | IN | Department of Price Discovery | $0.000 ETH | 0.00000092 | |
| 0x915b7c…1bccdc | Approve | 39,150,082 | 4 hrs agoMon, 17 Aug 2026 21:12:02 UTC | 0xefa6…4b66 | IN | Department of Price Discovery | $0.000 ETH | 0.00000093 | |
| 0x7bc686…1c7ddf | Transfer | 39,145,015 | 4 hrs agoMon, 17 Aug 2026 21:03:34 UTC | 0xe4c8…1d22 | IN | Department of Price Discovery | $0.000 ETH | 0.00000093 | |
| 0x5e7343…864e28 | Transfer | 39,144,016 | 4 hrs agoMon, 17 Aug 2026 21:01:53 UTC | 0x5cca…3c92 | IN | Department of Price Discovery | $0.000 ETH | 0.00000094 | |
| 0x62f8f9…594b68 | Transfer | 39,142,555 | 4 hrs agoMon, 17 Aug 2026 20:59:27 UTC | 0x0924…33f5 | IN | Department of Price Discovery | $0.000 ETH | 0.00000094 | |
| 0x4baf5a…9ea748 | Transfer | 39,141,697 | 4 hrs agoMon, 17 Aug 2026 20:58:01 UTC | 0xbc91…29cc | IN | Department of Price Discovery | $0.000 ETH | 0.00000093 | |
| 0x1cf5aa…743f24 | Approve | 39,138,524 | 4 hrs agoMon, 17 Aug 2026 20:52:42 UTC | 0x880d…2d15 | IN | Department of Price Discovery | $0.000 ETH | 0.00000093 | |
| 0x9f306b…fa9b34 | Approve | 39,135,644 | 4 hrs agoMon, 17 Aug 2026 20:47:54 UTC | 0xe449…f985 | IN | Department of Price Discovery | $0.000 ETH | 0.00000093 | |
| 0xd8c7bb…ff6997 | Approve | 39,135,643 | 4 hrs agoMon, 17 Aug 2026 20:47:54 UTC | 0xb683…6bf4 | IN | Department of Price Discovery | $0.000 ETH | 0.00000093 | |
| 0x6c8e76…826698 | Approve | 39,135,480 | 4 hrs agoMon, 17 Aug 2026 20:47:38 UTC | 0xa1e7…e3e5 | IN | Department of Price Discovery | $0.000 ETH | 0.00000094 | |
| 0xb911d6…cd60ba | Approve | 39,134,914 | 4 hrs agoMon, 17 Aug 2026 20:46:41 UTC | 0x878e…c1a4 | IN | Department of Price Discovery | $0.000 ETH | 0.00000095 | |
| 0x7f851e…14c894 | Approve | 39,134,690 | 4 hrs agoMon, 17 Aug 2026 20:46:18 UTC | 0xea6c…29ea | IN | Department of Price Discovery | $0.000 ETH | 0.00000093 | |
| 0xf6e36f…0b6718 | Approve | 39,131,302 | 4 hrs agoMon, 17 Aug 2026 20:40:39 UTC | 0xdcbe…5df0 | IN | Department of Price Discovery | $0.000 ETH | 0.00000092 | |
| 0x3b825c…9471a3 | Approve | 39,131,268 | 4 hrs agoMon, 17 Aug 2026 20:40:35 UTC | 0x7264…2d70 | IN | Department of Price Discovery | $0.000 ETH | 0.00000092 | |
| 0x295448…10d557 | Approve | 39,131,068 | 4 hrs agoMon, 17 Aug 2026 20:40:15 UTC | 0x7f43…2622 | IN | Department of Price Discovery | $0.000 ETH | 0.00000092 | |
| 0x7625c8…8bfc57 | Approve | 39,130,778 | 4 hrs agoMon, 17 Aug 2026 20:39:46 UTC | 0xe8fb…0451 | IN | Department of Price Discovery | $0.000 ETH | 0.00000092 | |
| 0x07bd70…1ad2da | Approve | 39,130,776 | 4 hrs agoMon, 17 Aug 2026 20:39:46 UTC | 0x765b…773b | IN | Department of Price Discovery | $0.000 ETH | 0.00000092 | |
| 0xb5a985…499b7e | Approve | 39,130,665 | 4 hrs agoMon, 17 Aug 2026 20:39:35 UTC | 0x19a3…7c44 | IN | Department of Price Discovery | $0.000 ETH | 0.00000092 | |
| 0xc70abd…018daf | Approve | 39,130,589 | 4 hrs agoMon, 17 Aug 2026 20:39:27 UTC | 0x2008…39b7 | IN | Department of Price Discovery | $0.000 ETH | 0.00000092 | |
| 0xd747de…2e18ff | Approve | 39,130,533 | 4 hrs agoMon, 17 Aug 2026 20:39:21 UTC | 0x71d7…ed97 | IN | Department of Price Discovery | $0.000 ETH | 0.00000093 | |
| 0x435d39…71eb6c | Approve | 39,129,395 | 4 hrs agoMon, 17 Aug 2026 20:37:28 UTC | 0x3bdc…180a | IN | Department of Price Discovery | $0.000 ETH | 0.00000093 | |
| 0x80ab08…918c3e | Approve | 39,129,111 | 4 hrs agoMon, 17 Aug 2026 20:37:00 UTC | 0xd02d…bd07 | IN | Department of Price Discovery | $0.000 ETH | 0.00000092 | |
| 0x7ff815…d24a12 | Approve | 39,129,111 | 4 hrs agoMon, 17 Aug 2026 20:37:00 UTC | 0xe626…af6e | IN | Department of Price Discovery | $0.000 ETH | 0.00000092 | |
| 0x82602c…428dd3 | Approve | 39,128,877 | 4 hrs agoMon, 17 Aug 2026 20:36:36 UTC | 0x8463…b63f | IN | Department of Price Discovery | $0.000 ETH | 0.00000093 | |
| 0xd6bede…77e968 | Approve | 39,127,973 | 5 hrs agoMon, 17 Aug 2026 20:35:05 UTC | 0x255b…14c3 | IN | Department of Price Discovery | $0.000 ETH | 0.00000093 |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 39,120,304 | 5 hrs agoMon, 17 Aug 2026 20:22:16 UTC | 0xb2e8ab…21615a | CREATE2 | launch | 0x626c…b3d4 | IN | 0x075d…ce0b | 0 ETH |