buildHdWalletFromSeed method

  1. @SquadronMethod()
  2. @hdWalletMarshaler
Future<HdWallet> buildHdWalletFromSeed(
  1. Uint8List seed,
  2. int accountIndex
)

Implementation

@SquadronMethod()
@hdWalletMarshaler
Future<HdWallet> buildHdWalletFromSeed(Uint8List seed, int accountIndex) async =>
    HdWallet.fromSeed(seed, accountIndex: accountIndex);