From 235c11c2c2839ca95e826f543c31ae711f014861 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Fri, 11 Feb 2022 17:55:34 +0100 Subject: [PATCH] fix(core): update --- readme.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/readme.md b/readme.md index 93fc666..af314a6 100644 --- a/readme.md +++ b/readme.md @@ -27,6 +27,35 @@ Platform support | [![Supports Windows 10](https://badgen.net/badge/supports%20W Use TypeScript for best in class intellisense +```typescript +import { expect, tap } from '@pushrocks/tapbundle'; +import * as helium from '../ts/index'; + +let testHelium: helium.Helium; + +tap.test('should create a valid helium class', async () => { + testHelium = new helium.Helium(); + expect(testHelium).toBeInstanceOf(helium.Helium); +}); + +tap.test('should create and update a wallet', async () => { + const wallet = await testHelium.addWalletByAddress('13L7By1BmboTx1hRUuN3MtMjNmTFaWj5C6EbRZCK2sceaRCWZev'); + expect(wallet).toBeInstanceOf(helium.HeliumWallet); + console.log(wallet.earningsHnt24h); + console.log(wallet.earningsHnt7d); + console.log(wallet.earningsHnt14d); + console.log(wallet.earningsHnt30d); + console.log(wallet.hotspots); + + expect(wallet.hotspots[0]).toBeInstanceOf(helium.HeliumHotspot); + + // you can call wallet.update() at any time to update all wallet information + // also wallet.hotspots[0].update() will only update an individual hotspot; +}) + +tap.start(); +``` + ## Contribution We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)