PoT-O RFC Implementation Mapping
This page ties the PoT-O-related Tribechain RPC RFCs to their concrete code locations and running services. It is intended as a practical guide for developers who want to validate the RFCs against live implementations.
TW-RPC-001 — PoT-O Core (PoT-O V2)
Specification
- RFC document:
/public/PoT-OV2 - High-level docs:
/pot-o/,/pot-o/how-it-works - API reference:
/pot-o/api-reference(backed byopenapi/pot-o.yaml)
- RFC document:
Code
- Off-chain validator:
gateway.tribewarez.com/testnet.rpc.gateway.tribewarez.com/pot-o-validator/ - Consensus logic:
pot-o-validator/mining/src/pot_o.rs,pot-o-validator/mining/src/challenge.rs,pot-o-validator/mining/src/neural_path.rs,pot-o-validator/mining/src/mml_path.rs - Tensor engine and ESP compat:
pot-o-validator/ai3-lib/ - Solana program:
gateway.tribewarez.com/testnet.rpc.gateway.tribewarez.com/programs/tribewarez-pot-o/src/lib.rs
- Off-chain validator:
Services
- PoT-O validator HTTP API (testnet):
https://pot.rpc.gateway.tribewarez.com(see/health,/status,/challenge,/submit) - Solana RPC gateway:
https://testnet-solana.rpc.gateway.tribewarez.com - Status dashboard:
https://status.rpc.gateway.tribewarez.com(PoT-O panels)
- PoT-O validator HTTP API (testnet):
TW-RPC-003 — Staking (PoT-O V3)
Specification
- RFC document:
/public/PoT-OV3 - DeFi docs:
/defi/staking - Program docs:
/programs/tribewarez-staking
- RFC document:
Code
- Solana program:
gateway.tribewarez.com/testnet.rpc.gateway.tribewarez.com/programs/tribewarez-staking/src/lib.rs - Off-chain integrations:
pot-o-validator/extensions/src/defi.rs,pot-o-validator/extensions/src/pool_strategy.rs
- Solana program:
Services
- DeFi staking UI:
https://defi.tribewarez.com(staking views) - Status dashboard staking metrics:
https://status.rpc.gateway.tribewarez.com(staking section)
- DeFi staking UI:
TW-RPC-004 — Vault / Treasury (PoT-O V4)
Specification
- RFC document:
/public/PoT-OV4 - DeFi docs:
/defi/vault - Program docs:
/programs/tribewarez-vault
- RFC document:
Code
- Solana program:
gateway.tribewarez.com/testnet.rpc.gateway.tribewarez.com/programs/tribewarez-vault/src/lib.rs
- Solana program:
Services
- DeFi vault UI:
https://defi.tribewarez.com(vault views) - Treasury metrics and proposals:
https://status.rpc.gateway.tribewarez.com(vault/treasury section)
- DeFi vault UI:
TW-RPC-005 — PQC, Tor/Onion, Mesh (PoT-O V5)
Specification
- RFC document:
/public/PoT-OV5 - Infrastructure docs:
/infrastructure/
- RFC document:
Code
- PQC signature integration:
pot-o-validator/coreandpot-o-validator/src/(viaProofAuthoritytrait; see TW-RPC-005 for details) - Tor/overlay configuration: Docker and infra scripts in
gateway.tribewarez.com/testnet.rpc.gateway.tribewarez.com/and thetw-web3-infra-stackreferenced there
- PQC signature integration:
Services
- Tor/onion endpoints (where configured):
*.onionaddresses forpot.rpc.gateway.tribewarez.comand the Solana RPC gateway - Status dashboard PQC/Tor widgets:
https://status.rpc.gateway.tribewarez.com(PQC/Tor/mesh section)
- Tor/onion endpoints (where configured):
Non-Normative Applications
Several applications consume PoT-O-related tokens or signals and are useful for validating the effect of these RFCs at the application layer:
- TribeWarez Terminal — command-line / web terminal for interacting with validators and programs (see
/apps/terminal). - DeFi Portal — swapping, staking, and vault UIs (see
/apps/defi-portal). - Numerology apps — example consumer dApps (see
/apps/numerology-warsand/apps/mystic-numbers). - Hub — ecosystem overview (see
/apps/hub).
These are not standards by themselves but serve as concrete, testable integrations of the PoT-O RFC series.