Substrate.fromSeedAndPath constructor
Substrate.fromSeedAndPath(
- List<
int> seedBytes, - dynamic path,
- SubstrateCoins coinType
Create a Substrate context from a seed, path, and coin type.
Implementation
factory Substrate.fromSeedAndPath(
List<int> seedBytes, dynamic path, SubstrateCoins coinType) {
final substrateCtx = Substrate.fromSeed(seedBytes, coinType);
return substrateCtx.derivePath(path);
}