addressFromRawSeed method
Future<AddressIconData>
addressFromRawSeed(
- int ss58, {
- CryptoType cryptoType = CryptoType.sr25519,
- String derivePath = '',
- 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;
}