https://github.com/grondilu/base58-raku
Satoshi Nakamoto's binary-to-text encoding in Raku
https://github.com/grondilu/base58-raku
base58 bitcoin
Last synced: 6 months ago
JSON representation
Satoshi Nakamoto's binary-to-text encoding in Raku
- Host: GitHub
- URL: https://github.com/grondilu/base58-raku
- Owner: grondilu
- License: mit
- Created: 2022-04-14T05:24:10.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-28T11:05:25.000Z (7 months ago)
- Last Synced: 2025-03-29T23:41:14.962Z (6 months ago)
- Topics: base58, bitcoin
- Language: Raku
- Homepage:
- Size: 16.6 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Base58Satoshi Nakamoto's binary-to-text encoding in Raku. No checksum.
## Synopis
```raku
use Base58;say Base58::encode "Hello World!"; # 2NEpo7TZRRrLZSi2U
say Base58::decode "2NEpo7TZRRrLZSi2U"; # Blob[uint8]:0x<48 65 6C 6C 6F 20 57 6F 72 6C 64 21>say Base58::encode blob8.new: ^10; # 1kA3B2yGe2z4
```