Bitcoin Forum

Bitcoin => Development & Technical Discussion => Topic started by: zororaka on April 21, 2020, 07:24:01 AM



Title: Search Module Javscript for Wallet
Post by: zororaka on April 21, 2020, 07:24:01 AM
Does anyone know the simple npmjs wallet module (generate public-private key wallet, check balance and send cryptocurrency) for cryptocurrency Bitcoin and Monero? please help to share the URL if anyone knows :)

Because if I look at their respective sites, the application is rather broad. Which even though I only need a few functions.


Title: Re: Search Module Javscript for Wallet
Post by: bitaps on April 21, 2020, 04:04:09 PM
Take a look at https://www.npmjs.com/package/jsbtc.js

almost no dependencies
Crypto secp256k1 + wasm.
Implemented: bip32, bip39, bip44, bip49, bip84, bip141.
NIST random generation tests on the fly for entropy. Shamir's secret sharing for mnemonic.


Title: Re: Search Module Javscript for Wallet
Post by: zororaka on April 24, 2020, 04:18:51 PM
oh thanks for the advice, it's very useful for me to be able to learn it.


Title: Re: Search Module Javscript for Wallet
Post by: hatshepsut93 on April 26, 2020, 04:01:37 PM
https://github.com/bitcoinjs/bitcoinjs-lib

Afaik this is the biggest and most maintained Bitcoin library for Javascript, and I saw it used in the wild many times. I even briefly used it myself for a small personal project, and found it pretty simple to use. They also give some important warning in their readme about using Bitcoin with Javascript, so definitely check that out.