Live Backing Check
Total QUSD in circulation across all supported chains. The reserve pool is held 1:1 in the banking partners listed on the About page.
- USD
Refresh Live Data
Contracts
Any third party can call totalSupply() on any of these contracts to verify the live supply.
QVTX Chain 42000
0x25667cdfE3061bA43d885E993e7f9320f762Bfe7
RPC: http://203.161.33.24:8555
BSC
0x8D986C1308A461e3C1908a8a615Cb167B56a1414
RPC: https://bsc-dataseed1.binance.org
Arbitrum
0x04321b4Dd2A87dc285E51Fb809acF23D5ca18E17
RPC: https://arb1.arbitrum.io/rpc
Base
0x02DAE538b3Cf726c04990520454Dd7AD42550b3F
RPC: https://base-mainnet.public.blastapi.io
Independent Verification Script
Run this Python script with web3.py to read the total supply yourself:
from web3 import Web3
# QVTX Chain 42000 example
w3 = Web3(Web3.HTTPProvider("http://203.161.33.24:8555"))
contract = w3.eth.contract(
address="0x25667cdfE3061bA43d885E993e7f9320f762Bfe7",
abi=BRIDGEABLE_ABI
)
supply = contract.functions.totalSupply().call()
print(f"QUSD supply: {supply / 1e6}")
Reserve Attestation
Every mint and redemption creates a ByteID cascade. The current live supply is pulled from the same RPCs used by the QVTX Oracle. For reserve account details, see the Reserve Pool Security section.