-
Notifications
You must be signed in to change notification settings - Fork 30
/
go.mod
78 lines (73 loc) · 3.36 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
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
module github.com/okx/proof-of-reserves
go 1.17
require (
github.com/Conflux-Chain/go-conflux-sdk v1.5.3
github.com/btcsuite/btcd v0.23.4
github.com/btcsuite/btcd/btcec/v2 v2.3.1
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1
github.com/dchest/blake2b v1.0.0
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0
github.com/ethereum/go-ethereum v1.10.26
github.com/kilic/bls12-381 v0.1.0
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible
github.com/martinboehm/bchutil v0.0.0-20190104112650-6373f11b6efe
github.com/martinboehm/btcd v0.0.0-20211010165247-d1f65b0f30fa
github.com/martinboehm/btcutil v0.0.0-20211010173611-6ef1889c1819
github.com/oliveagle/jsonpath v0.0.0-20180606110733-2e52cf6e6852
github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5
github.com/shopspring/decimal v1.3.1
github.com/sirupsen/logrus v1.9.0
github.com/spf13/cobra v1.6.1
github.com/xssnick/tonutils-go v1.9.8
golang.org/x/crypto v0.17.0
)
require (
github.com/Groestlcoin/go-groestl-hash v0.0.0-20181012171753-790653ac190c // indirect
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect
github.com/dchest/blake256 v1.0.0 // indirect
github.com/filecoin-project/go-amt-ipld/v4 v4.0.0 // indirect
github.com/filecoin-project/go-hamt-ipld/v3 v3.1.0 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/ipfs/go-ipfs-util v0.0.2 // indirect
github.com/ipfs/go-ipld-cbor v0.0.6 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 // indirect
github.com/minio/sha256-simd v1.0.0 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/mr-tron/base58 v1.2.0 // indirect
github.com/multiformats/go-multihash v0.2.1 // indirect
github.com/oasisprotocol/curve25519-voi v0.0.0-20220328075252-7dd334e3daae // indirect
github.com/openweb3/go-rpc-provider v0.3.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/sigurn/crc16 v0.0.0-20211026045750-20ab5afb07e3 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/term v0.15.0 // indirect
)
require (
github.com/filecoin-project/go-address v1.1.0
github.com/filecoin-project/go-crypto v0.0.1 // indirect
github.com/filecoin-project/go-state-types v0.11.1
github.com/gopherjs/gopherjs v1.17.2 // indirect
github.com/ipfs/go-block-format v0.1.2 // indirect
github.com/ipfs/go-cid v0.4.1 // indirect
github.com/ipfs/go-ipld-format v0.4.0 // indirect
github.com/jonboulle/clockwork v0.3.0 // indirect
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
github.com/multiformats/go-base32 v0.1.0 // indirect
github.com/multiformats/go-base36 v0.2.0 // indirect
github.com/multiformats/go-multibase v0.2.0 // indirect
github.com/multiformats/go-varint v0.0.7 // indirect
github.com/polydawn/refmt v0.89.0 // indirect
github.com/smartystreets/assertions v1.13.0 // indirect
github.com/whyrusleeping/cbor-gen v0.0.0-20230126041949-52956bd4c9aa // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
lukechampine.com/blake3 v1.1.7 // indirect
)
require (
github.com/lestrrat-go/strftime v1.0.6 // indirect
github.com/schollz/progressbar/v3 v3.13.1
github.com/stretchr/testify v1.8.2 // indirect
)