Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
bitcoin-utility-belt
Advanced tools
Bitcoin Utility Belt is a client-side Bitcoin JavaScript library
I've made this project to make easy to use a lot of Bitcoin functions that you need to build a website or a NodeJS application. You can read the examples to find out how to use it! Feel free to contribute with code or a donation!
You just need to install the npm package to your project.
npm install bitcoin-utility-belt --save
Here is an example:
// import bitcoin utility belt
let belt = require("bitcoin-utility-belt");
// creating random wallets
// type: P2PK (default)
let wallet = belt.wallet.create();
console.log(wallet);
You just need to import the /dist/bitcoin-utility-belt.js
to your HTML to have access to the functions.
Here is an example:
<!-- Importing Bitcoin Utility Belt script -->
<script src="../../dist/bitcoin-utility-belt.min.js"></script>
<script>
// creating random wallets
// type: P2PK (default)
var wallet = belt.wallet.create();
console.log(wallet);
</script>
You have already a compiled version in the directory /dist
(extended and minified files).
But if you want to compile for your self run the script:
npm run build
The list below should be very easy to understand. Some of them interact (via HTTPS) with a 3rd Party Blockchain Provider (3PBP). I've made HTML and NodeJS examples, so you can understand how it works!
I'll be glad to receive new pull requests to improve this project! Feel free to contribute!
If you really liked the project and want to donate, here is the official wallet for this project.
Official Wallet: 18kXMmrDtgfeQgVmwfmygTaYLyQuVS4chK
FAQs
Bitcoin Utility Belt is a client-side Bitcoin JavaScript library
The npm package bitcoin-utility-belt receives a total of 18 weekly downloads. As such, bitcoin-utility-belt popularity was classified as not popular.
We found that bitcoin-utility-belt demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.