-
Notifications
You must be signed in to change notification settings - Fork 8
/
go.mod
33 lines (28 loc) · 1.21 KB
/
go.mod
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
module github.com/thetatoken/thetasubchain
require (
github.com/bgentry/speakeasy v0.1.0
github.com/ethereum/go-ethereum v1.10.16
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/gorilla/mux v1.8.0
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d
github.com/mattn/go-isatty v0.0.12
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.4.2
github.com/spf13/cobra v0.0.5
github.com/spf13/viper v1.5.0
github.com/stretchr/testify v1.7.0
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
github.com/thetatoken/theta v0.0.0
github.com/thetatoken/theta/common v0.0.0
github.com/thetatoken/theta/rpc/lib/rpc-codec/jsonrpc2 v0.0.0
github.com/ybbus/jsonrpc v1.1.1
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
)
replace github.com/thetatoken/theta v0.0.0 => ../theta
replace github.com/thetatoken/theta/common v0.0.0 => ../theta/common
replace github.com/thetatoken/theta/rpc/lib/rpc-codec/jsonrpc2 v0.0.0 => ../theta/rpc/lib/rpc-codec/jsonrpc2/
go 1.13