We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1a6504 commit 1e73d44Copy full SHA for 1e73d44
README.md
@@ -2,7 +2,9 @@
2
A Java implementation of Multibase
3
4
## Usage
5
-Multihash m = Multihash.fromBase58("QmatmE9msSfkKxoffpHwNLNKgwZG8eT9Bud6YoPab52vpy");
+byte[] data = ...
6
+String encoded = Multibase.encode(Multibase.Base.Base58BTC, data);
7
+byte[] decoded = Multibase.decode(encoded);
8
9
## Compilation
10
To compile just run ant.
0 commit comments