send request on creating account
This commit is contained in:
parent
7381899c13
commit
655a1a9e44
|
@ -91,11 +91,10 @@ class Client {
|
||||||
await this.waku.stop()
|
await this.waku.stop()
|
||||||
}
|
}
|
||||||
|
|
||||||
public createAccount = (): Account => {
|
public createAccount = async (): Promise<Account> => {
|
||||||
this.account = new Account()
|
this.account = new Account()
|
||||||
|
|
||||||
// TODO: joining part of creation of an account
|
await this.community.requestToJoin()
|
||||||
// await this.community.requestToJoin()
|
|
||||||
|
|
||||||
return this.account
|
return this.account
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,8 +5,8 @@ import type { Account } from '@status-im/js'
|
||||||
export const useAccount = () => {
|
export const useAccount = () => {
|
||||||
const { client, account, dispatch } = useProtocol()
|
const { client, account, dispatch } = useProtocol()
|
||||||
|
|
||||||
const createAccount = () => {
|
const createAccount = async () => {
|
||||||
const account = client.createAccount()
|
const account = await client.createAccount()
|
||||||
dispatch({ type: 'SET_ACCOUNT', account })
|
dispatch({ type: 'SET_ACCOUNT', account })
|
||||||
// TODO: save account
|
// TODO: save account
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue