ReaduseQuery
useInferredTotalSupply
Read the wrapper's inferred total supply: underlying held in custody divided by rate, an upper bound on the confidential total supply, in CTTT 6-decimal units.
Import
@tokenops/sdk/testnet-faucet/reactReturn
{ data, isLoading, error, refetch }Lifecycle
ReadQuery Key
Faucet read hooks use the public constants TESTNET_FAUCET_KEY and TESTNET_FAUCET_NAMESPACE. The method segment for this hook is inferredTotalSupply.
@tokenops/sdk/testnet-faucet/react
ts
queryKey: [
"tokenops-sdk", // TESTNET_FAUCET_KEY
"testnet-faucet", // TESTNET_FAUCET_NAMESPACE
"inferredTotalSupply",
chainId ?? null,
address ? address.toLowerCase() : null,
// hook-specific args normalized: bigint -> decimal string, 0x strings -> lowercase
];Description
Read the wrapper's inferred total supply: underlying held in custody divided
by rate, an upper bound on the confidential total supply, in CTTT
6-decimal units.
Signature
@tokenops/sdk/testnet-faucet/react
ts
function useInferredTotalSupply(options?: BaseHookOptions): UseQueryResult<bigint, Error>;Example
@tokenops/sdk/testnet-faucet/react · @example
tsx
const { data: supply } = useInferredTotalSupply();Pulled directly from the hook's TSDoc block — the same snippet your IDE shows on hover.
See also
Other Read hooks in testnet faucet:
useConfidentialBalanceRead the encrypted confidential balance handle (euint64 ciphertext) for account — defaults to the connected wallet.useUnderlyingBalanceRead the plaintext underlying TokenopsTestToken (TTT) balance for account (defaults to the connected wallet), in TTT 18-decimal base units.useFaucetRateRead the decimal-conversion rate between underlying and confidential units: 1 CTTT 6-decimal unit is backed by rate TTT 18-decimal base units (10^(18-6) = 10^12).useFaucetDecimalsRead the decimals of the confidential token (CTTT) — 6.