You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Implemented error message when trying to leave wallet without enough ada to support tokens ([PR 2783](https://github.com/input-output-hk/daedalus/pull/2783))
Copy file name to clipboardExpand all lines: README.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,7 @@ If you get SSL error when running `nix-shell` (SSL peer certificate or SSH remot
65
65
66
66
1. Run `yarn nix:selfnode` from `daedalus`.
67
67
2. Run `yarn dev` from the subsequent `nix-shell` (use `KEEP_LOCAL_CLUSTER_RUNNING` environment variable to keep the local cluster running after Daedalus exits: `KEEP_LOCAL_CLUSTER_RUNNING=true yarn dev`)
68
+
1. Alternatively: run `yarn nix:selfnode yarn dev` to achieve the same thing in a single command. Note: after `yarn dev` exits, you will still remain in the `nix-shell`.
68
69
3. Once Daedalus has started and has gotten past the loading screen run the following commands from a new terminal window if you wish to import funded wallets:
69
70
- Byron wallets: `yarn byron:wallet:importer`
70
71
- Shelley wallets: `yarn shelley:wallet:importer`
@@ -94,31 +95,37 @@ If you get SSL error when running `nix-shell` (SSL peer certificate or SSH remot
94
95
95
96
1. Run `yarn nix:mainnet` from `daedalus`.
96
97
2. Run `yarn dev` from the subsequent `nix-shell`
98
+
3. Or in one command: `yarn nix:mainnet yarn dev`
97
99
98
100
#### Flight
99
101
100
102
1. Run `yarn nix:flight` from `daedalus`.
101
103
2. Run `yarn dev` from the subsequent `nix-shell`
104
+
3. Or in one command: `yarn nix:flight yarn dev`
102
105
103
106
#### Testnet
104
107
105
108
1. Run `yarn nix:testnet` from `daedalus`.
106
109
2. Run `yarn dev` from the subsequent `nix-shell`
110
+
3. Or in one command: `yarn nix:testnet yarn dev`
107
111
108
112
#### Staging
109
113
110
114
1. Run `yarn nix:staging` from `daedalus`.
111
115
2. Run `yarn dev` from the subsequent `nix-shell`
116
+
3. Or in one command: `yarn nix:staging yarn dev`
112
117
113
118
#### Shelley QA
114
119
115
120
1. Run `yarn nix:shelley_qa` from `daedalus`.
116
121
2. Run `yarn dev` from the subsequent `nix-shell`
122
+
3. Or in one command: `yarn nix:shelley_qa yarn dev`
117
123
118
124
#### Alonzo Purple
119
125
120
126
1. Run `yarn nix:alonzo_purple` from `daedalus`.
121
127
2. Run `yarn dev` from the subsequent `nix-shell`
128
+
3. Or in one command: `yarn nix:alonzo_purple yarn dev`
0 commit comments