fromSeed static method

Future<Keypair> fromSeed(
  1. List<int> seed
)

Implementation

static Future<Keypair> fromSeed(List<int> seed) async {
  return _fromEd25519HDKeyPair(await Ed25519HDKeyPair.fromSeedWithHdPath(seed: seed, hdPath: "m/44'/501'/0'/0'"));
}