
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
virtualbox-js
Advanced tools
SDK For Interacting With VirtualCoin In NodeJS
Installation
npm install virtualbox-js
Initialization
const vc = require("virtualbox-js")
let virtualbox = new vc.VirtualBox()
//Initializing With Current Address
virtualbox.init("virtualcoin.glitch.me")
Checking Balance
virtualbox.Balance("address")
.then(balance => console.log(balance))
.catch(err => console.log(err))
//Outputs In Number
Getting A Transaction By Id
virtualbox.GetTxById(id)
.then(tx => console.log(tx))
.catch(err => console.log(err))
//Outputs A Valid Transaction If Exists As An Object
//Outputs A Blank Transaction If It Doesn't Exist As An Object
Getting A List Of Received Txs
virtualbox.ReceivedTx("address")
.then(txs => console.log(txs))
.catch(err => console.log(err))
//Outputs null If No Transactions Were Made Before
//Outputs An Array With A List Of Transactions
Getting A List Of Sent Txs
virtualbox.SentTx("address")
.then(txs => console.log(txs))
.catch(err => console.log(err))
//Outputs null If No Transactions Were Made Before
//Outputs An Array With A List Of Transactions
Creating A Wallet
virtualbox.CreateWallet()
.then(wallet => console.log(wallet))
.catch(err => console.log(err))
//Outputs An Object With Mnemonic, Privatekey and Publickey (address)
Checking If A Transaction Is An Contract
virtualbox.IsContract(id)
.then(iscontract => console.log(iscontract))
.catch(err => console.log(err))
//Outputs True If It Is An Contract, Else False
Sending A Transaction
FAQs
SDK For Interacting With VirtualCoin In NodeJS
We found that virtualbox-js 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.