### Fetch META Token Supply via JSON-RPC Source: https://docs.metadao.fi/token/details Use this command to query the supply of the META token using the `getTokenSupply` method on a Solana RPC endpoint. Ensure you replace the placeholder with the actual RPC URL if needed. ```bash curl https://api.mainnet-beta.solana.com \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"getTokenSupply","params":["METAwkXcqyXKy1AtsSgJ8JiUHwGCafnZL38n3vYmeta"]}' ``` -------------------------------- ### Calculate NAV per Token Source: https://docs.metadao.fi/how-launches-work/bid-wall Formula for determining the Net Asset Value per token, which adjusts dynamically based on the treasury balance and tokens already purchased. ```text treasury_balance + lp_quote + bid_wall_quote NAV per token = ------------------------------------------------ tokens_at_launch - tokens_bought_by_bid_wall ``` -------------------------------- ### Calculate Bid Wall Funding Source: https://docs.metadao.fi/how-launches-work/bid-wall Formulas to determine the total funding allocated to the bid wall based on the total amount raised and the minimum goal. ```text Bid Wall = Total Raised - (20% × Total Raised + Min Goal) ``` ```text Bid Wall = 80% × Total Raised - Min Goal ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.