add base58 script

This commit is contained in:
Jordan Sexton 2021-12-30 19:44:15 -06:00
parent c3d2f33594
commit e64e88691f
1 changed files with 5 additions and 0 deletions

5
base58.js Normal file
View File

@ -0,0 +1,5 @@
const base58 = require('bs58');
const key = require(process.argv[2]);
console.log(base58.encode(key));