QVTX Services

Every service in the QVTX money-transfer stack — click any for full details, instructions, API/CLI, examples, and its honest status.

Wallet API + UI LIVE (public)

HTTP/JSON API and a browser wallet over the whole stack. Runs as a systemd service on the box public IP.

qvtx_api.py

QVTX Core — All Networks LIVE

Every network built NATIVELY into Quanti — its OWN API access point and native function set (SWIFT gpi/ISO-20022, NACHA ACH, Mastercard, Visa Direct, SEPA, UK FPS, Stripe, the EVM chains, Wise). 13 networks, 70 functions, each with a weighted on-chain ByteID. Routing goes through Quanti and through that network's settlement bridge.

qvtx_core.py

Open Banking — Bank Catalog LIVE

Ingests the open-banking-tracker dataset (banks + aggregators) and makes every bank a routable QVTX network through the shared OPENBANKING bridge. Laptop-Claude curates the real bank list (from the country spreadsheet) and pushes JSON profiles incl. each bank's API-key acquisition steps.

qvtx_openbanking.py

Wise Core Integration LIVE

The QVTX core integrated with all Wise API functions (loading, add-money, balances, transfers, recipients, FX, banking/system). Each function carries a real weighted quaternary ByteID; Quanti evaluates which are wired/tested/available; a mapper resolves any needed transaction to the right function(s). Every other network (SWIFT/ACH/SEPA/FPS/MasterCard) is reached through the Wise access point using the same method.

qvtx_wise_core.py

Member Onboarding LIVE

One call brings a member online: mints the universal account, opens the clearing account, runs screening, and assigns a KYC tier (which sets their limits).

qvtx_onboard.py

KYC / Compliance + Limits LIVE

Tiered limits that gate every money motion, plus per-member screening result and an append-only audit trail.

qvtx_kyc.py

Universal Addresses LIVE

Mints one universal QVTX address per member — a standard EVM account valid on every QVTX chain (20232, 42000) and any EVM network. Deterministically derived from a single master seed, so every address is recoverable.

qvtx_addr.py

Clearing House Ledger LIVE

The double-entry settlement ledger. QVTX is the clearing house: value actually moves here. Intra-house transfers settle instantly; the house always nets to zero.

qvtx_clearing.py

Settlement Bridges LIVE on 42000 (1/12 on 20232)

One settlement contract per system type. Custodial bridges hold & release real native value; attestation bridges record an external rail's settled leg on-chain (replay-proof).

qvtx-bridge/QvtxSettlementBridge.sol

Settlement Orchestration LIVE

Ties the stack into one flow: verify -> bridge attest/move -> clearing ledger -> fee. Auto-rolls-back the ledger if the on-chain attest fails.

qvtx_settle.py

Network Adapters LIVE

One uniform interface — create / lookup / verify — across every system type (5 crypto + 7 fiat).

qvtx_network.py

Exchange + Conversion Gene LIVE

Real-time conversion to/from ANY monetary type, and the canonical exchange that posts value at the time of strike (on-chain).

qvtx_exchange.py

Valuation (auto-derived price) LIVE

The canonical, defensible QVTX price: Fair = (R+L+U)/S; Floor = R/S. Only real, verifiable inputs count.

qvtx_valuation.py

Fee Service LIVE

Transparent fee schedule captured as a real ledger leg into a house FEES account on every motion.

qvtx_fees.py

Reconciliation + Settlement Batch LIVE

Compares the clearing ledger against on-chain bridge totals per system, reports deltas, and anchors a net-settlement root on-chain.

qvtx_reconcile.py

Webhooks / Notifications LIVE

Fires events on settlement (and logs them immutably). Subscribers get an HTTP POST per matching event.

qvtx_hooks.py

See also: API reference · valuation method.