Ledger Supply
GET /v2/ledger/supply
Get the current supply reported by the ledger.
Packages
Node.js
Install
npm install algosdk --save
Usage
import { Algodv2 } from "algosdk";
const client = new Algodv2( "", "https://testnet-api.algonode.cloud", 443 );const result = await client.supply().do();
Algosdk Documentation Learn more at the official documentation for algosdk
Coming Soon!
Algokit Documentation Learn more at the official documentation for algokit
import { AlgodClient } from '@awesome-algorand/algod-fetch';
const client = new AlgodClient();const result = await client.public.getSupply();
Algo-fetch Documentation Learn more at the experimental documentation for algo-fetch
React
Install
npm install @awesome-algorand/react-query @txnlab/use-wallet-react @tanstack/react-query algosdk --save
Usage
import { useSupply } from '@awesome-algorand/react-query';
export function SupplyViewer() { const query = useSupply();}
Tutorial Learn how to use the useSupply hook in a React application.
Install
npm install @awesome-algorand/query-core @txnlab/use-wallet-react @tanstack/react-query algosdk --save
Usage
import { useQuery } from 'react-query';import { getSupply } from '@awesome-algorand/query-core';import { useWallet } from "@txnlab/use-wallet-react";
export function SupplyViewer() { const walletManager = useWallet(); const query = useQuery(getSupply());}
Svelte [WIP]
Coming Soon!
Solid [WIP]
Coming Soon!
Vue [WIP]
Coming Soon!
Angular [WIP]
Coming Soon!