
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Payment protocol (BIP70) for bcoin.
const b70 = require('b70');
// Create a payment request.
const req = new b70.PaymentRequest({
version: 1,
paymentDetails: {
network: 'testnet',
paymentUrl: 'http://bcoin.io/payment',
memo: 'foobar',
time: Math.floor(Date.now() / 1000),
expires: Math.floor(Date.now() / 1000) + 3600,
outputs: [
{ value: 10000, script: Buffer.alloc(0) },
{ value: 50000, script: Buffer.alloc(0) }
],
merchantData: { foo: 'bar' }
}
});
// Sign it.
req.setChain([crt]); // Certificate Chain
req.sign(key); // DER formatted private key
// Serialize to protobuf format.
const raw = req.toRaw();
If you contribute code to this project, you are implicitly allowing your code
to be distributed under the MIT license. You are also implicitly verifying that
all code is your original work. </legalese>
See LICENSE for more info.
FAQs
BIP70 for bcoin
The npm package b70 receives a total of 9 weekly downloads. As such, b70 popularity was classified as not popular.
We found that b70 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.