-
Notifications
You must be signed in to change notification settings - Fork 156
/
walletsetup.go
387 lines (339 loc) · 10.5 KB
/
walletsetup.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
// Copyright (c) 2014-2015 The btcsuite developers
// Copyright (c) 2015-2024 The Decred developers
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
package main
import (
"bufio"
"context"
"fmt"
"io"
"os"
"path/filepath"
"strings"
"time"
"decred.org/dcrwallet/v5/errors"
"decred.org/dcrwallet/v5/internal/loader"
"decred.org/dcrwallet/v5/internal/prompt"
"decred.org/dcrwallet/v5/wallet"
_ "decred.org/dcrwallet/v5/wallet/drivers/bdb"
"decred.org/dcrwallet/v5/wallet/udb"
"decred.org/dcrwallet/v5/walletseed"
"github.com/decred/dcrd/chaincfg/v3"
"github.com/decred/dcrd/dcrutil/v4"
"github.com/decred/dcrd/hdkeychain/v3"
"github.com/decred/dcrd/txscript/v4/stdaddr"
"github.com/decred/dcrd/wire"
)
// networkDir returns the directory name of a network directory to hold wallet
// files.
func networkDir(dataDir string, chainParams *chaincfg.Params) string {
netname := chainParams.Name
// Be cautious of v2+ testnets being named only "testnet".
switch chainParams.Net {
case 0x48e7a065: // testnet2
netname = "testnet2"
case wire.TestNet3:
netname = "testnet3"
}
return filepath.Join(dataDir, netname)
}
// displaySimnetMiningAddrs shows simnet mining addresses for the passed seed.
// If imported is false, then only the SLIP0044 address is shown (because, by
// default, the wallet is upgraded to the SLIP0044 coin type).
func displaySimnetMiningAddrs(seed []byte, imported bool) error {
params := chaincfg.SimNetParams()
ctLegacyKeyPriv, ctSLIP0044KeyPriv, acctKeyLegacyPriv, acctKeySLIP0044Priv, err := udb.HDKeysFromSeed(seed, params)
if err != nil {
return err
}
ctLegacyKeyPriv.Zero()
ctSLIP0044KeyPriv.Zero()
defer acctKeyLegacyPriv.Zero()
defer acctKeySLIP0044Priv.Zero()
keys := map[string]*hdkeychain.ExtendedKey{
"legacy": acctKeyLegacyPriv,
"SLIP0044": acctKeySLIP0044Priv,
}
// If imported is false, then the wallet was created with a new random
// seed and is automatically upgraded to the SLIP0044 coin type,
// therefore the legacy key is not applicable.
if !imported {
delete(keys, "legacy")
}
fmt.Println("")
fmt.Println("NOTE: only start the wallet after at least 2 blocks (i.e. blocks at heights 1")
fmt.Println("and 2) have been mined in the backing dcrd node, otherwise account and address")
fmt.Println("discovery may not work correctly.")
fmt.Println("")
for _, ct := range []string{"SLIP0044", "legacy"} {
acctKeyPriv := keys[ct]
if acctKeyPriv == nil {
continue
}
xpub := acctKeyPriv.Neuter()
branch, err := xpub.Child(udb.ExternalBranch)
if err != nil {
return err
}
child, err := branch.Child(0)
if err != nil {
return err
}
pkh := dcrutil.Hash160(child.SerializedPubKey())
addr, err := stdaddr.NewAddressPubKeyHashEcdsaSecp256k1V0(pkh,
params)
if err != nil {
return err
}
fmt.Printf("Mining address for the %s coin type: %s\n", ct, addr)
}
fmt.Println("")
return nil
}
// createWallet prompts the user for information needed to generate a new wallet
// and generates the wallet accordingly. The new wallet will reside at the
// provided path. The bool passed back gives whether or not the wallet was
// restored from seed, while the []byte passed is the private password required
// to do the initial sync.
func createWallet(ctx context.Context, cfg *config) error {
dbDir := networkDir(cfg.AppDataDir.Value, activeNet.Params)
loader := loader.NewLoader(activeNet.Params, dbDir, cfg.EnableVoting,
cfg.GapLimit, cfg.WatchLast, cfg.AllowHighFees, cfg.RelayFee.Amount,
cfg.AccountGapLimit, cfg.DisableCoinTypeUpgrades, !cfg.Mixing,
cfg.ManualTickets, cfg.MixSplitLimit, cfg.dial)
var privPass, pubPass, seed []byte
var imported bool
var importedAccountNames []string
var importedAccountXpubs []*hdkeychain.ExtendedKey
var err error
var birthState *udb.BirthdayState
c := make(chan struct{}, 1)
go func() {
defer func() { c <- struct{}{} }()
r := bufio.NewReader(os.Stdin)
// Start by prompting for the private passphrase. This function
// prompts whether any configured private passphrase should be
// used.
privPass, err = prompt.PrivatePass(r, []byte(cfg.Pass))
if err != nil {
return
}
// Ascertain the public passphrase. This will either be a value
// specified by the user or the default hard-coded public passphrase if
// the user does not want the additional public data encryption.
// This function also prompts whether the configured public data
// passphrase should be used.
pubPass, err = prompt.PublicPass(r, privPass,
[]byte(wallet.InsecurePubPassphrase), []byte(cfg.WalletPass))
if err != nil {
return
}
// Ascertain the wallet generation seed. This will either be an
// automatically generated value the user has already confirmed or a
// value the user has entered which has already been validated.
// There is no config flag to set the seed.
seed, imported, err = prompt.Seed(r)
if err != nil {
return
}
// Additional optional prompts are added after the seed. If
// any of them error reading input with EOF, assume the
// default answers. This allows scripts e.g. the tmux simnet
// script which provide scripted input to create wallets to
// continue working.
// Ask for a birthday if the wallet was created from seed. If
// the wallet is new the birthday is now. Add a day buffer to be safe.
if imported {
var (
birthday *time.Time
birthblock *uint32
)
birthday, birthblock, err = prompt.Birthday(r)
if errors.Is(err, io.EOF) {
err = nil
}
if err != nil {
return
}
if birthday != nil {
birthState = &udb.BirthdayState{
Time: *birthday,
SetFromTime: true,
}
}
if birthblock != nil {
birthState = &udb.BirthdayState{
Height: *birthblock,
SetFromHeight: true,
}
}
} else {
birthState = &udb.BirthdayState{
Time: time.Now().Add(time.Hour * -24),
SetFromTime: true,
}
}
if birthState == nil {
// Set the genesis block as the birthday for imported
// wallets that did not set a birthday or birthblock.
birthState = &udb.BirthdayState{
SetFromHeight: true,
}
}
// Prompt for any additional xpubs to import as watching-only accounts.
importedAccountNames, importedAccountXpubs, err = prompt.ImportedAccounts(
r, activeNet.Params)
if errors.Is(err, io.EOF) {
err = nil
return
}
}()
select {
case <-ctx.Done():
return ctx.Err()
case <-c:
if err != nil {
return err
}
}
fmt.Println("Creating the wallet...")
w, err := loader.CreateNewWallet(ctx, pubPass, privPass, seed)
if err != nil {
return err
}
// Upgrade to the SLIP0044 cointype if this is a new (rather than
// user-provided) seed.
if !imported {
err := w.UpgradeToSLIP0044CoinType(ctx)
if err != nil {
return err
}
}
// Import any provided account xpubs
for i, name := range importedAccountNames {
xpub := importedAccountXpubs[i]
err := w.ImportXpubAccount(ctx, name, xpub)
if err != nil {
return err
}
}
// Display a mining address when creating a simnet wallet.
if cfg.SimNet {
err := displaySimnetMiningAddrs(seed, imported)
if err != nil {
return err
}
}
if err := w.SetBirthState(ctx, birthState); err != nil {
return err
}
err = loader.UnloadWallet()
if err != nil {
return err
}
fmt.Println("The wallet has been created successfully.")
return nil
}
// createSimulationWallet is intended to be called from the rpcclient
// and used to create a wallet for actors involved in simulations.
func createSimulationWallet(ctx context.Context, cfg *config) error {
// Simulation wallet password is 'password'.
privPass := wallet.SimulationPassphrase
// Public passphrase is the default.
pubPass := []byte(wallet.InsecurePubPassphrase)
// Generate a random seed.
seed, err := hdkeychain.GenerateSeed(hdkeychain.RecommendedSeedLen)
if err != nil {
return err
}
netDir := networkDir(cfg.AppDataDir.Value, activeNet.Params)
// Write the seed to disk, so that we can restore it later
// if need be, for testing purposes.
seedStr := walletseed.EncodeMnemonic(seed)
err = os.WriteFile(filepath.Join(netDir, "seed"), []byte(seedStr), 0644)
if err != nil {
return err
}
// Create the wallet.
dbPath := filepath.Join(netDir, walletDbName)
fmt.Println("Creating the wallet...")
// Create the wallet database backed by bolt db.
db, err := wallet.CreateDB("bdb", dbPath)
if err != nil {
return err
}
defer db.Close()
// Create the wallet.
err = wallet.Create(ctx, db, pubPass, privPass, seed, activeNet.Params)
if err != nil {
return err
}
fmt.Println("The wallet has been created successfully.")
return nil
}
// promptHDPublicKey prompts the user for an extended public key.
func promptHDPublicKey(reader *bufio.Reader) (string, error) {
fmt.Print("Enter HD wallet public key: ")
keyString, err := reader.ReadString('\n')
if err != nil {
return "", err
}
keyStringTrimmed := strings.TrimSpace(keyString)
return keyStringTrimmed, nil
}
// createWatchingOnlyWallet creates a watching only wallet using the passed
// extended public key.
func createWatchingOnlyWallet(ctx context.Context, cfg *config) error {
// Get the public key.
reader := bufio.NewReader(os.Stdin)
pubKeyString, err := promptHDPublicKey(reader)
if err != nil {
return err
}
// Ask if the user wants to encrypt the wallet with a password.
pubPass, err := prompt.PublicPass(reader, []byte{},
[]byte(wallet.InsecurePubPassphrase), []byte(cfg.WalletPass))
if err != nil {
return err
}
netDir := networkDir(cfg.AppDataDir.Value, activeNet.Params)
// Create the wallet.
dbPath := filepath.Join(netDir, walletDbName)
fmt.Println("Creating the wallet...")
// Create the wallet database backed by bolt db.
db, err := wallet.CreateDB("bdb", dbPath)
if err != nil {
return err
}
defer db.Close()
err = wallet.CreateWatchOnly(ctx, db, pubKeyString, pubPass, activeNet.Params)
if err != nil {
errOS := os.Remove(dbPath)
if errOS != nil {
fmt.Println(errOS)
}
return err
}
fmt.Println("The watching only wallet has been created successfully.")
return nil
}
// checkCreateDir checks that the path exists and is a directory.
// If path does not exist, it is created.
func checkCreateDir(path string) error {
if fi, err := os.Stat(path); err != nil {
if os.IsNotExist(err) {
// Attempt data directory creation
if err = os.MkdirAll(path, 0700); err != nil {
return errors.Errorf("cannot create directory: %s", err)
}
} else {
return errors.Errorf("error checking directory: %s", err)
}
} else {
if !fi.IsDir() {
return errors.Errorf("path '%s' is not a directory", path)
}
}
return nil
}