Skip to content

Commit 1f0ce2f

Browse files
authored
refactor(sims)!: Remove Baseapp from sims (#21039)
1 parent b536d11 commit 1f0ce2f

File tree

36 files changed

+140
-255
lines changed

36 files changed

+140
-255
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,4 @@ debug_container.log
6363
*.synctex.gz
6464
/x/genutil/config/priv_validator_key.json
6565
/x/genutil/data/priv_validator_state.json
66+
simapp/simapp.test

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Every module contains its own CHANGELOG.md. Please refer to the module you are i
120120
* (testutil/integration) [#21006](https://github.com/cosmos/cosmos-sdk/pull/21006) Fix `NewIntegrationApp` method not writing default genesis to state
121121

122122
### API Breaking Changes
123-
123+
* (sims) [#21039](https://github.com/cosmos/cosmos-sdk/pull/21039): Remove Baseapp from sims by a new interface `simtypes.AppEntrypoint`
124124
* (client) [#20976](https://github.com/cosmos/cosmos-sdk/pull/20976) Simplified command initialization by removing unnecessary parameters such as `txConfig` and `addressCodec`.
125125
* Remove parameter `txConfig` from `genutilcli.Commands`,`genutilcli.CommandsWithCustomMigrationMap`,`genutilcli.GenTxCmd`.
126126
* Remove parameter `addressCodec` from `genutilcli.GenTxCmd`,`genutilcli.AddGenesisAccountCmd`,`stakingcli.BuildCreateValidatorMsg`.

server/v2/cometbft/go.mod

-12
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ require (
5252
cosmossdk.io/depinject v1.0.0 // indirect
5353
cosmossdk.io/log v1.3.1 // indirect
5454
cosmossdk.io/math v1.3.0 // indirect
55-
cosmossdk.io/schema v0.1.1 // indirect
5655
cosmossdk.io/store v1.1.1-0.20240418092142-896cdf1971bc // indirect
5756
cosmossdk.io/x/auth v0.0.0-00010101000000-000000000000 // indirect
5857
cosmossdk.io/x/bank v0.0.0-20240226161501-23359a0b6d91 // indirect
@@ -61,9 +60,7 @@ require (
6160
filippo.io/edwards25519 v1.1.0 // indirect
6261
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
6362
github.com/99designs/keyring v1.2.2 // indirect
64-
github.com/DataDog/datadog-go v4.8.3+incompatible // indirect
6563
github.com/DataDog/zstd v1.5.5 // indirect
66-
github.com/Microsoft/go-winio v0.6.1 // indirect
6764
github.com/beorn7/perks v1.0.1 // indirect
6865
github.com/bgentry/speakeasy v0.2.0 // indirect
6966
github.com/btcsuite/btcd/btcec/v2 v2.3.3 // indirect
@@ -78,7 +75,6 @@ require (
7875
github.com/cosmos/cosmos-db v1.0.2 // indirect
7976
github.com/cosmos/crypto v0.1.2 // indirect
8077
github.com/cosmos/go-bip39 v1.0.0 // indirect
81-
github.com/cosmos/gogogateway v1.2.0 // indirect
8278
github.com/cosmos/iavl v1.2.0 // indirect
8379
github.com/cosmos/ics23/go v0.10.0 // indirect
8480
github.com/cosmos/ledger-cosmos-go v0.13.3 // indirect
@@ -91,15 +87,13 @@ require (
9187
github.com/dvsekhvalnov/jose2go v1.6.0 // indirect
9288
github.com/emicklei/dot v1.6.2 // indirect
9389
github.com/fatih/color v1.17.0 // indirect
94-
github.com/felixge/httpsnoop v1.0.4 // indirect
9590
github.com/fsnotify/fsnotify v1.7.0 // indirect
9691
github.com/getsentry/sentry-go v0.27.0 // indirect
9792
github.com/go-kit/kit v0.13.0 // indirect
9893
github.com/go-kit/log v0.2.1 // indirect
9994
github.com/go-logfmt/logfmt v0.6.0 // indirect
10095
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
10196
github.com/gofrs/uuid v4.4.0+incompatible // indirect
102-
github.com/gogo/googleapis v1.4.1 // indirect
10397
github.com/gogo/protobuf v1.3.2 // indirect
10498
github.com/golang/glog v1.2.0 // indirect
10599
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
@@ -108,10 +102,7 @@ require (
108102
github.com/google/flatbuffers v2.0.8+incompatible // indirect
109103
github.com/google/go-cmp v0.6.0 // indirect
110104
github.com/google/orderedcode v0.0.1 // indirect
111-
github.com/gorilla/handlers v1.5.2 // indirect
112-
github.com/gorilla/mux v1.8.1 // indirect
113105
github.com/gorilla/websocket v1.5.3 // indirect
114-
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
115106
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
116107
github.com/hashicorp/go-hclog v1.6.3 // indirect
117108
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
@@ -122,7 +113,6 @@ require (
122113
github.com/hashicorp/hcl v1.0.0 // indirect
123114
github.com/hashicorp/yamux v0.1.1 // indirect
124115
github.com/hdevalence/ed25519consensus v0.2.0 // indirect
125-
github.com/huandu/skiplist v1.2.0 // indirect
126116
github.com/iancoleman/strcase v0.3.0 // indirect
127117
github.com/inconshreveable/mousetrap v1.1.0 // indirect
128118
github.com/jmhodges/levigo v1.0.0 // indirect
@@ -175,13 +165,11 @@ require (
175165
go.uber.org/multierr v1.11.0 // indirect
176166
golang.org/x/crypto v0.25.0 // indirect
177167
golang.org/x/exp v0.0.0-20240531132922-fd00a4e0eefc // indirect
178-
golang.org/x/mod v0.17.0 // indirect
179168
golang.org/x/net v0.27.0 // indirect
180169
golang.org/x/sync v0.7.0 // indirect
181170
golang.org/x/sys v0.22.0 // indirect
182171
golang.org/x/term v0.22.0 // indirect
183172
golang.org/x/text v0.16.0 // indirect
184-
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
185173
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
186174
google.golang.org/genproto/googleapis/rpc v0.0.0-20240709173604-40e1e62336c5 // indirect
187175
gopkg.in/ini.v1 v1.67.0 // indirect

0 commit comments

Comments
 (0)