From 139e230598c0d24a7c5dbb5d964fa81b46918fe9 Mon Sep 17 00:00:00 2001 From: satyawikananda Date: Sun, 9 Aug 2020 12:26:52 +0800 Subject: [PATCH] :memo: Update readme --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 739afa6..b6c4b70 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,13 @@ let getUnreadHistory = denovo.getUnreadHistory() getUnreadHistory.then((data) => console.log(data)) ``` +* To get data wallet transaction, you can use getWalletTrans function + +```js +let getWalletTrans = denovo.getWalletTrans(1, 10) +getWalletTrans.then((data) => console.log(data)) +``` + * To logout from your ovo account, you can use logout function ```js @@ -100,6 +107,7 @@ deno run --allow-net ./example/index.ts | `getRefBank` | ✔ | | `getAllNotification` | ✔ | | `getUnreadHistory` | ✔ | +| `getWalletTransaction` | ✔ | | `logout` | ✔ | | `generateTrxId` | ✖ | | `transferOvo` | ✖ |