-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
35 lines (32 loc) · 1.33 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
34
35
module chainrunner
go 1.15
require (
github.com/ALTree/bigfloat v0.0.0-20201218142103-4a33235224ec
github.com/btcsuite/btcd v0.22.0-beta // indirect
github.com/ethereum/go-ethereum v0.0.0-local
github.com/go-kit/kit v0.10.0 // indirect
github.com/google/go-cmp v0.5.7 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/inconshreveable/log15 v0.0.0-20201112154412-8562bdadbbac
github.com/jmoiron/sqlx v1.3.4 // indirect
github.com/joho/godotenv v1.4.0
github.com/mattn/go-sqlite3 v1.14.11 // indirect
github.com/pkg/errors v0.9.1
github.com/rjeczalik/notify v0.9.2 // indirect
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
github.com/sirupsen/logrus v1.8.1
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
github.com/tklauser/go-sysconf v0.3.9 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/text v0.3.7 // indirect
gonum.org/v1/gonum v0.8.2
gonum.org/v1/plot v0.9.0 // indirect
)
replace (
github.com/ethereum/go-ethereum v0.0.0-local => /home/bot/bor-fork-simulate/
gonum.org/v1/gonum v0.0.0-local => /home/bot/gonum-fork/
gonum.org/v1/gonum v0.8.2 => /home/bot/gonum-fork/
)