3

The Substrate Collectables Workshop suggests at some point that the developer chain comes with a prefunded account for Alice.

Let's go into the Transfer app, and make a transaction. The default account named "Alice" is pre-funded with a ton of Units.

However, connecting Polkadot-JS to my local --dev chain does not come with an account; also the Transfer app is not visible.

no accounts available

What's the mnemonic seed for the Alice account or how to recover that account? Is there any way?

Shawn Tabrizi
  • 12,206
  • 1
  • 38
  • 69
q9f
  • 11,293
  • 8
  • 57
  • 96
  • It should be when you start the UI for the first time, that accounts Alice - Freddie are pre-populated. Have you tried clearing any cache/browser storage for this site? – Shawn Tabrizi Jul 17 '19 at 13:33
  • it's actually the first time I used chrome (because Firefox didn't work); so I don't think it's a caching issue. – q9f Jul 17 '19 at 13:37

3 Answers3

4

As mentioned in this post, the seed for Alice is //Alice, however, it's important to select the raw seed option and not the mnemonic seed.

the raw seed is //Alice.

Note, make sure to select the Schnorrkel cryptography sr25519, not Edwards ed25519. The same works for //Bob

q9f
  • 11,293
  • 8
  • 57
  • 96
2

As mentioned here Alice raw secret seed is:

bottom drive obey lake curtain smoke basket hold race lonely fit walk//Alice
Bulat
  • 301
  • 3
  • 5
0

If the dev accounts are not pre-populating in the UI check out my answer to this question: Where are accounts located in substrate-node-template?

In chain_spec.rs make sure you set your chain type to Development or Local.

Squirrel
  • 1,189
  • 12
  • 15