mnscript
number VentzCoin.GetSupply()
Description ​
Gets the amount of VentzCoin in circulation
Returns ​
number
- The number of VentzCoin in circulation
Example ​
msc
using Console;
using VentzCoin;
using Util;
// Prints the current supply of VentzCoin to the console.
number supply = VentzCoin.GetSupply();
Console.WriteLine("VC Supply: "..supply);