In `account-selectors` place the following code under `commCoreModule.initializeCryptoAccount()`:
```
const [notificationsOneTimeKeys, notificationsPrekey, userOneTimeKeys] =
await Promise.all([
commCoreModule.getNotificationsOneTimeKeys(2),
commCoreModule.getNotificationsPrekey(),
commCoreModule.getUserOneTimeKeys(10),
]);
console.log(notificationsOneTimeKeys);
console.log(notificationsPrekey);
console.log(userOneTimeKeys);
```
Build the app, log-in and examine content of keys logged to the console.