MCPcopy Index your code
hub / github.com/ccxt/ccxt / base16ToBinary

Method base16ToBinary

java/lib/src/main/java/io/github/ccxt/base/Encode.java:27–30  ·  view source on GitHub ↗
(Object str2)

Source from the content-addressed store, hash-verified

25 // ----------------------------
26
27 public static Object base16ToBinary(Object str2) {
28 String s = (String) str2;
29 return convertHexStringToByteArray(s);
30 }
31
32 public static byte[] convertHexStringToByteArray(String hexString) {
33 if (hexString.length() % 2 != 0) {

Callers 14

base16ToBinaryMethod · 0.95
hashMessageMethod · 0.45
orderMessageMethod · 0.45
cancelOrderRequestMethod · 0.45
cancelAllOrdersMethod · 0.45
encodeWithdrawMessageMethod · 0.45
actionHashMethod · 0.45
retrieveCredentialsMethod · 0.45
hashOrderMessageMethod · 0.45
hashMessageMethod · 0.45
createOrderMethod · 0.45
editOrderMethod · 0.45

Calls 1

Tested by

no test coverage detected