An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

![Sparky](https://sparky.sparrowhub.io/badge/grondilu-base58-raku?foo=bar)
# Base58

Satoshi 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
```