Skip to content

Commit 397ed00

Browse files
committed
merge master-feed into master-tss
2 parents 90b5988 + 7d418fd commit 397ed00

File tree

104 files changed

+7672
-3209
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+7672
-3209
lines changed

app/params/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ It contains the default weights used for each transaction used on the module's
55
simulation. These weights define the chance for a transaction to be simulated at
66
any gived operation.
77
8-
You can repace the default values for the weights by providing a params.json
8+
You can replace the default values for the weights by providing a params.json
99
file with the weights defined for each of the transaction operations:
1010
1111
{

app/upgrades/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ type Upgrade struct {
2626
StoreUpgrades store.StoreUpgrades
2727
}
2828

29-
// BaseAppParamManager defines an interrace that BaseApp is expected to fullfil
29+
// BaseAppParamManager defines an interface that BaseApp is expected to fulfill
3030
// that allows upgrade handlers to modify BaseApp parameters.
3131
type AppManager interface {
3232
GetConsensusParams(ctx sdk.Context) *tmproto.ConsensusParams

cmd/grogu/cmd/utils.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ package cmd
33
import (
44
"fmt"
55

6+
rpcclient "github.com/cometbft/cometbft/rpc/client"
67
"github.com/cometbft/cometbft/rpc/client/http"
78
)
89

9-
func createClients(nodeURIs []string) ([]*http.HTTP, func(), error) {
10-
clients := make([]*http.HTTP, 0, len(nodeURIs))
10+
func createClients(nodeURIs []string) ([]rpcclient.RemoteClient, func(), error) {
11+
clients := make([]rpcclient.RemoteClient, 0, len(nodeURIs))
1112
for _, uri := range nodeURIs {
1213
httpClient, err := http.New(uri, "/websocket")
1314
if err != nil {

go.mod

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ require (
1010
github.com/bandprotocol/bothan/bothan-api/client/go-client v0.0.1-alpha.1
1111
github.com/bandprotocol/go-owasm v0.3.1
1212
github.com/bytecodealliance/wasmtime-go/v20 v20.0.0
13-
github.com/cometbft/cometbft v0.37.5
13+
github.com/cometbft/cometbft v0.37.9
1414
github.com/cometbft/cometbft-db v0.10.0
1515
github.com/confio/ics23/go v0.9.0
1616
github.com/cosmos/cosmos-proto v1.0.0-beta.5
17-
github.com/cosmos/cosmos-sdk v0.47.11
17+
github.com/cosmos/cosmos-sdk v0.47.13
1818
github.com/cosmos/go-bip39 v1.0.0
1919
github.com/cosmos/gogoproto v1.4.10
20-
github.com/cosmos/ibc-go/v7 v7.5.0
20+
github.com/cosmos/ibc-go/v7 v7.6.0
2121
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0
22-
github.com/ethereum/go-ethereum v1.11.6
22+
github.com/ethereum/go-ethereum v1.14.7
2323
github.com/golang/protobuf v1.5.4
2424
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
2525
github.com/gorilla/mux v1.8.1
@@ -32,24 +32,23 @@ require (
3232
github.com/prometheus/client_golang v1.14.0
3333
github.com/rakyll/statik v0.1.7
3434
github.com/spf13/cast v1.6.0
35-
github.com/spf13/cobra v1.8.0
36-
github.com/spf13/viper v1.18.2
35+
github.com/spf13/cobra v1.8.1
36+
github.com/spf13/viper v1.19.0
3737
github.com/stretchr/testify v1.9.0
3838
go.uber.org/mock v0.4.0
39-
golang.org/x/crypto v0.21.0
40-
google.golang.org/genproto/googleapis/api v0.0.0-20240506185236-b8a5c65736ae
41-
google.golang.org/grpc v1.63.2
42-
google.golang.org/protobuf v1.34.1
39+
golang.org/x/crypto v0.23.0
40+
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157
41+
google.golang.org/grpc v1.65.0
42+
google.golang.org/protobuf v1.34.2
4343
gopkg.in/yaml.v2 v2.4.0
4444
sigs.k8s.io/yaml v1.4.0
4545
)
4646

4747
require (
48-
cloud.google.com/go v0.112.0 // indirect
49-
cloud.google.com/go/compute v1.24.0 // indirect
50-
cloud.google.com/go/compute/metadata v0.2.3 // indirect
48+
cloud.google.com/go v0.112.1 // indirect
49+
cloud.google.com/go/compute/metadata v0.3.0 // indirect
5150
cloud.google.com/go/iam v1.1.6 // indirect
52-
cloud.google.com/go/storage v1.36.0 // indirect
51+
cloud.google.com/go/storage v1.38.0 // indirect
5352
cosmossdk.io/depinject v1.0.0-alpha.4 // indirect
5453
cosmossdk.io/log v1.3.1 // indirect
5554
cosmossdk.io/tools/rosetta v0.2.1 // indirect
@@ -66,13 +65,15 @@ require (
6665
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
6766
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
6867
github.com/cespare/xxhash v1.1.0 // indirect
69-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
68+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
7069
github.com/chzyer/readline v1.5.1 // indirect
7170
github.com/cockroachdb/apd/v2 v2.0.2 // indirect
72-
github.com/cockroachdb/errors v1.10.0 // indirect
71+
github.com/cockroachdb/errors v1.11.3 // indirect
72+
github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce // indirect
7373
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
74-
github.com/cockroachdb/pebble v1.0.0 // indirect
74+
github.com/cockroachdb/pebble v1.1.1 // indirect
7575
github.com/cockroachdb/redact v1.1.5 // indirect
76+
github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 // indirect
7677
github.com/coinbase/rosetta-sdk-go/types v1.0.0 // indirect
7778
github.com/cosmos/btcutil v1.0.5 // indirect
7879
github.com/cosmos/gogogateway v1.2.0 // indirect
@@ -91,7 +92,7 @@ require (
9192
github.com/dvsekhvalnov/jose2go v1.6.0 // indirect
9293
github.com/felixge/httpsnoop v1.0.4 // indirect
9394
github.com/fsnotify/fsnotify v1.7.0 // indirect
94-
github.com/getsentry/sentry-go v0.23.0 // indirect
95+
github.com/getsentry/sentry-go v0.27.0 // indirect
9596
github.com/go-kit/kit v0.12.0 // indirect
9697
github.com/go-kit/log v0.2.1 // indirect
9798
github.com/go-logfmt/logfmt v0.6.0 // indirect
@@ -100,7 +101,7 @@ require (
100101
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
101102
github.com/gogo/googleapis v1.4.1 // indirect
102103
github.com/gogo/protobuf v1.3.2 // indirect
103-
github.com/golang/glog v1.2.0 // indirect
104+
github.com/golang/glog v1.2.1 // indirect
104105
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
105106
github.com/golang/mock v1.6.0 // indirect
106107
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
@@ -111,7 +112,7 @@ require (
111112
github.com/google/s2a-go v0.1.7 // indirect
112113
github.com/google/uuid v1.6.0 // indirect
113114
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
114-
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
115+
github.com/googleapis/gax-go/v2 v2.12.3 // indirect
115116
github.com/gorilla/handlers v1.5.1 // indirect
116117
github.com/gorilla/websocket v1.5.0 // indirect
117118
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
@@ -120,24 +121,24 @@ require (
120121
github.com/gtank/merlin v0.1.1 // indirect
121122
github.com/gtank/ristretto255 v0.1.2 // indirect
122123
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
123-
github.com/hashicorp/go-getter v1.7.4 // indirect
124+
github.com/hashicorp/go-getter v1.7.5 // indirect
124125
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
125126
github.com/hashicorp/go-safetemp v1.0.0 // indirect
126127
github.com/hashicorp/go-version v1.6.0 // indirect
127128
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect
129+
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
128130
github.com/hashicorp/hcl v1.0.0 // indirect
129131
github.com/hdevalence/ed25519consensus v0.1.0 // indirect
130-
github.com/holiman/uint256 v1.2.2-0.20230321075855-87b91420868c // indirect
132+
github.com/holiman/uint256 v1.3.0 // indirect
131133
github.com/huandu/skiplist v1.2.0 // indirect
132134
github.com/improbable-eng/grpc-web v0.15.0 // indirect
133135
github.com/inconshreveable/mousetrap v1.1.0 // indirect
134136
github.com/jmespath/go-jmespath v0.4.0 // indirect
135137
github.com/jmhodges/levigo v1.0.0 // indirect
136-
github.com/klauspost/compress v1.17.0 // indirect
138+
github.com/klauspost/compress v1.17.2 // indirect
137139
github.com/kr/pretty v0.3.1 // indirect
138140
github.com/kr/text v0.2.0 // indirect
139141
github.com/lib/pq v1.10.7 // indirect
140-
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
141142
github.com/linxGnu/grocksdb v1.8.11 // indirect
142143
github.com/magiconair/properties v1.8.7 // indirect
143144
github.com/manifoldco/promptui v0.9.0 // indirect
@@ -149,7 +150,7 @@ require (
149150
github.com/mitchellh/go-homedir v1.1.0 // indirect
150151
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
151152
github.com/mtibben/percent v0.2.1 // indirect
152-
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
153+
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
153154
github.com/petermattis/goid v0.0.0-20230317030725-371a4b8eda08 // indirect
154155
github.com/pkg/errors v0.9.1 // indirect
155156
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
@@ -175,24 +176,23 @@ require (
175176
github.com/zondax/ledger-go v0.14.3 // indirect
176177
go.etcd.io/bbolt v1.3.8 // indirect
177178
go.opencensus.io v0.24.0 // indirect
178-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0 // indirect
179-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect
180-
go.opentelemetry.io/otel v1.22.0 // indirect
181-
go.opentelemetry.io/otel/metric v1.22.0 // indirect
182-
go.opentelemetry.io/otel/trace v1.22.0 // indirect
179+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
180+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
181+
go.opentelemetry.io/otel v1.24.0 // indirect
182+
go.opentelemetry.io/otel/metric v1.24.0 // indirect
183+
go.opentelemetry.io/otel/trace v1.24.0 // indirect
183184
go.uber.org/multierr v1.11.0 // indirect
184-
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
185-
golang.org/x/net v0.23.0 // indirect
186-
golang.org/x/oauth2 v0.17.0 // indirect
187-
golang.org/x/sync v0.6.0 // indirect
188-
golang.org/x/sys v0.18.0 // indirect
189-
golang.org/x/term v0.18.0 // indirect
190-
golang.org/x/text v0.14.0 // indirect
185+
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect
186+
golang.org/x/net v0.25.0 // indirect
187+
golang.org/x/oauth2 v0.20.0 // indirect
188+
golang.org/x/sync v0.7.0 // indirect
189+
golang.org/x/sys v0.20.0 // indirect
190+
golang.org/x/term v0.20.0 // indirect
191+
golang.org/x/text v0.15.0 // indirect
191192
golang.org/x/time v0.5.0 // indirect
192-
google.golang.org/api v0.162.0 // indirect
193-
google.golang.org/appengine v1.6.8 // indirect
193+
google.golang.org/api v0.171.0 // indirect
194194
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
195-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6 // indirect
195+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157 // indirect
196196
gopkg.in/ini.v1 v1.67.0 // indirect
197197
gopkg.in/yaml.v3 v3.0.1 // indirect
198198
nhooyr.io/websocket v1.8.6 // indirect

0 commit comments

Comments
 (0)