https://github.com/grondilu/raku-multiformats
multiformats in raku
https://github.com/grondilu/raku-multiformats
multiformats
Last synced: about 2 months ago
JSON representation
multiformats in raku
- Host: GitHub
- URL: https://github.com/grondilu/raku-multiformats
- Owner: grondilu
- License: mit
- Created: 2022-08-21T15:13:11.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-04T10:14:31.000Z (about 3 years ago)
- Last Synced: 2025-03-13T09:44:42.969Z (7 months ago)
- Topics: multiformats
- Language: Raku
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Multiformats in raku
See [multiformats](https://multiformats.io).
## Synopsis
```raku
use Multibase;say Multibase::encode "Hello 😄 ", :base58btc; # zStV1DL6DB8sfxsZ
say Multibase::encode "bonjour 😉 ", :base16upper; # F626F6E6A6F757220F09F988920say Multibase::decode("MYnllIPCfkYsg").decode("utf8"); # bye 👋
```