-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
64 lines (60 loc) · 2.53 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
module github.com/dmitrymomot/solana
go 1.19
require (
filippo.io/edwards25519 v1.0.0
github.com/dmitrymomot/go-env v1.0.2
github.com/everFinance/goar v1.5.2
github.com/fatih/color v1.15.0
github.com/google/uuid v1.3.0
github.com/joho/godotenv v1.5.1
github.com/mr-tron/base58 v1.2.0
github.com/near/borsh-go v0.3.2-0.20220516180422-1ff87d108454
github.com/pkg/errors v0.9.1
github.com/portto/solana-go-sdk v1.23.8
github.com/spf13/cobra v1.7.0
github.com/stretchr/testify v1.8.3
github.com/tyler-smith/go-bip39 v1.1.0
)
require (
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
github.com/btcsuite/btcd/btcutil v1.1.3 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect
github.com/ethereum/go-ethereum v1.11.5 // indirect
github.com/everFinance/arseeding v1.0.31 // indirect
github.com/everFinance/ethrpc v1.0.4 // indirect
github.com/everFinance/goether v1.1.8 // indirect
github.com/everFinance/gojwk v1.0.0 // indirect
github.com/everFinance/ttcrsa v1.1.3 // indirect
github.com/go-sql-driver/mysql v1.7.0 // indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/hamba/avro v1.8.0 // indirect
github.com/holiman/uint256 v1.2.2 // indirect
github.com/inconshreveable/log15 v2.16.0+incompatible // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/nbio/st v0.0.0-20140626010706-e9e8d9816f32 // indirect
github.com/panjf2000/ants/v2 v2.7.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/shopspring/decimal v1.3.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/tidwall/gjson v1.14.4 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
golang.org/x/crypto v0.9.0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/term v0.8.0 // indirect
gopkg.in/h2non/gentleman.v2 v2.0.5 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gorm.io/datatypes v1.1.1 // indirect
gorm.io/driver/mysql v1.4.7 // indirect
gorm.io/gorm v1.24.6 // indirect
)
replace github.com/portto/solana-go-sdk => github.com/dmitrymomot/solana-go-sdk v1.23.8