- Get the Web Extension
-
- If you want to interact with web applications you'll need one of the web extensions as well.
-
-
-
- Once you've installed the extension, simply open it up by clicking the little Scatter icon on your browser's toolbar ( top right ) and click "Link with Scatter"
-
-
-
@@ -92,7 +66,6 @@
const STEPS = {
IDENTITY:'identity',
BLOCKCHAIN:'blockchain',
- EXTENSION:'extension'
};
export default {
@@ -156,10 +129,10 @@
}
const account = availableAccounts[0];
await AccountService.addAccount(account, this);
- this.step = STEPS.EXTENSION;
+ this.finish();
} else {
await AccountService.addAccountFromKeypair(this.keypair, network, this);
- this.step = STEPS.EXTENSION;
+ this.finish();
}
};
@@ -173,15 +146,10 @@
else await importAccount();
},
skipBlockchain(){
- // this.finish();
- this.step = STEPS.EXTENSION;
+ this.finish();
},
finish(){
- PopupService.push(Popup.prompt(`You're ready to go!`,
- `You've set up your Identity and imported a blockchain account. Enjoy Scatter.`,
- "check", "Continue", () => {
- this.$router.push({name:RouteNames.IDENTITIES});
- }));
+ this.$router.push({name:RouteNames.IDENTITIES});
},
...mapActions([
Actions.SET_SCATTER