(feature) Adding download metamask flow to /token
Before we display the terms checks, if the user has a local wallet, display the getmetamask component.
Cancelling it will resume the normal dialog.
1/2 discussions resolved
changed milestone to %sprint: Giddy Giraffe
mentioned in issue #1380
approved this merge request
- Resolved by Brian Hatchet
approved this merge request
added 52 commits
- ba2e6fa4...291c4e63 - 50 commits from branch
minds:master
- 57cd2896 - Merge remote-tracking branch 'upstream/master' into metamask_prompt_buy_token
- 8a71fd1b - Merge remote-tracking branch 'upstream/master' into metamask_prompt_buy_token
- ba2e6fa4...291c4e63 - 50 commits from branch
resolved all discussions
approved this merge request
127 130 async purchase() { 128 131 await this.load(); 129 132 if (this.session.isLoggedIn()) { 133 if (await this.web3Wallet.isLocal()) { 134 const action = await this.web3Wallet.setupMetamask(); 135 switch (action) { 136 case GetMetamaskComponent.ACTION_CREATE: 137 this.router.navigate(['/wallet']); - Owner
Do we want to direct them to the wallet or just continue showing the purchase screen?