forked from flashbots/rpc-endpoint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
35 lines (31 loc) · 1.14 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 github.com/flashbots/rpc-endpoint
go 1.18
require (
github.com/alicebob/miniredis v2.5.0+incompatible
github.com/ethereum/go-ethereum v1.11.5
github.com/go-redis/redis/v8 v8.11.5
github.com/google/uuid v1.3.0
github.com/lib/pq v1.10.7
github.com/metachris/flashbotsrpc v0.5.0
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.8.2
)
require (
github.com/btcsuite/btcd/btcec/v2 v2.2.0 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/holiman/uint256 v1.2.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect
github.com/gomodule/redigo v1.8.5 // indirect
github.com/jmoiron/sqlx v1.3.4
github.com/yuin/gopher-lua v0.0.0-20200816102855-ee81675732da // indirect
golang.org/x/crypto v0.1.0 // indirect
golang.org/x/sys v0.5.0 // indirect
)