Chain.seed constructor

Chain.seed(
  1. String seed
)

Create a chain based on a hex seed.

Implementation

Chain.seed(String seed) {
  var seedBytes = Uint8List.fromList(hex.decoder.convert(seed));
  root = ExtendedPrivateKey.master(seedBytes);
}