BalanceOf
BalanceOf returns the current point balance of addr (0 if never claimed).
Command
gnokey query vm/qeval -remote "https://rpc.gno.land" -data "gno.land/r/moul/x/daily/faucet/v0.BalanceOf()"
Result
Package faucet is a toy points faucet realm for the gno.land sapphire testnet.
Any caller may Claim() 100 points, but only once per cooldown window of 100 blocks. Cooldown is enforced deterministically via runtime.ChainHeight() — no real clocks, no RNG. Per-caller balance and last-claim height live in an avl.Tree so Render iterates in deterministic (address-sorted) order.
BalanceOf returns the current point balance of addr (0 if never claimed).
gnokey query vm/qeval -remote "https://rpc.gno.land" -data "gno.land/r/moul/x/daily/faucet/v0.BalanceOf()"