toSigFromHex static method

Signature toSigFromHex(
  1. String hex
)

Implementation

static Signature toSigFromHex(String hex) {
  return toSigFromBytes(Utilities.hexToBytes(hex));
}