> For the complete documentation index, see [llms.txt](https://circular-protocol.gitbook.io/standard-apis/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://circular-protocol.gitbook.io/standard-apis/api-docs/dart/getkeysfromlistofstrings.md).

# getKeysFromListOfStrings()

**Method signature**

```dart
Map<String, String> getKeysFromListOfStrings(List<String> seedPhrase);
```

**Parameters**

| Name       | Type          | Description                                                                  |
| ---------- | ------------- | ---------------------------------------------------------------------------- |
| seedPhrase | List\<String> | The seedphrase that you want to use for generating the keys in a list format |

**Example**

```dart
import 'package:circular_api/circular_api.dart';

void main() {
  final circular = CircularAPI();
  final seedPhrase = ["Hello", ",", "World!"];

  final keys = circular.getKeysFromListOfStrings(seedPhrase);
}
```

**Result**

The result will be a Map with these keys:

```dart
{
  "privateKey" : String,
  "publicKey"  : String,
  "address"    : String,
  "seedPhrase" : String,
}
```
