getKeysFromListOfStrings()
Get private key, public key and wallet address form a seed phrase written on a single Map object
Map<String, String> getKeysFromListOfStrings(List<String> seedPhrase);Name
Type
Description
import 'package:circular_api/circular_api.dart';
void main() {
final circular = CircularAPI();
final seedPhrase = ["Hello", ",", "World!"];
final keys = circular.getKeysFromListOfStrings(seedPhrase);
}{
"privateKey" : String,
"publicKey" : String,
"address" : String,
"seedPhrase" : String,
}Last updated