@agoric/cosmos 0.34.2-dev-7244c71.0 → 0.34.2-dev-28931a7.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/ante/ante.go +2 -2
- package/app/app.go +16 -16
- package/app/sim_test.go +4 -4
- package/git-revision.txt +1 -1
- package/go.mod +56 -46
- package/go.sum +453 -154
- package/package.json +2 -2
- package/x/vibc/ibc.go +25 -25
- package/x/vibc/keeper/keeper.go +4 -4
- package/x/vibc/types/expected_keepers.go +3 -3
- package/x/vibc/types/msgs.go +1 -1
- package/x/vibc/types/msgs.pb.go +1 -1
package/ante/ante.go
CHANGED
|
@@ -4,8 +4,8 @@ import (
|
|
|
4
4
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
5
5
|
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
|
6
6
|
"github.com/cosmos/cosmos-sdk/x/auth/ante"
|
|
7
|
-
ibcante "github.com/cosmos/ibc-go/
|
|
8
|
-
ibckeeper "github.com/cosmos/ibc-go/
|
|
7
|
+
ibcante "github.com/cosmos/ibc-go/v4/modules/core/ante"
|
|
8
|
+
ibckeeper "github.com/cosmos/ibc-go/v4/modules/core/keeper"
|
|
9
9
|
)
|
|
10
10
|
|
|
11
11
|
// HandlerOptions extend the SDK's AnteHandler options by requiring the IBC
|
package/app/app.go
CHANGED
|
@@ -80,22 +80,22 @@ import (
|
|
|
80
80
|
upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client"
|
|
81
81
|
upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper"
|
|
82
82
|
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
|
|
83
|
-
ica "github.com/cosmos/ibc-go/
|
|
84
|
-
|
|
85
|
-
icahost "github.com/cosmos/ibc-go/
|
|
86
|
-
icahostkeeper "github.com/cosmos/ibc-go/
|
|
87
|
-
icahosttypes "github.com/cosmos/ibc-go/
|
|
88
|
-
icatypes "github.com/cosmos/ibc-go/
|
|
89
|
-
"github.com/cosmos/ibc-go/
|
|
90
|
-
ibctransferkeeper "github.com/cosmos/ibc-go/
|
|
91
|
-
ibctransfertypes "github.com/cosmos/ibc-go/
|
|
92
|
-
ibc "github.com/cosmos/ibc-go/
|
|
93
|
-
ibcclient "github.com/cosmos/ibc-go/
|
|
94
|
-
ibcclientclient "github.com/cosmos/ibc-go/
|
|
95
|
-
ibcclienttypes "github.com/cosmos/ibc-go/
|
|
96
|
-
porttypes "github.com/cosmos/ibc-go/
|
|
97
|
-
ibchost "github.com/cosmos/ibc-go/
|
|
98
|
-
ibckeeper "github.com/cosmos/ibc-go/
|
|
83
|
+
ica "github.com/cosmos/ibc-go/v4/modules/apps/27-interchain-accounts"
|
|
84
|
+
|
|
85
|
+
icahost "github.com/cosmos/ibc-go/v4/modules/apps/27-interchain-accounts/host"
|
|
86
|
+
icahostkeeper "github.com/cosmos/ibc-go/v4/modules/apps/27-interchain-accounts/host/keeper"
|
|
87
|
+
icahosttypes "github.com/cosmos/ibc-go/v4/modules/apps/27-interchain-accounts/host/types"
|
|
88
|
+
icatypes "github.com/cosmos/ibc-go/v4/modules/apps/27-interchain-accounts/types"
|
|
89
|
+
"github.com/cosmos/ibc-go/v4/modules/apps/transfer"
|
|
90
|
+
ibctransferkeeper "github.com/cosmos/ibc-go/v4/modules/apps/transfer/keeper"
|
|
91
|
+
ibctransfertypes "github.com/cosmos/ibc-go/v4/modules/apps/transfer/types"
|
|
92
|
+
ibc "github.com/cosmos/ibc-go/v4/modules/core"
|
|
93
|
+
ibcclient "github.com/cosmos/ibc-go/v4/modules/core/02-client"
|
|
94
|
+
ibcclientclient "github.com/cosmos/ibc-go/v4/modules/core/02-client/client"
|
|
95
|
+
ibcclienttypes "github.com/cosmos/ibc-go/v4/modules/core/02-client/types"
|
|
96
|
+
porttypes "github.com/cosmos/ibc-go/v4/modules/core/05-port/types"
|
|
97
|
+
ibchost "github.com/cosmos/ibc-go/v4/modules/core/24-host"
|
|
98
|
+
ibckeeper "github.com/cosmos/ibc-go/v4/modules/core/keeper"
|
|
99
99
|
"github.com/gorilla/mux"
|
|
100
100
|
"github.com/rakyll/statik/fs"
|
|
101
101
|
"github.com/spf13/cast"
|
package/app/sim_test.go
CHANGED
|
@@ -6,9 +6,9 @@ import (
|
|
|
6
6
|
"os"
|
|
7
7
|
"testing"
|
|
8
8
|
|
|
9
|
-
gaia "github.com/
|
|
9
|
+
gaia "github.com/Agoric/agoric-sdk/golang/cosmos/app"
|
|
10
10
|
|
|
11
|
-
"github.com/
|
|
11
|
+
"github.com/Agoric/agoric-sdk/golang/cosmos/app/helpers"
|
|
12
12
|
"github.com/stretchr/testify/require"
|
|
13
13
|
"github.com/tendermint/tendermint/libs/log"
|
|
14
14
|
"github.com/tendermint/tendermint/libs/rand"
|
|
@@ -76,8 +76,8 @@ func interBlockCacheOpt() func(*baseapp.BaseApp) {
|
|
|
76
76
|
return baseapp.SetInterBlockCache(store.NewCommitKVStoreCacheManager())
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
-
|
|
80
|
-
|
|
79
|
+
// // TODO: Make another test for the fuzzer itself, which just has noOp txs
|
|
80
|
+
// // and doesn't depend on the application.
|
|
81
81
|
func TestAppStateDeterminism(t *testing.T) {
|
|
82
82
|
if !simapp.FlagEnabledValue {
|
|
83
83
|
t.Skip("skipping application simulation")
|
package/git-revision.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
28931a7
|
package/go.mod
CHANGED
|
@@ -3,10 +3,9 @@ module github.com/Agoric/agoric-sdk/golang/cosmos
|
|
|
3
3
|
go 1.20
|
|
4
4
|
|
|
5
5
|
require (
|
|
6
|
-
github.com/armon/go-metrics v0.4.
|
|
7
|
-
github.com/cosmos/cosmos-sdk v0.45.
|
|
8
|
-
github.com/cosmos/
|
|
9
|
-
github.com/cosmos/ibc-go/v3 v3.4.0
|
|
6
|
+
github.com/armon/go-metrics v0.4.1
|
|
7
|
+
github.com/cosmos/cosmos-sdk v0.45.16
|
|
8
|
+
github.com/cosmos/ibc-go/v4 v4.5.1
|
|
10
9
|
github.com/gogo/protobuf v1.3.3
|
|
11
10
|
github.com/golang/protobuf v1.5.2
|
|
12
11
|
github.com/gorilla/mux v1.8.0
|
|
@@ -14,46 +13,59 @@ require (
|
|
|
14
13
|
github.com/pkg/errors v0.9.1
|
|
15
14
|
github.com/rakyll/statik v0.1.7
|
|
16
15
|
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.
|
|
16
|
+
github.com/spf13/cobra v1.6.1
|
|
17
|
+
github.com/spf13/viper v1.14.0
|
|
18
|
+
github.com/stretchr/testify v1.8.1
|
|
19
|
+
github.com/tendermint/tendermint v0.34.27
|
|
21
20
|
github.com/tendermint/tm-db v0.6.7
|
|
22
|
-
google.golang.org/genproto v0.0.0-
|
|
23
|
-
google.golang.org/grpc v1.
|
|
21
|
+
google.golang.org/genproto v0.0.0-20230125152338-dcaf20b6aeaa
|
|
22
|
+
google.golang.org/grpc v1.52.3
|
|
24
23
|
gopkg.in/yaml.v2 v2.4.0
|
|
25
24
|
)
|
|
26
25
|
|
|
27
26
|
require (
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
cosmossdk.io/api v0.2.6 // indirect
|
|
28
|
+
cosmossdk.io/core v0.5.1 // indirect
|
|
29
|
+
cosmossdk.io/depinject v1.0.0-alpha.3 // indirect
|
|
30
|
+
filippo.io/edwards25519 v1.0.0-rc.1 // indirect
|
|
31
|
+
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
|
|
32
|
+
github.com/99designs/keyring v1.2.1 // indirect
|
|
30
33
|
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d // indirect
|
|
31
|
-
github.com/DataDog/zstd v1.
|
|
34
|
+
github.com/DataDog/zstd v1.5.0 // indirect
|
|
35
|
+
github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect
|
|
32
36
|
github.com/Workiva/go-datastructures v1.0.53 // indirect
|
|
33
37
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
34
|
-
github.com/bgentry/speakeasy v0.1.0 // indirect
|
|
35
|
-
github.com/btcsuite/btcd
|
|
38
|
+
github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 // indirect
|
|
39
|
+
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
|
|
36
40
|
github.com/cespare/xxhash v1.1.0 // indirect
|
|
37
41
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
38
|
-
github.com/
|
|
39
|
-
github.com/
|
|
42
|
+
github.com/cockroachdb/errors v1.9.1 // indirect
|
|
43
|
+
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
|
|
44
|
+
github.com/cockroachdb/pebble v0.0.0-20220817183557-09c6e030a677 // indirect
|
|
45
|
+
github.com/cockroachdb/redact v1.1.3 // indirect
|
|
46
|
+
github.com/coinbase/rosetta-sdk-go v0.7.9 // indirect
|
|
47
|
+
github.com/cometbft/cometbft-db v0.7.0 // indirect
|
|
48
|
+
github.com/confio/ics23/go v0.9.1 // indirect
|
|
40
49
|
github.com/cosmos/btcutil v1.0.4 // indirect
|
|
50
|
+
github.com/cosmos/cosmos-db v0.0.0-20221226095112-f3c38ecb5e32 // indirect
|
|
51
|
+
github.com/cosmos/cosmos-proto v1.0.0-beta.1 // indirect
|
|
41
52
|
github.com/cosmos/go-bip39 v1.0.0 // indirect
|
|
42
53
|
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
|
|
54
|
+
github.com/cosmos/iavl v0.19.5 // indirect
|
|
55
|
+
github.com/cosmos/ledger-cosmos-go v0.12.2 // indirect
|
|
46
56
|
github.com/creachadair/taskgroup v0.3.2 // indirect
|
|
47
|
-
github.com/danieljoos/wincred v1.1.
|
|
57
|
+
github.com/danieljoos/wincred v1.1.2 // indirect
|
|
48
58
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
59
|
+
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
|
|
49
60
|
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect
|
|
50
|
-
github.com/dgraph-io/badger/v2 v2.2007.
|
|
61
|
+
github.com/dgraph-io/badger/v2 v2.2007.4 // indirect
|
|
51
62
|
github.com/dgraph-io/ristretto v0.0.3 // indirect
|
|
52
63
|
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
|
|
53
64
|
github.com/dustin/go-humanize v1.0.0 // indirect
|
|
54
|
-
github.com/dvsekhvalnov/jose2go
|
|
65
|
+
github.com/dvsekhvalnov/jose2go v1.5.0 // indirect
|
|
55
66
|
github.com/felixge/httpsnoop v1.0.2 // indirect
|
|
56
|
-
github.com/fsnotify/fsnotify v1.
|
|
67
|
+
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
68
|
+
github.com/getsentry/sentry-go v0.17.0 // indirect
|
|
57
69
|
github.com/ghodss/yaml v1.0.0 // indirect
|
|
58
70
|
github.com/go-kit/kit v0.12.0 // indirect
|
|
59
71
|
github.com/go-kit/log v0.2.1 // indirect
|
|
@@ -62,7 +74,7 @@ require (
|
|
|
62
74
|
github.com/gogo/gateway v1.1.0 // indirect
|
|
63
75
|
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
|
|
64
76
|
github.com/golang/snappy v0.0.4 // indirect
|
|
65
|
-
github.com/google/btree v1.
|
|
77
|
+
github.com/google/btree v1.1.2 // indirect
|
|
66
78
|
github.com/google/gofuzz v1.2.0 // indirect
|
|
67
79
|
github.com/google/orderedcode v0.0.1 // indirect
|
|
68
80
|
github.com/gorilla/handlers v1.5.1 // indirect
|
|
@@ -72,16 +84,18 @@ require (
|
|
|
72
84
|
github.com/gtank/merlin v0.1.1 // indirect
|
|
73
85
|
github.com/gtank/ristretto255 v0.1.2 // indirect
|
|
74
86
|
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
|
|
75
|
-
github.com/hashicorp/golang-lru v0.5.
|
|
87
|
+
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect
|
|
76
88
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
77
|
-
github.com/hdevalence/ed25519consensus v0.0.0-
|
|
89
|
+
github.com/hdevalence/ed25519consensus v0.0.0-20220222234857-c00d1f31bab3 // indirect
|
|
78
90
|
github.com/improbable-eng/grpc-web v0.14.1 // indirect
|
|
79
91
|
github.com/inconshreveable/mousetrap v1.0.1 // indirect
|
|
80
92
|
github.com/jmhodges/levigo v1.0.0 // indirect
|
|
81
|
-
github.com/keybase/go-keychain v0.0.0-20190712205309-48d3d31d256d // indirect
|
|
82
93
|
github.com/klauspost/compress v1.15.11 // indirect
|
|
94
|
+
github.com/kr/pretty v0.3.1 // indirect
|
|
95
|
+
github.com/kr/text v0.2.0 // indirect
|
|
83
96
|
github.com/lib/pq v1.10.6 // indirect
|
|
84
97
|
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
|
|
98
|
+
github.com/linxGnu/grocksdb v1.7.10 // indirect
|
|
85
99
|
github.com/magiconair/properties v1.8.6 // indirect
|
|
86
100
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
87
101
|
github.com/mattn/go-isatty v0.0.16 // indirect
|
|
@@ -94,27 +108,29 @@ require (
|
|
|
94
108
|
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
|
|
95
109
|
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
|
|
96
110
|
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.
|
|
111
|
+
github.com/prometheus/client_golang v1.14.0 // indirect
|
|
112
|
+
github.com/prometheus/client_model v0.3.0 // indirect
|
|
113
|
+
github.com/prometheus/common v0.37.0 // indirect
|
|
100
114
|
github.com/prometheus/procfs v0.8.0 // indirect
|
|
101
115
|
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
|
|
102
116
|
github.com/regen-network/cosmos-proto v0.3.1 // indirect
|
|
117
|
+
github.com/rogpeppe/go-internal v1.9.0 // indirect
|
|
103
118
|
github.com/rs/cors v1.8.2 // indirect
|
|
104
119
|
github.com/rs/zerolog v1.27.0 // indirect
|
|
105
120
|
github.com/sasha-s/go-deadlock v0.3.1 // indirect
|
|
106
|
-
github.com/spf13/afero v1.
|
|
121
|
+
github.com/spf13/afero v1.9.2 // indirect
|
|
107
122
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
108
123
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
109
124
|
github.com/subosito/gotenv v1.4.1 // indirect
|
|
110
125
|
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect
|
|
111
|
-
github.com/
|
|
112
|
-
github.com/tendermint/crypto v0.0.0-20191022145703-50d29ede1e15 // indirect
|
|
126
|
+
github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c // indirect
|
|
113
127
|
github.com/tendermint/go-amino v0.16.0 // indirect
|
|
114
|
-
github.com/
|
|
128
|
+
github.com/tidwall/btree v1.5.0 // indirect
|
|
129
|
+
github.com/zondax/hid v0.9.1 // indirect
|
|
130
|
+
github.com/zondax/ledger-go v0.14.1 // indirect
|
|
115
131
|
go.etcd.io/bbolt v1.3.6 // indirect
|
|
116
|
-
golang.org/x/crypto v0.
|
|
117
|
-
golang.org/x/exp v0.0.0-
|
|
132
|
+
golang.org/x/crypto v0.5.0 // indirect
|
|
133
|
+
golang.org/x/exp v0.0.0-20221019170559-20944726eadf // indirect
|
|
118
134
|
golang.org/x/net v0.7.0 // indirect
|
|
119
135
|
golang.org/x/sys v0.5.0 // indirect
|
|
120
136
|
golang.org/x/term v0.5.0 // indirect
|
|
@@ -125,14 +141,11 @@ require (
|
|
|
125
141
|
nhooyr.io/websocket v1.8.6 // indirect
|
|
126
142
|
)
|
|
127
143
|
|
|
128
|
-
// Silence a warning on MacOS
|
|
129
|
-
replace github.com/keybase/go-keychain => github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4
|
|
130
|
-
|
|
131
144
|
// At least until post-v0.9.0 is released with
|
|
132
145
|
// https://github.com/Zondax/hid/issues/4 resolved.
|
|
133
146
|
replace github.com/zondax/hid => github.com/zondax/hid v0.9.1-0.20220302062450-5552068d2266
|
|
134
147
|
|
|
135
|
-
replace github.com/99designs/keyring => github.com/cosmos/keyring v1.
|
|
148
|
+
replace github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0
|
|
136
149
|
|
|
137
150
|
replace github.com/confio/ics23/go => github.com/agoric-labs/cosmos-sdk/ics23/go v0.8.0-alpha.agoric.1
|
|
138
151
|
|
|
@@ -142,14 +155,11 @@ replace google.golang.org/grpc => google.golang.org/grpc v1.33.2
|
|
|
142
155
|
|
|
143
156
|
// At least until post-v0.34.14 is released with
|
|
144
157
|
// https://github.com/tendermint/tendermint/issue/6899 resolved.
|
|
145
|
-
replace github.com/tendermint/tendermint => github.com/agoric-labs/
|
|
158
|
+
replace github.com/tendermint/tendermint => github.com/agoric-labs/cometbft v0.34.27-alpha.agoric.3
|
|
146
159
|
|
|
147
160
|
// We need a fork of cosmos-sdk until all of the differences are merged.
|
|
148
|
-
replace github.com/cosmos/cosmos-sdk => github.com/agoric-labs/cosmos-sdk v0.45.
|
|
149
|
-
|
|
150
|
-
replace github.com/cosmos/gaia/v7 => github.com/Agoric/ag0/v7 v7.0.2-alpha.agoric.1
|
|
161
|
+
replace github.com/cosmos/cosmos-sdk => github.com/agoric-labs/cosmos-sdk v0.45.16-alpha.agoric.2
|
|
151
162
|
|
|
152
163
|
// For testing against a local cosmos-sdk or tendermint
|
|
153
164
|
// replace github.com/cosmos/cosmos-sdk => ../../../forks/cosmos-sdk
|
|
154
|
-
|
|
155
165
|
// replace github.com/tendermint/tendermint => ../../../forks/tendermint
|