Technical memo
OpenZeppelin ERC-20, fixed supply, verified source.
This memo summarizes the mainnet token contract. It is not a third-party audit.
Implementation
PTC is implemented as PTCMainnet, inheriting OpenZeppelin ERC20, ERC20Permit, and Ownable2Step. The constructor requires a nonzero treasury address, mints exactly 1,000,000,000 PTC to the treasury, and sets the treasury as owner.
Verified source: Etherscan code page
Supply And Transfer Properties
Owner Powers
The token inherits Ownable2Step, but the mainnet contract does not define custom owner-only functions after deployment. The owner can transfer ownership using the standard two-step flow, but cannot mint, pause, blacklist, seize, or change balances through this contract.
Known Technical Risks
- No independent third-party audit has been completed yet.
- Treasury custody is currently concentrated in one treasury wallet.
- Initial liquidity is very small.
- Market data sites may not index the pool until activity improves.