Instructions for retrieving user balances from the ZBD Rewards SDK.
GetBalance()
ZBDController.Instance.GetBalance(callback=> { if (callback.success) { // the users balance in satoshis (not millisatoshis) Debug.Log(callback.balance); } else { Debug.LogError("get balance error " + callback.message); } });
Was this page helpful?