@@ -18,37 +18,36 @@ package main
1818
1919/// this file implements the wallet and rpc wallet
2020
21- import "io"
22- import "os"
23- import "fmt"
24- import "time"
25- import "sync"
26- import "strings"
27- import "strconv"
28- import "runtime"
29-
30- import "sync/atomic"
21+ import (
22+ "fmt"
23+ "io"
24+ "os"
25+ "runtime"
26+ "strconv"
27+ "strings"
28+ "sync"
29+ "sync/atomic"
30+ "time"
31+
32+ "github.com/chzyer/readline"
33+ "github.com/deroproject/derohe/config"
34+ "github.com/deroproject/derohe/globals"
35+ "github.com/deroproject/derohe/walletapi"
36+ "github.com/deroproject/derohe/walletapi/mnemonics"
37+ "github.com/docopt/docopt-go"
38+ "github.com/go-logr/logr"
39+ )
3140
3241//import "io/ioutil"
3342//import "bufio"
3443//import "bytes"
3544//import "net/http"
3645
37- import "github.com/go-logr/logr"
38-
39- import "github.com/chzyer/readline"
40- import "github.com/docopt/docopt-go"
41-
4246//import "github.com/vmihailenco/msgpack"
4347
4448//import "github.com/deroproject/derosuite/address"
4549
46- import "github.com/deroproject/derohe/config"
47-
4850//import "github.com/deroproject/derohe/crypto"
49- import "github.com/deroproject/derohe/globals"
50- import "github.com/deroproject/derohe/walletapi"
51- import "github.com/deroproject/derohe/walletapi/mnemonics"
5251
5352//import "encoding/json"
5453
7574 --restore-deterministic-wallet Restore wallet from previously saved recovery seed
7675 --electrum-seed=<recovery-seed> Seed to use while restoring wallet
7776 --socks-proxy=<socks_ip:port> Use a proxy to connect to Daemon.
78- --remote use hard coded remote daemon https://rwallet.dero.live
77+ --remote use hard coded remote daemon (node.derofoundation.org:11012)
7978 --daemon-address=<host:port> Use daemon instance at <host>:<port> or https://domain
8079 --rpc-server Run rpc server, so wallet is accessible using api
8180 --rpc-bind=<127.0.0.1:20209> Wallet binds on this ip address and port
0 commit comments