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