
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
micro-base58
Advanced tools
Fast and beautiful base58 encoder without dependencies.
npm install micro-base58
Usage: base58(text[, alphabet]).
Included alphabets: ipfs/btc (default), xrp, xmr, flickr
First argument could be string, Buffer or UInt8Array.
const base58 = require('micro-base58');
base58('hello world'); // => 'StV1DL6CwTryKyV'
new Uint8Array(Array.from('hello world').map(c => c.charCodeAt(0))) // Browser
// => 'StV1DL6CwTryKyV'
base58('hello world', 'xrp'); // => 'StVrDLaUATiyKyV'
We don't include base58check because it requires sha256. You can implement it like this:
function base58check(array) {
const checksum = sha256(sha256(array)).slice(0, 4);
const data = new Uint8Array(array.length + 4);
data.set(array);
data.set(checksum, array.length)
return base58(data);
}
MIT License (c) 2020, Paul Miller (https://paulmillr.com).
See LICENSE file.
FAQs
Fast and beautiful base58 encoder without dependencies.
The npm package micro-base58 receives a total of 762 weekly downloads. As such, micro-base58 popularity was classified as not popular.
We found that micro-base58 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
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.