addressFromRawSeed method

Future<AddressIconData> addressFromRawSeed(
  1. int ss58, {
  2. CryptoType cryptoType = CryptoType.sr25519,
  3. String derivePath = '',
  4. required String rawSeed,
})

get address and avatar from rawSeed.

Implementation

Future<AddressIconData> addressFromRawSeed(int ss58,
    {CryptoType cryptoType = CryptoType.sr25519,
    String derivePath = '',
    required String rawSeed}) async {
  final addressInfo = await service!.addressFromRawSeed(ss58,
      cryptoType: cryptoType, derivePath: derivePath, rawSeed: rawSeed);
  return addressInfo;
}