Every service in the QVTX money-transfer stack — click any for full details, instructions, API/CLI, examples, and its honest status.
HTTP/JSON API and a browser wallet over the whole stack. Runs as a systemd service on the box public IP.
qvtx_api.pyEvery 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.pyIngests 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.pyThe 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.pyOne 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.pyTiered limits that gate every money motion, plus per-member screening result and an append-only audit trail.
qvtx_kyc.pyMints 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.pyThe 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.pyOne 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.solTies 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.pyOne uniform interface — create / lookup / verify — across every system type (5 crypto + 7 fiat).
qvtx_network.pyReal-time conversion to/from ANY monetary type, and the canonical exchange that posts value at the time of strike (on-chain).
qvtx_exchange.pyThe canonical, defensible QVTX price: Fair = (R+L+U)/S; Floor = R/S. Only real, verifiable inputs count.
qvtx_valuation.pyTransparent fee schedule captured as a real ledger leg into a house FEES account on every motion.
qvtx_fees.pyCompares the clearing ledger against on-chain bridge totals per system, reports deltas, and anchors a net-settlement root on-chain.
qvtx_reconcile.pyFires events on settlement (and logs them immutably). Subscribers get an HTTP POST per matching event.
qvtx_hooks.pySee also: API reference · valuation method.