Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
biggybank is a drop-in library that lets you refill a Bitcoin address from console using:
It displays the address and its QR code in the terminal:
It also gives you a link to ButtonPage which lets you refill the address using Moneybutton.
Install both bsv and biggybank
npm install --save bsv
npm install --save biggybank
Biggybank returns a string which includes the QRCode and other messages
const biggybank = require('biggybank')
biggybank({ address: "19HxigV4QyBv3tHpQVcUEQyq1pzZVdoAut" }, function(err, str) {
console.log(str)
})
Add a simple message to the header:
const biggybank = require('biggybank')
biggybank({
address: "19HxigV4QyBv3tHpQVcUEQyq1pzZVdoAut",
message: "Send money to b.bitdb.network"
}, function(err, str) {
console.log(str)
})
const biggybank = require('biggybank')
biggybank({ endpoint: "https://bchsvexplorer.com" }, function(err, str) {
console.log(str)
})
You can also manually construct moneybutton payload:
const biggybank = require('biggybank')
biggybank({
payload: {
to: "19HxigV4QyBv3tHpQVcUEQyq1pzZVdoAut",
editable: true,
currency: "USD",
type: "tip"
},
message: "Send money to b.bitdb.network"
}, function(err, str) {
console.log(str)
})
FAQs
refill a bitcoin address from console
The npm package biggybank receives a total of 0 weekly downloads. As such, biggybank popularity was classified as not popular.
We found that biggybank 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.