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

Fixed supply1,000,000,000 PTC
Post-launch mintingNone
FaucetNone
Transfer taxNone
BlacklistNone
Pause functionNone
Rebase logicNone
Proxy upgrade pathNone in token contract

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