send request on creating account

This commit is contained in:
Felicio Mununga 2022-06-30 16:34:50 +02:00
parent 1b89774ad1
commit d4fb2e4d95
No known key found for this signature in database
GPG Key ID: 0EB8D75C775AB6F1
2 changed files with 4 additions and 5 deletions

View File

@ -91,11 +91,10 @@ class Client {
await this.waku.stop()
}
public createAccount = (): Account => {
public createAccount = async (): Promise<Account> => {
this.account = new Account()
// TODO: joining part of creation of an account
// await this.community.requestToJoin()
await this.community.requestToJoin()
return this.account
}

View File

@ -5,8 +5,8 @@ import type { Account } from '@status-im/js'
export const useAccount = () => {
const { client, account, dispatch } = useProtocol()
const createAccount = () => {
const account = client.createAccount()
const createAccount = async () => {
const account = await client.createAccount()
dispatch({ type: 'SET_ACCOUNT', account })
// TODO: save account