Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes for heimdall v2 init, new msg for updateParams #19

Merged
merged 27 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
9a6caff
chg: remove validatorUpdates check
marcello33 Sep 4, 2024
23e44f9
add: enable VEs height
marcello33 Sep 4, 2024
9b6d15f
chg: make StakeKeeper public in gov
marcello33 Sep 4, 2024
5d19d6b
chg: better context for comment
marcello33 Sep 4, 2024
8a29e86
chg: revert public StakeKeeper in gov module
marcello33 Sep 5, 2024
4e54783
chg: enable VEs at block 1
marcello33 Sep 5, 2024
3e9bb00
chg: restore validatorUpdates check as WriteValidators has been imple…
marcello33 Sep 12, 2024
3320287
chg: replace eth with bor
marcello33 Sep 17, 2024
146235c
chg: install new comet version
marcello33 Sep 17, 2024
0a5eacb
chg: bump comet
marcello33 Sep 17, 2024
f54ebb5
chg: comment on SigSize check deletion according to changes in comet
marcello33 Sep 17, 2024
016da82
chg: restore sig check and bump comet
marcello33 Sep 18, 2024
d6897d2
chg: update VEHeight to 100 for testing
marcello33 Sep 20, 2024
f6cae67
add: new MsgUpdateParams / fix tests / bump heimdall
marcello33 Sep 26, 2024
8f50359
chg: pos-2695: replace stake module and skip some tests due to pos-2540
marcello33 Oct 2, 2024
590ce87
chg: fix simmetry in hex codec functions and add tests
marcello33 Oct 4, 2024
f4cdfd0
chg: additional checks on address hex codec
marcello33 Oct 7, 2024
0c645c8
chg: export RunTx
marcello33 Oct 7, 2024
e5ca416
POS-2622: chg: address consistency
marcello33 Oct 8, 2024
09e70f0
POS-2622: fix: function name
marcello33 Oct 8, 2024
08f48b4
POS-2700: fix: allow one msg per tx
marcello33 Oct 8, 2024
7b5b5c5
POS-2492: chg: pubKey checks / address utilities validations / enable…
marcello33 Oct 9, 2024
e5343e1
chg: solve several TODOs
marcello33 Oct 9, 2024
6cafe2a
chg: rename matic to pol
marcello33 Oct 10, 2024
ed6940b
import pos-2624 stake validator key as bytes
marcello33 Oct 10, 2024
c57d7e6
Revert "POS-2700: fix: allow one msg per tx"
marcello33 Oct 14, 2024
4fb1b9e
chg: make runTx private again
marcello33 Oct 14, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 26 additions & 23 deletions client/v2/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ require (
cosmossdk.io/x/tx v0.12.0
github.com/cockroachdb/errors v1.11.1
github.com/cosmos/cosmos-proto v1.0.0-beta.3
github.com/cosmos/cosmos-sdk v0.50.1
github.com/cosmos/cosmos-sdk v0.50.6
github.com/spf13/cobra v1.8.0
github.com/spf13/pflag v1.0.5
google.golang.org/grpc v1.60.1
google.golang.org/protobuf v1.33.0
google.golang.org/grpc v1.66.0
google.golang.org/protobuf v1.34.2
gotest.tools/v3 v3.5.1
sigs.k8s.io/yaml v1.4.0
)
Expand All @@ -33,10 +33,10 @@ require (
github.com/DataDog/zstd v1.5.5 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.3.3 // indirect
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
github.com/cespare/xxhash v1.1.0 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
github.com/cockroachdb/pebble v1.1.0 // indirect
github.com/cockroachdb/redact v1.1.5 // indirect
Expand All @@ -61,7 +61,7 @@ require (
github.com/dvsekhvalnov/jose2go v1.7.0 // indirect
github.com/emicklei/dot v1.6.1 // indirect
github.com/ethereum/go-ethereum v1.13.15 // indirect
github.com/fatih/color v1.15.0 // indirect
github.com/fatih/color v1.17.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/getsentry/sentry-go v0.27.0 // indirect
Expand All @@ -71,7 +71,7 @@ require (
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
github.com/gogo/googleapis v1.4.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/glog v1.2.0 // indirect
github.com/golang/glog v1.2.1 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
Expand All @@ -80,7 +80,7 @@ require (
github.com/google/orderedcode v0.0.1 // indirect
github.com/gorilla/handlers v1.5.2 // indirect
github.com/gorilla/mux v1.8.1 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/gorilla/websocket v1.5.2 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
Expand Down Expand Up @@ -123,16 +123,16 @@ require (
github.com/prometheus/procfs v0.13.0 // indirect
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
github.com/rs/cors v1.10.1 // indirect
github.com/rs/cors v1.11.0 // indirect
github.com/rs/zerolog v1.32.0 // indirect
github.com/sagikazarmark/locafero v0.4.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sasha-s/go-deadlock v0.3.1 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/spf13/viper v1.18.1 // indirect
github.com/stretchr/testify v1.8.4 // indirect
github.com/spf13/viper v1.18.2 // indirect
github.com/stretchr/testify v1.9.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
github.com/tendermint/go-amino v0.16.0 // indirect
Expand All @@ -141,16 +141,16 @@ require (
github.com/zondax/ledger-go v0.14.3 // indirect
go.etcd.io/bbolt v1.3.8 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/exp v0.0.0-20240314144324-c7f7c6466f7f // indirect
golang.org/x/net v0.22.0 // indirect
golang.org/x/sync v0.6.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/term v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto v0.0.0-20240102182953-50ed04b92917 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240116215550-a9fa1716bcac // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240116215550-a9fa1716bcac // indirect
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8 // indirect
golang.org/x/net v0.28.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.24.0 // indirect
golang.org/x/term v0.23.0 // indirect
golang.org/x/text v0.17.0 // indirect
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240822170219-fc7c04adadcd // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240822170219-fc7c04adadcd // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
nhooyr.io/websocket v1.8.7 // indirect
Expand All @@ -163,7 +163,10 @@ replace (
cosmossdk.io/core => github.com/0xPolygon/cosmos-sdk/core v0.11.0
cosmossdk.io/depinject => github.com/0xPolygon/cosmos-sdk/depinject v1.0.0-alpha.4
cosmossdk.io/x/tx => github.com/0xPolygon/cosmos-sdk/x/tx v0.12.0
github.com/cometbft/cometbft => github.com/0xPolygon/cometbft v0.1.0-beta
github.com/cometbft/cometbft => github.com/0xPolygon/cometbft v0.1.0-beta.0.20240918084709-e40563677887

// TODO HV2: replace with a release version once development is completed
github.com/cosmos/cosmos-sdk => ./../../

github.com/ethereum/go-ethereum => github.com/maticnetwork/bor v1.4.0
)
Loading
Loading