@agoric/cosmos 0.35.0-u12.0 → 0.35.0-u14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +67 -0
- package/Makefile +25 -12
- package/ante/ante.go +7 -5
- package/ante/inbound_test.go +8 -0
- package/app/app.go +139 -108
- package/app/export.go +13 -9
- package/app/sim_test.go +4 -4
- package/cmd/agd/main.go +5 -3
- package/cmd/libdaemon/main.go +5 -2
- package/daemon/cmd/genaccounts.go +13 -9
- package/daemon/cmd/root.go +38 -17
- package/daemon/cmd/root_test.go +1 -1
- package/daemon/cmd/testnet.go +17 -6
- package/daemon/main.go +3 -2
- package/git-revision.txt +1 -1
- package/go.mod +117 -76
- package/go.sum +858 -210
- package/package.json +3 -3
- package/proto/agoric/vstorage/query.proto +53 -1
- package/scripts/protocgen.sh +12 -1
- package/third_party/proto/buf.yaml +1 -0
- package/third_party/proto/cosmos/base/query/v1beta1/pagination.proto +4 -1
- package/third_party/proto/cosmos/base/v1beta1/coin.proto +7 -4
- package/third_party/proto/cosmos/upgrade/v1beta1/upgrade.proto +16 -6
- package/third_party/proto/cosmos_proto/cosmos.proto +97 -0
- package/third_party/proto/google/api/annotations.proto +1 -1
- package/third_party/proto/google/api/http.proto +181 -120
- package/third_party/proto/google/api/httpbody.proto +9 -6
- package/third_party/proto/google/protobuf/any.proto +1 -7
- package/third_party/proto/ibc/core/channel/v1/channel.proto +15 -1
- package/third_party/proto/ibc/core/client/v1/client.proto +9 -6
- package/upgradegaia.sh +13 -4
- package/vm/action.go +133 -0
- package/vm/action_test.go +129 -0
- package/vm/controller.go +9 -16
- package/vm/core_proposals.go +31 -0
- package/x/lien/keeper/account.go +16 -11
- package/x/lien/keeper/keeper.go +5 -4
- package/x/lien/keeper/keeper_test.go +9 -9
- package/x/lien/lien.go +6 -4
- package/x/lien/lien_test.go +20 -16
- package/x/swingset/abci.go +25 -33
- package/x/swingset/client/cli/query.go +2 -2
- package/x/swingset/client/cli/tx.go +48 -33
- package/x/swingset/client/proposal_handler.go +2 -17
- package/x/swingset/keeper/keeper.go +69 -15
- package/x/swingset/keeper/keeper_test.go +1 -1
- package/x/swingset/keeper/migrations.go +7 -2
- package/x/swingset/keeper/msg_server.go +66 -49
- package/x/swingset/keeper/proposal.go +14 -8
- package/x/swingset/keeper/querier.go +14 -6
- package/x/swingset/keeper/swing_store_exports_handler.go +5 -1
- package/x/swingset/proposal_handler.go +3 -3
- package/x/swingset/swingset.go +4 -2
- package/x/swingset/types/codec.go +2 -2
- package/x/swingset/types/default-params.go +22 -16
- package/x/swingset/types/expected_keepers.go +11 -0
- package/x/swingset/types/msgs.go +43 -2
- package/x/swingset/types/msgs.pb.go +16 -16
- package/x/swingset/types/params.go +74 -0
- package/x/swingset/types/params_test.go +116 -0
- package/x/swingset/types/proposal.go +5 -5
- package/x/swingset/types/types.go +30 -28
- package/x/vbank/keeper/keeper.go +3 -2
- package/x/vbank/keeper/querier.go +6 -2
- package/x/vbank/keeper/rewards.go +1 -1
- package/x/vbank/vbank.go +19 -17
- package/x/vbank/vbank_test.go +18 -18
- package/x/vibc/handler.go +3 -8
- package/x/vibc/ibc.go +79 -126
- package/x/vibc/keeper/keeper.go +19 -18
- package/x/vibc/types/expected_keepers.go +13 -5
- package/x/vibc/types/msgs.go +1 -1
- package/x/vibc/types/msgs.pb.go +1 -1
- package/x/vstorage/README.md +138 -0
- package/x/vstorage/capdata/capdata.go +298 -0
- package/x/vstorage/capdata/capdata_test.go +352 -0
- package/x/vstorage/client/cli/query.go +51 -4
- package/x/vstorage/keeper/grpc_query.go +221 -0
- package/x/vstorage/keeper/keeper.go +3 -2
- package/x/vstorage/keeper/keeper_grpc_test.go +300 -0
- package/x/vstorage/keeper/keeper_test.go +1 -1
- package/x/vstorage/keeper/querier.go +6 -2
- package/x/vstorage/keeper/querier_test.go +112 -0
- package/x/vstorage/types/query.pb.go +646 -36
- package/x/vstorage/types/query.pb.gw.go +119 -0
- package/x/vstorage/vstorage.go +16 -15
- package/x/vstorage/vstorage_test.go +5 -5
- package/x/swingset/legacy/v32/params.go +0 -37
- package/x/swingset/legacy/v32/params_test.go +0 -133
- /package/{src/index.cjs → index.cjs} +0 -0
package/go.mod
CHANGED
|
@@ -3,153 +3,194 @@ module github.com/Agoric/agoric-sdk/golang/cosmos
|
|
|
3
3
|
go 1.20
|
|
4
4
|
|
|
5
5
|
require (
|
|
6
|
-
|
|
7
|
-
github.com/
|
|
8
|
-
github.com/cosmos/
|
|
9
|
-
github.com/cosmos/ibc-go/
|
|
6
|
+
cosmossdk.io/math v1.0.0-rc.0
|
|
7
|
+
github.com/armon/go-metrics v0.4.1
|
|
8
|
+
github.com/cosmos/cosmos-sdk v0.46.16
|
|
9
|
+
github.com/cosmos/ibc-go/v6 v6.2.1
|
|
10
10
|
github.com/gogo/protobuf v1.3.3
|
|
11
|
-
github.com/golang/protobuf v1.5.
|
|
11
|
+
github.com/golang/protobuf v1.5.3
|
|
12
12
|
github.com/gorilla/mux v1.8.0
|
|
13
13
|
github.com/grpc-ecosystem/grpc-gateway v1.16.0
|
|
14
14
|
github.com/pkg/errors v0.9.1
|
|
15
15
|
github.com/rakyll/statik v0.1.7
|
|
16
16
|
github.com/spf13/cast v1.5.0
|
|
17
|
-
github.com/spf13/cobra v1.6.
|
|
18
|
-
github.com/spf13/viper v1.
|
|
19
|
-
github.com/stretchr/testify v1.8.
|
|
20
|
-
github.com/tendermint/tendermint v0.34.
|
|
17
|
+
github.com/spf13/cobra v1.6.1
|
|
18
|
+
github.com/spf13/viper v1.14.0
|
|
19
|
+
github.com/stretchr/testify v1.8.2
|
|
20
|
+
github.com/tendermint/tendermint v0.34.29
|
|
21
21
|
github.com/tendermint/tm-db v0.6.7
|
|
22
|
-
google.golang.org/genproto v0.0.0-
|
|
23
|
-
google.golang.org/grpc v1.
|
|
22
|
+
google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98
|
|
23
|
+
google.golang.org/grpc v1.58.3
|
|
24
24
|
gopkg.in/yaml.v2 v2.4.0
|
|
25
25
|
)
|
|
26
26
|
|
|
27
27
|
require (
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
cloud.google.com/go v0.110.4 // indirect
|
|
29
|
+
cloud.google.com/go/compute v1.21.0 // indirect
|
|
30
|
+
cloud.google.com/go/compute/metadata v0.2.3 // indirect
|
|
31
|
+
cloud.google.com/go/iam v1.1.1 // indirect
|
|
32
|
+
cloud.google.com/go/storage v1.30.1 // indirect
|
|
33
|
+
cosmossdk.io/errors v1.0.0-beta.7 // indirect
|
|
34
|
+
filippo.io/edwards25519 v1.0.0-rc.1 // indirect
|
|
35
|
+
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
|
|
36
|
+
github.com/99designs/keyring v1.2.1 // indirect
|
|
37
|
+
github.com/ChainSafe/go-schnorrkel v1.0.0 // indirect
|
|
32
38
|
github.com/Workiva/go-datastructures v1.0.53 // indirect
|
|
39
|
+
github.com/aws/aws-sdk-go v1.44.122 // indirect
|
|
33
40
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
34
|
-
github.com/bgentry/
|
|
35
|
-
github.com/
|
|
41
|
+
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
|
|
42
|
+
github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 // indirect
|
|
43
|
+
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
|
|
44
|
+
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
|
|
36
45
|
github.com/cespare/xxhash v1.1.0 // indirect
|
|
37
|
-
github.com/cespare/xxhash/v2 v2.
|
|
38
|
-
github.com/
|
|
39
|
-
github.com/
|
|
40
|
-
github.com/
|
|
46
|
+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
47
|
+
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
|
|
48
|
+
github.com/cockroachdb/apd/v2 v2.0.2 // indirect
|
|
49
|
+
github.com/coinbase/rosetta-sdk-go v0.7.9 // indirect
|
|
50
|
+
github.com/cometbft/cometbft-db v0.7.0 // indirect
|
|
51
|
+
github.com/confio/ics23/go v0.9.1 // indirect
|
|
52
|
+
github.com/cosmos/btcutil v1.0.5 // indirect
|
|
53
|
+
github.com/cosmos/cosmos-proto v1.0.0-beta.1 // indirect
|
|
41
54
|
github.com/cosmos/go-bip39 v1.0.0 // indirect
|
|
42
55
|
github.com/cosmos/gorocksdb v1.2.0 // indirect
|
|
43
|
-
github.com/cosmos/iavl v0.19.
|
|
44
|
-
github.com/cosmos/ledger-cosmos-go v0.
|
|
45
|
-
github.com/cosmos/ledger-go v0.9.2 // indirect
|
|
56
|
+
github.com/cosmos/iavl v0.19.6 // indirect
|
|
57
|
+
github.com/cosmos/ledger-cosmos-go v0.12.4 // indirect
|
|
46
58
|
github.com/creachadair/taskgroup v0.3.2 // indirect
|
|
47
|
-
github.com/danieljoos/wincred v1.1.
|
|
59
|
+
github.com/danieljoos/wincred v1.1.2 // indirect
|
|
48
60
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
61
|
+
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect
|
|
49
62
|
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect
|
|
50
|
-
github.com/dgraph-io/badger/v2 v2.2007.
|
|
51
|
-
github.com/dgraph-io/ristretto v0.0
|
|
63
|
+
github.com/dgraph-io/badger/v2 v2.2007.4 // indirect
|
|
64
|
+
github.com/dgraph-io/ristretto v0.1.0 // indirect
|
|
52
65
|
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
|
|
53
66
|
github.com/dustin/go-humanize v1.0.0 // indirect
|
|
54
|
-
github.com/dvsekhvalnov/jose2go
|
|
67
|
+
github.com/dvsekhvalnov/jose2go v1.5.0 // indirect
|
|
55
68
|
github.com/felixge/httpsnoop v1.0.2 // indirect
|
|
56
|
-
github.com/fsnotify/fsnotify v1.
|
|
69
|
+
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
57
70
|
github.com/ghodss/yaml v1.0.0 // indirect
|
|
71
|
+
github.com/gin-gonic/gin v1.8.1 // indirect
|
|
58
72
|
github.com/go-kit/kit v0.12.0 // indirect
|
|
59
73
|
github.com/go-kit/log v0.2.1 // indirect
|
|
60
74
|
github.com/go-logfmt/logfmt v0.5.1 // indirect
|
|
61
75
|
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
|
|
62
76
|
github.com/gogo/gateway v1.1.0 // indirect
|
|
63
|
-
github.com/golang/glog
|
|
77
|
+
github.com/golang/glog v1.1.0 // indirect
|
|
78
|
+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
64
79
|
github.com/golang/snappy v0.0.4 // indirect
|
|
65
|
-
github.com/google/btree v1.
|
|
80
|
+
github.com/google/btree v1.1.2 // indirect
|
|
81
|
+
github.com/google/go-cmp v0.5.9 // indirect
|
|
66
82
|
github.com/google/gofuzz v1.2.0 // indirect
|
|
67
83
|
github.com/google/orderedcode v0.0.1 // indirect
|
|
84
|
+
github.com/google/s2a-go v0.1.4 // indirect
|
|
85
|
+
github.com/google/uuid v1.3.0 // indirect
|
|
86
|
+
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
|
|
87
|
+
github.com/googleapis/gax-go/v2 v2.11.0 // indirect
|
|
68
88
|
github.com/gorilla/handlers v1.5.1 // indirect
|
|
69
89
|
github.com/gorilla/websocket v1.5.0 // indirect
|
|
70
90
|
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
|
|
71
91
|
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
|
|
72
92
|
github.com/gtank/merlin v0.1.1 // indirect
|
|
73
93
|
github.com/gtank/ristretto255 v0.1.2 // indirect
|
|
94
|
+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
|
|
95
|
+
github.com/hashicorp/go-getter v1.6.1 // indirect
|
|
74
96
|
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
|
|
75
|
-
github.com/hashicorp/
|
|
97
|
+
github.com/hashicorp/go-safetemp v1.0.0 // indirect
|
|
98
|
+
github.com/hashicorp/go-version v1.6.0 // indirect
|
|
99
|
+
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect
|
|
76
100
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
77
|
-
github.com/hdevalence/ed25519consensus v0.0.0-
|
|
78
|
-
github.com/improbable-eng/grpc-web v0.
|
|
101
|
+
github.com/hdevalence/ed25519consensus v0.0.0-20220222234857-c00d1f31bab3 // indirect
|
|
102
|
+
github.com/improbable-eng/grpc-web v0.15.0 // indirect
|
|
79
103
|
github.com/inconshreveable/mousetrap v1.0.1 // indirect
|
|
104
|
+
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
|
80
105
|
github.com/jmhodges/levigo v1.0.0 // indirect
|
|
81
|
-
github.com/
|
|
82
|
-
github.com/
|
|
83
|
-
github.com/lib/pq v1.10.6 // indirect
|
|
106
|
+
github.com/klauspost/compress v1.16.0 // indirect
|
|
107
|
+
github.com/lib/pq v1.10.7 // indirect
|
|
84
108
|
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
|
|
85
109
|
github.com/magiconair/properties v1.8.6 // indirect
|
|
110
|
+
github.com/manifoldco/promptui v0.9.0 // indirect
|
|
86
111
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
87
|
-
github.com/mattn/go-isatty v0.0.
|
|
88
|
-
github.com/matttproud/golang_protobuf_extensions v1.0.
|
|
112
|
+
github.com/mattn/go-isatty v0.0.18 // indirect
|
|
113
|
+
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
|
89
114
|
github.com/mimoo/StrobeGo v0.0.0-20210601165009-122bf33a46e0 // indirect
|
|
90
115
|
github.com/minio/highwayhash v1.0.2 // indirect
|
|
116
|
+
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
117
|
+
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
|
|
91
118
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
92
119
|
github.com/mtibben/percent v0.2.1 // indirect
|
|
93
120
|
github.com/pelletier/go-toml v1.9.5 // indirect
|
|
94
|
-
github.com/pelletier/go-toml/v2 v2.0.
|
|
95
|
-
github.com/petermattis/goid v0.0.0-
|
|
121
|
+
github.com/pelletier/go-toml/v2 v2.0.7 // indirect
|
|
122
|
+
github.com/petermattis/goid v0.0.0-20230317030725-371a4b8eda08 // indirect
|
|
96
123
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
97
|
-
github.com/prometheus/client_golang v1.
|
|
98
|
-
github.com/prometheus/client_model v0.
|
|
99
|
-
github.com/prometheus/common v0.
|
|
100
|
-
github.com/prometheus/procfs v0.
|
|
124
|
+
github.com/prometheus/client_golang v1.14.0 // indirect
|
|
125
|
+
github.com/prometheus/client_model v0.3.0 // indirect
|
|
126
|
+
github.com/prometheus/common v0.42.0 // indirect
|
|
127
|
+
github.com/prometheus/procfs v0.9.0 // indirect
|
|
101
128
|
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
|
|
102
129
|
github.com/regen-network/cosmos-proto v0.3.1 // indirect
|
|
103
130
|
github.com/rs/cors v1.8.2 // indirect
|
|
104
|
-
github.com/rs/zerolog v1.
|
|
131
|
+
github.com/rs/zerolog v1.29.1 // indirect
|
|
105
132
|
github.com/sasha-s/go-deadlock v0.3.1 // indirect
|
|
106
|
-
github.com/spf13/afero v1.
|
|
133
|
+
github.com/spf13/afero v1.9.2 // indirect
|
|
107
134
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
108
135
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
109
136
|
github.com/subosito/gotenv v1.4.1 // indirect
|
|
110
|
-
github.com/syndtr/goleveldb v1.0.1-0.
|
|
111
|
-
github.com/
|
|
112
|
-
github.com/tendermint/crypto v0.0.0-20191022145703-50d29ede1e15 // indirect
|
|
137
|
+
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
|
|
138
|
+
github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c // indirect
|
|
113
139
|
github.com/tendermint/go-amino v0.16.0 // indirect
|
|
114
|
-
github.com/
|
|
140
|
+
github.com/tidwall/btree v1.5.0 // indirect
|
|
141
|
+
github.com/ulikunitz/xz v0.5.10 // indirect
|
|
142
|
+
github.com/zondax/hid v0.9.2 // indirect
|
|
143
|
+
github.com/zondax/ledger-go v0.14.3 // indirect
|
|
115
144
|
go.etcd.io/bbolt v1.3.6 // indirect
|
|
116
|
-
|
|
117
|
-
golang.org/x/
|
|
118
|
-
golang.org/x/
|
|
119
|
-
golang.org/x/
|
|
120
|
-
golang.org/x/
|
|
121
|
-
golang.org/x/
|
|
122
|
-
|
|
145
|
+
go.opencensus.io v0.24.0 // indirect
|
|
146
|
+
golang.org/x/crypto v0.15.0 // indirect
|
|
147
|
+
golang.org/x/exp v0.0.0-20230310171629-522b1b587ee0 // indirect
|
|
148
|
+
golang.org/x/net v0.18.0 // indirect
|
|
149
|
+
golang.org/x/oauth2 v0.10.0 // indirect
|
|
150
|
+
golang.org/x/sync v0.3.0 // indirect
|
|
151
|
+
golang.org/x/sys v0.14.0 // indirect
|
|
152
|
+
golang.org/x/term v0.14.0 // indirect
|
|
153
|
+
golang.org/x/text v0.14.0 // indirect
|
|
154
|
+
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
|
|
155
|
+
google.golang.org/api v0.126.0 // indirect
|
|
156
|
+
google.golang.org/appengine v1.6.7 // indirect
|
|
157
|
+
google.golang.org/genproto v0.0.0-20230711160842-782d3b101e98 // indirect
|
|
158
|
+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 // indirect
|
|
159
|
+
google.golang.org/protobuf v1.31.0 // indirect
|
|
123
160
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
124
161
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
125
162
|
nhooyr.io/websocket v1.8.6 // indirect
|
|
163
|
+
sigs.k8s.io/yaml v1.3.0 // indirect
|
|
126
164
|
)
|
|
127
165
|
|
|
128
|
-
|
|
129
|
-
|
|
166
|
+
replace (
|
|
167
|
+
github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0
|
|
130
168
|
|
|
131
|
-
|
|
132
|
-
// https://github.com/Zondax/hid/issues/4 resolved.
|
|
133
|
-
replace github.com/zondax/hid => github.com/zondax/hid v0.9.1-0.20220302062450-5552068d2266
|
|
169
|
+
github.com/confio/ics23/go => github.com/agoric-labs/cosmos-sdk/ics23/go v0.8.0-alpha.agoric.1
|
|
134
170
|
|
|
135
|
-
|
|
171
|
+
// We need a fork of cosmos-sdk until all of the differences are merged.
|
|
172
|
+
github.com/cosmos/cosmos-sdk => github.com/agoric-labs/cosmos-sdk v0.46.16-alpha.agoric.2
|
|
136
173
|
|
|
137
|
-
|
|
174
|
+
// https://pkg.go.dev/vuln/GO-2023-2409
|
|
175
|
+
github.com/dvsekhvalnov/jose2go => github.com/dvsekhvalnov/jose2go v1.5.1-0.20231206184617-48ba0b76bc88
|
|
138
176
|
|
|
139
|
-
|
|
177
|
+
// Fix upstream GHSA-3vp4-m3rf-835h vulnerability.
|
|
178
|
+
github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.9.0
|
|
140
179
|
|
|
141
|
-
|
|
180
|
+
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
|
|
142
181
|
|
|
143
|
-
//
|
|
144
|
-
|
|
145
|
-
replace github.com/tendermint/tendermint => github.com/agoric-labs/tendermint v0.34.23-alpha.agoric.4
|
|
182
|
+
// https://pkg.go.dev/vuln/GO-2023-1578
|
|
183
|
+
github.com/hashicorp/go-getter => github.com/hashicorp/go-getter v1.7.0
|
|
146
184
|
|
|
147
|
-
//
|
|
148
|
-
|
|
185
|
+
// replace broken goleveldb.
|
|
186
|
+
github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
|
|
149
187
|
|
|
150
|
-
|
|
188
|
+
// use cometbft
|
|
189
|
+
// Use our fork at least until post-v0.34.14 is released with
|
|
190
|
+
// https://github.com/tendermint/tendermint/issue/6899 resolved.
|
|
191
|
+
github.com/tendermint/tendermint => github.com/agoric-labs/cometbft v0.34.30-alpha.agoric.1
|
|
151
192
|
|
|
152
193
|
// For testing against a local cosmos-sdk or tendermint
|
|
153
|
-
//
|
|
154
|
-
|
|
155
|
-
|
|
194
|
+
// github.com/cosmos/cosmos-sdk => ../../../forks/cosmos-sdk
|
|
195
|
+
// github.com/tendermint/tendermint => ../../../forks/tendermint
|
|
196
|
+
)
|