Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
blockcypher-unofficial
Advanced tools
wrapper around blockcypher's api. Conforms to a standard derived from bitcoind
you can install the npm module here
for a guide to the standard that this module follows please check out here
Also check out the comments above each function in lib if you want a deeper understanding of what each function expects and returns.
here is a quick example call to each function in the library
##Usage
//simply require the npm module at the top of the file you are using it on. var blockcypher = require('blockcypher-unoffical');
//for more information about the arguments, check the comment stubs above each function in addresses.js in lib.
blockcypher({network: "mainnet"}).Addresses.Summary(addresses, callback); blockcypher({network: "testnet"}).Addresses.Summary(addresses, callback);
blockcypher({network: "mainnet"}).Addresses.Unspents(addresses, callback); blockcypher({network: "testnet"}).Addresses.Unspents(addresses, callback);
blockcypher({network: "mainnet"}).Addresses.Transactions(addresses, callback); blockcypher({network: "testnet"}).Addresses.Transactions(addresses, callback);
//for more information about the arguments, check the comment stubs above each function in blocks.js in lib.
blockcypher({network: "mainnet"}).Blocks.Get(blockids, callback); blockcypher({network: "testnet"}).Blocks.Get(blockids, callback);
blockcypher({network: "mainnet"}).Blocks.Latest(callback); blockcypher({network: "testnet"}).Blocks.Latest(callback);
blockcypher({network: "mainnet"}).Blocks.Propogate(blockhex, callback); blockcypher({network: "testnet"}).Blocks.Propogate(blockhex, callback);
blockcypher({network: "mainnet"}).Blocks.Transactions(blockids, callback); blockcypher({network: "testnet"}).Blocks.Transactions(blockids, callback);
//for more information about the arguments, check the comment stubs above each function in transactions.js in lib.
blockcypher({network: "mainnet"}).Transactions.Get(txids, callback); blockcypher({network: "testnet"}).Transactions.Get(txids, callback);
blockcypher({network: "mainnet"}).Transactions.Latest(callback); blockcypher({network: "testnet"}).Transactions.Latest(callback);
blockcypher({network: "mainnet"}).Transactions.Outputs(outputs, callback); blockcypher({network: "testnet"}).Transactions.Outputs(outputs, callback);
blockcypher({network: "mainnet"}).Transactions.Status(txids, callback); blockcypher({network: "testnet"}).Transactions.Status(txids, callback);
blockcypher({network: "mainnet"}).Transactions.Propogate(transactionHex, callback); blockcypher({network: "testnet"}).Transactions.Propogate(transactionHex, callback);
FAQs
wrapper around blockcypher's api. Conforms to a standard derived from bitcoind and common-blockchain
The npm package blockcypher-unofficial receives a total of 5 weekly downloads. As such, blockcypher-unofficial popularity was classified as not popular.
We found that blockcypher-unofficial 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.