@ar.io/sdk 2.1.0-alpha.3 → 2.1.0-alpha.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -286,7 +286,7 @@ const balance = await io
286
286
  .getBalance({
287
287
  address: 'QGWqtJdLLgm2ehFWiiPzMaoFLD50CnGuzZIPEdoDRGQ',
288
288
  })
289
- .then((balance) => new mIOToken().toIO()); // convert it to IO for readability
289
+ .then((balance: number) => new mIOToken(balance).toIO()); // convert it to IO for readability
290
290
  ```
291
291
 
292
292
  <details>