POSToken

About

POST Token Whitepaper

Section 17

Appendices

Supplementary materials and technical references supporting the whitepaper. Includes glossary of terms, token specifications, technical architecture details, API references, and additional documentation.

Appendix Contents

Appendix A: Glossary of Terms

TermDefinition
POSTPostal Token - The primary utility and governance token of POST Token with a total supply of 21 billion.
PSDRPostal Special Drawing Rights - A stablecoin pegged to the IMF SDR, used for cross-border settlements between postal operators.
SDRSpecial Drawing Rights - An international reserve asset created by the IMF, representing a basket of major currencies (USD, EUR, CNY, JPY, GBP).
UPUUniversal Postal Union - A specialized agency of the United Nations that coordinates postal policies among 192 member nations.
Terminal DuesPayments made by the originating postal operator to the destination operator for delivering international mail.
PoTProof of Transfer - Cryptographic proof generated when an item is transferred between postal operators.
PoDProof of Delivery - Cryptographic proof generated when an item is successfully delivered to the recipient.
DPoSDelegated Proof of Stake - Consensus mechanism where token holders vote for validators who secure the network.
ValidatorA node operator (typically a postal operator) that participates in block production and network consensus.
VestingThe process by which tokens become available to holders over time, preventing immediate selling pressure.
AirdropDistribution of tokens to eligible recipients, such as country allocations or user rewards.
TVLTotal Value Locked - The total value of assets deposited in DeFi protocols or liquidity pools.
LPLiquidity Provider - Users who deposit assets into liquidity pools to enable trading.
AMMAutomated Market Maker - Smart contract-based trading mechanism that uses liquidity pools instead of order books.
KYCKnow Your Customer - Identity verification process required for financial services.
AMLAnti-Money Laundering - Regulations and procedures to prevent money laundering.

Appendix B: Token Specifications

Appendix C: Technical Architecture

Network Specifications

BlockchainCosmos SDK-based sovereign chain
ConsensusTendermint BFT (DPoS)
Block Time~6 seconds
FinalityInstant (single block)
TPS10,000+ transactions per second
Smart ContractsCosmWasm (Rust-based)
InteroperabilityIBC Protocol (Cosmos ecosystem)
Token StandardCW-20 (fungible), CW-721 (NFT)
Validator Set192 active validators (one per UPU member)
Minimum Stake1M POST for validators

Security Features

  • Multi-signature governance:

    7-of-11 multisig for critical operations
  • HSM key management:

    FIPS 140-2 Level 3 certified
  • Audit trail:

    Complete transaction history on-chain
  • Emergency pause:

    1-hour response capability
  • Bug bounty:

    Up to $1M rewards for vulnerabilities
  • Insurance:

    $100M coverage for smart contract failures

Smart Contract Addresses (Mainnet)

POST Token:       post1qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq...
PSDR Token:       post1psdrrrrrrrrrrrrrrrrrrrrrrrrrrrrr...
Gateway:          post1gatewayyyyyyyyyyyyyyyyyyyyyyyy...
Vesting:          post1vestinggggggggggggggggggggggg...
Governance:       post1governanceeeeeeeeeeeeeeeeeee...
Treasury:         post1treasuryyyyyyyyyyyyyyyyyyyyyy...

Note: Full contract addresses will be published upon mainnet launch.

Appendix D: API Reference

The POST Token API provides RESTful endpoints for integrating with the network. Base URL: https://api.post.network/v1

EndpointMethodDescription
/api/v1/transfer
POST
Initiate a cross-border transfer
/api/v1/settlement
POST
Settle terminal dues between operators
/api/v1/rate
GET
Get current POST/PSDR exchange rate
/api/v1/balance/:address
GET
Get token balance for an address
/api/v1/transaction/:id
GET
Get transaction status and details
/api/v1/operator/:code
GET
Get postal operator information
/api/v1/validate
POST
Validate a transaction for swap eligibility
/api/v1/vesting/:country
GET
Get country vesting allocation status

Example: Initiate Transfer

POST /api/v1/transfer
Content-Type: application/json
Authorization: Bearer <api_key>

{
  "from_operator": "USPS",
  "to_operator": "DEUTSCHE_POST",
  "amount": "1000.00",
  "currency": "PSDR",
  "transaction_id": "PKG-2026-0001-ABC123",
  "recipient": {
    "name": "John Doe",
    "address": "123 Main St, Berlin, Germany"
  }
}

Appendix E: Key Calculations

Appendix F: References & Resources

Appendix K: Vesting Contract Specification

Complete technical specification for the Country Airdrop Vesting Contract, which enforces the Controlled Release Mechanism described in Section 5 (Tokenomics).

Contract Architecture

┌─────────────────────────────────────────────────────────────────┐
│                    VESTING CONTROLLER                           │
├─────────────────────────────────────────────────────────────────┤
│   ┌───────────────┐  ┌───────────────┐  ┌───────────────┐      │
│   │   COUNTRY     │  │   VESTING     │  │   NETWORK     │      │
│   │   REGISTRY    │  │   SCHEDULE    │  │   LIMITS      │      │
│   │               │  │               │  │               │      │
│   │  192 entries  │  │  4-year       │  │  Daily/Weekly │      │
│   │  Lock amounts │  │  Linear       │  │  Monthly/Year │      │
│   │  Sold amounts │  │  25%/year     │  │  Global caps  │      │
│   └───────────────┘  └───────────────┘  └───────────────┘      │
└─────────────────────────────────────────────────────────────────┘

Note: Full Rust implementation code available in the POST Token GitHub repository under /contracts/vesting.

Document Information

Section

Appendices (A-F, K)

Version

1.1.0

Status

COMPLETE

Last Updated

February 3, 2026