{"_id":"cryptocoin-base58","_rev":"4659304","name":"cryptocoin-base58","description":"Base 58 encoding / decoding","dist-tags":{"latest":"0.1.0"},"maintainers":[{"name":"jrichy1991","email":""}],"time":{"modified":"2026-04-10T21:48:01.000Z","created":"2022-12-12T14:32:30.671Z","0.1.0":"2022-12-12T14:45:58.400Z","5.0.0":"2022-12-12T14:32:30.671Z"},"users":{},"repository":{"url":"git+https://github.com/cryptocoinjs/bs58.git","type":"git"},"versions":{"0.1.0":{"name":"cryptocoin-base58","version":"0.1.0","description":"Base 58 encoding / decoding","keywords":["base58","bitcoin","crypto","crytography","decode","decoding","encode","encoding","litecoin"],"license":"MIT","devDependencies":{"standard":"^16.0.4","tape":"^4.6.3"},"repository":{"url":"git+https://github.com/cryptocoinjs/bs58.git","type":"git"},"main":"index.js","types":"index.d.ts","scripts":{"standard":"standard","test":"npm run standard && npm run unit","unit":"tape test/index.js"},"dependencies":{"base-x":"^4.0.0"},"gitHead":"3ebc63d1254c6472a0fd1f6d416d49d8b588e380","bugs":{"url":"https://github.com/cryptocoinjs/bs58/issues"},"homepage":"https://github.com/cryptocoinjs/bs58#readme","_id":"cryptocoin-base58@0.1.0","_nodeVersion":"19.2.0","_npmVersion":"9.2.0","dist":{"shasum":"f344dadf24443279e8b10f3ca03f53ee3c2b03f3","size":2298,"noattachment":false,"key":"/cryptocoin-base58/-/cryptocoin-base58-0.1.0.tgz","tarball":"http://registry.cnpm.dingdandao.com/cryptocoin-base58/download/cryptocoin-base58-0.1.0.tgz"},"_npmUser":{"name":"jrichy1991","email":"josh1991@mail.com"},"directories":{},"maintainers":[{"name":"jrichy1991","email":""}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cryptocoin-base58_0.1.0_1670856358230_0.2696796215376107"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-12-12T14:51:40.557Z","publish_time":1670856358400,"_cnpm_publish_time":1670856358400},"5.0.0":{"name":"cryptocoin-base58","version":"5.0.0","description":"Base 58 encoding / decoding","keywords":["base58","bitcoin","crypto","crytography","decode","decoding","encode","encoding","litecoin"],"license":"MIT","devDependencies":{"standard":"^16.0.4","tape":"^4.6.3"},"repository":{"url":"git+https://github.com/cryptocoinjs/bs58.git","type":"git"},"main":"index.js","types":"index.d.ts","scripts":{"standard":"standard","test":"npm run standard && npm run unit","unit":"tape test/index.js"},"dependencies":{"base-x":"^4.0.0"},"gitHead":"3ebc63d1254c6472a0fd1f6d416d49d8b588e380","bugs":{"url":"https://github.com/cryptocoinjs/bs58/issues"},"homepage":"https://github.com/cryptocoinjs/bs58#readme","_id":"cryptocoin-base58@5.0.0","_nodeVersion":"19.2.0","_npmVersion":"9.2.0","dist":{"shasum":"081a2a8fbea3ba3a045eeb003a5f48d43dfd5663","size":2296,"noattachment":false,"key":"/cryptocoin-base58/-/cryptocoin-base58-5.0.0.tgz","tarball":"http://registry.cnpm.dingdandao.com/cryptocoin-base58/download/cryptocoin-base58-5.0.0.tgz"},"_npmUser":{"name":"jrichy1991","email":"josh1991@mail.com"},"directories":{},"maintainers":[{"name":"jrichy1991","email":""}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cryptocoin-base58_5.0.0_1670855550519_0.626423905238326"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-12-12T14:42:55.825Z","publish_time":1670855550671,"_cnpm_publish_time":1670855550671}},"readme":"bs58\n====\n\n[![build status](https://travis-ci.org/cryptocoinjs/bs58.svg)](https://travis-ci.org/cryptocoinjs/bs58)\n\nJavaScript component to compute base 58 encoding. This encoding is typically used for crypto currencies such as Bitcoin.\n\n**Note:** If you're looking for **base 58 check** encoding, see: [https://github.com/bitcoinjs/bs58check](https://github.com/bitcoinjs/bs58check), which depends upon this library.\n\n\nInstall\n-------\n\n    npm i --save bs58\n\n\nAPI\n---\n\n### encode(input)\n\n`input` must be a `Uint8Array`, `Buffer`, or an `Array`. It returns a `string`.\n\n**example**:\n\n```js\nconst bs58 = require('bs58')\n\nconst bytes = Uint8Array.from([\n    0, 60,  23, 110, 101, 155, 234,\n   15, 41, 163, 233, 191, 120, 128,\n  193, 18, 177, 179,  27,  77, 200,\n   38, 38, 129, 135\n])\nconst address = bs58.encode(bytes)\nconsole.log(address)\n// => 16UjcYNBG9GTK4uq2f7yYEbuifqCzoLMGS\n```\n\n\n### decode(input)\n\n`input` must be a base 58 encoded string. Returns a Uint8Array.\n\n**example**:\n\n```js\nconst bs58 = require('bs58')\n\nconst address = '16UjcYNBG9GTK4uq2f7yYEbuifqCzoLMGS'\nconst bytes = bs58.decode(address)\n// See uint8array-tools package for helpful hex encoding/decoding/compare tools\nconsole.log(Buffer.from(bytes).toString('hex'))\n// => 003c176e659bea0f29a3e9bf7880c112b1b31b4dc826268187\n```\n\nBrowser\n-----------\nYou can use this module in the browser. Install Browserify:\n\n```bash\nnpm install -g browserify\n```\n\nthen run:\n\n```bash\nbrowserify node_modules/bs58/index.js -o bs58.bundle.js --standalone bs58\n```\n\nHack / Test\n-----------\n\nUses JavaScript standard style. Read more:\n\n[![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard)\n\n\nCredits\n-------\n- [Mike Hearn](https://github.com/mikehearn) for original Java implementation\n- [Stefan Thomas](https://github.com/justmoon) for porting to JavaScript\n- [Stephan Pair](https://github.com/gasteve) for buffer improvements\n- [Daniel Cousens](https://github.com/dcousens) for cleanup and merging improvements from bitcoinjs-lib\n- [Jared Deckard](https://github.com/deckar01) for killing `bigi` as a dependency\n\n\nLicense\n-------\n\nMIT\n","_attachments":{},"homepage":"https://github.com/cryptocoinjs/bs58#readme","bugs":{"url":"https://github.com/cryptocoinjs/bs58/issues"},"license":"MIT"}