From c8f708749bc1100ec4cfc7df1dff60187fa14ae8 Mon Sep 17 00:00:00 2001 From: Dylan Fiedler Date: Mon, 29 Jul 2024 10:41:28 -0600 Subject: [PATCH] chore(docs): update getBalance docs example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 35b239db..dbd4bcc3 100644 --- a/README.md +++ b/README.md @@ -286,7 +286,7 @@ const balance = await io .getBalance({ address: 'QGWqtJdLLgm2ehFWiiPzMaoFLD50CnGuzZIPEdoDRGQ', }) - .then((balance) => new mIOToken().toIO()); // convert it to IO for readability + .then((balance: number) => new mIOToken(balance).toIO()); // convert it to IO for readability ```