helium-js icon indicating copy to clipboard operation
helium-js copied to clipboard

Official TypeScript packages for interacting with the Helium blockchain

Results 43 helium-js issues
Sort by recently updated
recently updated
newest added

How is the HNT required for 35000 DC calculated?

This issue provides visibility into Renovate updates and their statuses. [Learn more](https://docs.renovatebot.com/key-concepts/dashboard/) ## Open These updates have all been created already. Click a checkbox below to force a retry/rebase of...

can't find the example in source code ? has it been implemented?

const { Keypair, Address } = require ("@helium/crypto") const { PaymentV1, Transaction } = require ("@helium/transactions") const { Client } = require ("@helium/http") make_transaction(); async function make_transaction(){ const client =...

While working on the issue https://github.com/helium/explorer/issues/216, I found out that `hasMore` attribute of the list is always set to true even when the list is empty and also when there...

``` let block = await await client.blocks.get(blockHeight); let res = await block.transactions.list({ filterTypes: ['payment_v2','payment_v1' ], // this filterTypes is invalid }) ``` also when i use limit:10, but the rerturn...

I think we should make UnknownTransactions have all camelCased fields so we can better prepare for when the type is fully supported in helium-js, and avoid re-writing any frontend code...

helium-js will need to support `poc_receipts_v2`

Hi all, I am curious why with the following code, I can execute the transaction of transferring 1 HNT to another with a transaction hash returned successfully even the wallet...

Hi, I created a KeyPair from: let keypair = await Keypair.makeRandom(); then I have the pubilcKey, privateKey and address saved, later on I need to restore the keypair object so...