MCPcopy Create free account
hub / github.com/ccxt/ccxt / Base58ToBinary

Method Base58ToBinary

java/lib/src/main/java/io/github/ccxt/base/Encode.java:104–107  ·  view source on GitHub ↗
(Object pt)

Source from the content-addressed store, hash-verified

102
103 public static byte[] base58ToBinary(Object pt) { return Base58ToBinary(pt); }
104 public static byte[] Base58ToBinary(Object pt) {
105 String s = (String) pt;
106 return base58Decode(s);
107 }
108
109 // Simple Base58 (Bitcoin alphabet) decoder
110 private static final String B58_ALPHABET = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";

Callers 2

base58ToBinaryMethod · 0.95
base58ToBinaryMethod · 0.95

Calls 1

base58DecodeMethod · 0.95

Tested by

no test coverage detected