@agoric/cosmos 0.35.0-u18.5 → 0.35.0-u18a.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 +14 -0
- package/app/app.go +1 -1
- package/app/upgrade.go +4 -190
- package/git-revision.txt +1 -1
- package/go.mod +82 -71
- package/go.sum +200 -167
- package/package.json +2 -2
- package/types/address_hooks.go +48 -19
- package/types/address_hooks_test.go +7 -4
- package/x/swingset/testing/queue.go +8 -0
- package/x/vibc/keeper/keeper.go +2 -5
- package/x/vibc/keeper/triggers.go +3 -6
- package/x/vibc/types/receiver.go +11 -5
- package/x/vstorage/testing/queue.go +6 -0
- package/x/vtransfer/ibc_middleware.go +5 -1
- package/x/vtransfer/ibc_middleware_test.go +510 -148
- package/x/vtransfer/keeper/keeper.go +190 -27
- package/x/vtransfer/utils_test.go +111 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.35.0-u18a.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.35.0-u18.5...@agoric/cosmos@0.35.0-u18a.0) (2025-02-07)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **cosmos:** Next upgrade is agoric-upgrade-18a ([b87159a](https://github.com/Agoric/agoric-sdk/commit/b87159ad77c3c13ae0c2123cb1373d59463f68ef))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **vtransfer:** some tweaks for ack handling ([a6d295a](https://github.com/Agoric/agoric-sdk/commit/a6d295a730126580262f96c383a4c69412a2e54e))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
6
20
|
## [0.35.0-u18.5](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.35.0-u18.4...@agoric/cosmos@0.35.0-u18.5) (2024-12-24)
|
|
7
21
|
|
|
8
22
|
|
package/app/app.go
CHANGED
package/app/upgrade.go
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
package gaia
|
|
2
2
|
|
|
3
3
|
import (
|
|
4
|
-
"encoding/json"
|
|
5
4
|
"fmt"
|
|
6
|
-
"reflect"
|
|
7
|
-
"strings"
|
|
8
|
-
"text/template"
|
|
9
5
|
|
|
10
6
|
"github.com/Agoric/agoric-sdk/golang/cosmos/vm"
|
|
11
7
|
swingsetkeeper "github.com/Agoric/agoric-sdk/golang/cosmos/x/swingset/keeper"
|
|
@@ -15,13 +11,7 @@ import (
|
|
|
15
11
|
)
|
|
16
12
|
|
|
17
13
|
var upgradeNamesOfThisVersion = []string{
|
|
18
|
-
"agoric-upgrade-
|
|
19
|
-
"agoric-upgrade-18-devnet",
|
|
20
|
-
"agoric-upgrade-18-emerynet",
|
|
21
|
-
"agoric-upgrade-18-basic",
|
|
22
|
-
"agoric-upgrade-18-basic-2",
|
|
23
|
-
"agoric-upgrade-18-emerynet-rc3",
|
|
24
|
-
"agoric-upgrade-18-a3p",
|
|
14
|
+
"agoric-upgrade-18a",
|
|
25
15
|
}
|
|
26
16
|
|
|
27
17
|
// isUpgradeNameOfThisVersion returns whether the provided plan name is a
|
|
@@ -55,15 +45,8 @@ func isPrimaryUpgradeName(name string) bool {
|
|
|
55
45
|
return false
|
|
56
46
|
}
|
|
57
47
|
switch name {
|
|
58
|
-
case validUpgradeName("agoric-upgrade-
|
|
59
|
-
validUpgradeName("agoric-upgrade-18-devnet"),
|
|
60
|
-
validUpgradeName("agoric-upgrade-18-emerynet"),
|
|
61
|
-
validUpgradeName("agoric-upgrade-18-basic"),
|
|
62
|
-
validUpgradeName("agoric-upgrade-18-a3p"):
|
|
48
|
+
case validUpgradeName("agoric-upgrade-18a"):
|
|
63
49
|
return true
|
|
64
|
-
case validUpgradeName("agoric-upgrade-18-basic-2"),
|
|
65
|
-
validUpgradeName("agoric-upgrade-18-emerynet-rc3"):
|
|
66
|
-
return false
|
|
67
50
|
default:
|
|
68
51
|
panic(fmt.Errorf("unexpected upgrade name %s", validUpgradeName(name)))
|
|
69
52
|
}
|
|
@@ -80,118 +63,6 @@ func isFirstTimeUpgradeOfThisVersion(app *GaiaApp, ctx sdk.Context) bool {
|
|
|
80
63
|
return true
|
|
81
64
|
}
|
|
82
65
|
|
|
83
|
-
func buildProposalStepWithArgs(moduleName string, entrypoint string, extra any) (vm.CoreProposalStep, error) {
|
|
84
|
-
t := template.Must(template.New("").Parse(`{
|
|
85
|
-
"module": "{{.moduleName}}",
|
|
86
|
-
"entrypoint": "{{.entrypoint}}",
|
|
87
|
-
"args": {{.args}}
|
|
88
|
-
}`))
|
|
89
|
-
|
|
90
|
-
var args []byte
|
|
91
|
-
var err error
|
|
92
|
-
if extra == nil {
|
|
93
|
-
// The specified entrypoint will be called with no extra arguments after powers.
|
|
94
|
-
args = []byte(`[]`)
|
|
95
|
-
} else if reflect.TypeOf(extra).Kind() == reflect.Map && reflect.TypeOf(extra).Key().Kind() == reflect.String {
|
|
96
|
-
// The specified entrypoint will be called with this options argument after powers.
|
|
97
|
-
args, err = json.Marshal([]any{extra})
|
|
98
|
-
} else if reflect.TypeOf(extra).Kind() == reflect.Slice {
|
|
99
|
-
// The specified entrypoint will be called with each of these arguments after powers.
|
|
100
|
-
args, err = json.Marshal(extra)
|
|
101
|
-
} else {
|
|
102
|
-
return nil, fmt.Errorf("proposal extra must be nil, array, or string map, not %v", extra)
|
|
103
|
-
}
|
|
104
|
-
if err != nil {
|
|
105
|
-
return nil, err
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
var result strings.Builder
|
|
109
|
-
err = t.Execute(&result, map[string]any{
|
|
110
|
-
"moduleName": moduleName,
|
|
111
|
-
"entrypoint": entrypoint,
|
|
112
|
-
"args": string(args),
|
|
113
|
-
})
|
|
114
|
-
if err != nil {
|
|
115
|
-
return nil, err
|
|
116
|
-
}
|
|
117
|
-
jsonStr := result.String()
|
|
118
|
-
jsonBz := []byte(jsonStr)
|
|
119
|
-
if !json.Valid(jsonBz) {
|
|
120
|
-
return nil, fmt.Errorf("invalid JSON: %s", jsonStr)
|
|
121
|
-
}
|
|
122
|
-
proposal := vm.ArbitraryCoreProposal{Json: jsonBz}
|
|
123
|
-
return vm.CoreProposalStepForModules(proposal), nil
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
func getVariantFromUpgradeName(upgradeName string) string {
|
|
127
|
-
switch upgradeName {
|
|
128
|
-
case "agoric-upgrade-18-mainnet":
|
|
129
|
-
return "MAINNET"
|
|
130
|
-
case "agoric-upgrade-18-devnet":
|
|
131
|
-
return "DEVNET"
|
|
132
|
-
case "agoric-upgrade-18-emerynet":
|
|
133
|
-
return "EMERYNET"
|
|
134
|
-
case "agoric-upgrade-18-basic":
|
|
135
|
-
return ""
|
|
136
|
-
case "agoric-upgrade-18-a3p":
|
|
137
|
-
return "A3P_INTEGRATION"
|
|
138
|
-
default:
|
|
139
|
-
return ""
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
func replaceElectorateCoreProposalStep(upgradeName string) (vm.CoreProposalStep, error) {
|
|
144
|
-
variant := getVariantFromUpgradeName(upgradeName)
|
|
145
|
-
|
|
146
|
-
if variant == "" {
|
|
147
|
-
return nil, nil
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
return buildProposalStepWithArgs(
|
|
151
|
-
"@agoric/builders/scripts/inter-protocol/replace-electorate-core.js",
|
|
152
|
-
"defaultProposalBuilder",
|
|
153
|
-
map[string]any{
|
|
154
|
-
"variant": variant,
|
|
155
|
-
},
|
|
156
|
-
)
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
func replacePriceFeedsCoreProposal(upgradeName string) (vm.CoreProposalStep, error) {
|
|
160
|
-
variant := getVariantFromUpgradeName(upgradeName)
|
|
161
|
-
|
|
162
|
-
if variant == "" {
|
|
163
|
-
return nil, nil
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
return buildProposalStepWithArgs(
|
|
167
|
-
"@agoric/builders/scripts/inter-protocol/updatePriceFeeds.js",
|
|
168
|
-
"defaultProposalBuilder",
|
|
169
|
-
map[string]any{
|
|
170
|
-
"variant": variant,
|
|
171
|
-
},
|
|
172
|
-
)
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
func terminateGovernorCoreProposal(upgradeName string) (vm.CoreProposalStep, error) {
|
|
176
|
-
// targets is a slice of "$boardID:$instanceKitLabel" strings.
|
|
177
|
-
var targets []string
|
|
178
|
-
switch getVariantFromUpgradeName(upgradeName) {
|
|
179
|
-
case "MAINNET":
|
|
180
|
-
targets = []string{"board052184:stkATOM-USD_price_feed"}
|
|
181
|
-
case "A3P_INTEGRATION":
|
|
182
|
-
targets = []string{"board04091:stATOM-USD_price_feed"}
|
|
183
|
-
default:
|
|
184
|
-
return nil, nil
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
return buildProposalStepWithArgs(
|
|
188
|
-
"@agoric/builders/scripts/vats/terminate-governor-instance.js",
|
|
189
|
-
// Request `defaultProposalBuilder(powers, targets)`.
|
|
190
|
-
"defaultProposalBuilder",
|
|
191
|
-
[]any{targets},
|
|
192
|
-
)
|
|
193
|
-
}
|
|
194
|
-
|
|
195
66
|
// func upgradeMintHolderCoreProposal(upgradeName string) (vm.CoreProposalStep, error) {
|
|
196
67
|
// variant := getVariantFromUpgradeName(upgradeName)
|
|
197
68
|
|
|
@@ -208,8 +79,8 @@ func terminateGovernorCoreProposal(upgradeName string) (vm.CoreProposalStep, err
|
|
|
208
79
|
// )
|
|
209
80
|
// }
|
|
210
81
|
|
|
211
|
-
//
|
|
212
|
-
func
|
|
82
|
+
// upgrade18aHandler performs standard upgrade actions plus custom actions for upgrade-18a.
|
|
83
|
+
func upgrade18aHandler(app *GaiaApp, targetUpgrade string) func(sdk.Context, upgradetypes.Plan, module.VersionMap) (module.VersionMap, error) {
|
|
213
84
|
return func(ctx sdk.Context, plan upgradetypes.Plan, fromVm module.VersionMap) (module.VersionMap, error) {
|
|
214
85
|
app.CheckControllerInited(false)
|
|
215
86
|
|
|
@@ -225,57 +96,6 @@ func upgrade18Handler(app *GaiaApp, targetUpgrade string) func(sdk.Context, upgr
|
|
|
225
96
|
return module.VersionMap{}, fmt.Errorf("cannot run %s as first upgrade", plan.Name)
|
|
226
97
|
}
|
|
227
98
|
|
|
228
|
-
replaceElectorateStep, err := replaceElectorateCoreProposalStep(targetUpgrade)
|
|
229
|
-
if err != nil {
|
|
230
|
-
return nil, err
|
|
231
|
-
} else if replaceElectorateStep != nil {
|
|
232
|
-
CoreProposalSteps = append(CoreProposalSteps, replaceElectorateStep)
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
priceFeedUpdate, err := replacePriceFeedsCoreProposal(targetUpgrade)
|
|
236
|
-
if err != nil {
|
|
237
|
-
return nil, err
|
|
238
|
-
} else if priceFeedUpdate != nil {
|
|
239
|
-
CoreProposalSteps = append(CoreProposalSteps,
|
|
240
|
-
priceFeedUpdate,
|
|
241
|
-
// The following have a dependency onto the price feed proposal
|
|
242
|
-
vm.CoreProposalStepForModules(
|
|
243
|
-
"@agoric/builders/scripts/vats/add-auction.js",
|
|
244
|
-
),
|
|
245
|
-
vm.CoreProposalStepForModules(
|
|
246
|
-
"@agoric/builders/scripts/vats/upgradeVaults.js",
|
|
247
|
-
),
|
|
248
|
-
)
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
// Each CoreProposalStep runs sequentially, and can be constructed from
|
|
252
|
-
// one or more modules executing in parallel within the step.
|
|
253
|
-
CoreProposalSteps = append(CoreProposalSteps,
|
|
254
|
-
vm.CoreProposalStepForModules(
|
|
255
|
-
// Upgrade Zoe (no new ZCF needed).
|
|
256
|
-
"@agoric/builders/scripts/vats/upgrade-zoe.js",
|
|
257
|
-
),
|
|
258
|
-
// Revive KREAd characters
|
|
259
|
-
vm.CoreProposalStepForModules(
|
|
260
|
-
"@agoric/builders/scripts/vats/revive-kread.js",
|
|
261
|
-
),
|
|
262
|
-
vm.CoreProposalStepForModules(
|
|
263
|
-
// Upgrade to include a cleanup from https://github.com/Agoric/agoric-sdk/pull/10319
|
|
264
|
-
"@agoric/builders/scripts/smart-wallet/build-wallet-factory2-upgrade.js",
|
|
265
|
-
),
|
|
266
|
-
vm.CoreProposalStepForModules(
|
|
267
|
-
"@agoric/builders/scripts/vats/upgrade-board.js",
|
|
268
|
-
),
|
|
269
|
-
)
|
|
270
|
-
|
|
271
|
-
// Upgrade vats using Vows in Upgrade 18 in order to use a new liveslots that
|
|
272
|
-
// avoids a memory leak in watchPromise.
|
|
273
|
-
CoreProposalSteps = append(CoreProposalSteps,
|
|
274
|
-
vm.CoreProposalStepForModules(
|
|
275
|
-
"@agoric/builders/scripts/vats/upgrade-orchestration.js",
|
|
276
|
-
),
|
|
277
|
-
)
|
|
278
|
-
|
|
279
99
|
// CoreProposals for Upgrade 19. These should not be introduced
|
|
280
100
|
// before upgrade 18 is done because they would be run in n:upgrade-next
|
|
281
101
|
//
|
|
@@ -307,12 +127,6 @@ func upgrade18Handler(app *GaiaApp, targetUpgrade string) func(sdk.Context, upgr
|
|
|
307
127
|
// ),
|
|
308
128
|
// )
|
|
309
129
|
|
|
310
|
-
terminateOldGovernor, err := terminateGovernorCoreProposal(targetUpgrade)
|
|
311
|
-
if err != nil {
|
|
312
|
-
return nil, err
|
|
313
|
-
} else if terminateOldGovernor != nil {
|
|
314
|
-
CoreProposalSteps = append(CoreProposalSteps, terminateOldGovernor)
|
|
315
|
-
}
|
|
316
130
|
}
|
|
317
131
|
|
|
318
132
|
app.upgradeDetails = &upgradeDetails{
|
package/git-revision.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
4e4d2b4ded
|
package/go.mod
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
module github.com/Agoric/agoric-sdk/golang/cosmos
|
|
2
2
|
|
|
3
|
-
go 1.
|
|
3
|
+
go 1.22.0
|
|
4
|
+
|
|
5
|
+
toolchain go1.22.12
|
|
4
6
|
|
|
5
7
|
require (
|
|
6
8
|
cosmossdk.io/errors v1.0.0-beta.7
|
|
@@ -10,46 +12,47 @@ require (
|
|
|
10
12
|
github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v6 v6.1.2
|
|
11
13
|
github.com/cosmos/ibc-go/v6 v6.3.1
|
|
12
14
|
github.com/gogo/protobuf v1.3.3
|
|
13
|
-
github.com/golang/protobuf v1.5.
|
|
15
|
+
github.com/golang/protobuf v1.5.4
|
|
14
16
|
github.com/gorilla/mux v1.8.0
|
|
15
17
|
github.com/grpc-ecosystem/grpc-gateway v1.16.0
|
|
18
|
+
github.com/iancoleman/orderedmap v0.2.0
|
|
16
19
|
github.com/pkg/errors v0.9.1
|
|
17
20
|
github.com/rakyll/statik v0.1.7
|
|
18
|
-
github.com/spf13/cast v1.
|
|
19
|
-
github.com/spf13/cobra v1.
|
|
21
|
+
github.com/spf13/cast v1.7.0
|
|
22
|
+
github.com/spf13/cobra v1.8.1
|
|
20
23
|
github.com/spf13/pflag v1.0.5
|
|
21
|
-
github.com/spf13/viper v1.
|
|
22
|
-
github.com/stretchr/testify v1.
|
|
23
|
-
github.com/tendermint/tendermint v0.34.
|
|
24
|
+
github.com/spf13/viper v1.19.0
|
|
25
|
+
github.com/stretchr/testify v1.10.0
|
|
26
|
+
github.com/tendermint/tendermint v0.34.35
|
|
24
27
|
github.com/tendermint/tm-db v0.6.7
|
|
25
|
-
google.golang.org/genproto/googleapis/api v0.0.0-
|
|
26
|
-
google.golang.org/grpc v1.
|
|
28
|
+
google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117
|
|
29
|
+
google.golang.org/grpc v1.66.1
|
|
27
30
|
gopkg.in/yaml.v2 v2.4.0
|
|
28
31
|
)
|
|
29
32
|
|
|
30
33
|
require (
|
|
31
|
-
cloud.google.com/go v0.
|
|
32
|
-
cloud.google.com/go/compute
|
|
33
|
-
cloud.google.com/go/
|
|
34
|
-
cloud.google.com/go/
|
|
35
|
-
cloud.google.com/go/storage v1.30.1 // indirect
|
|
34
|
+
cloud.google.com/go v0.112.1 // indirect
|
|
35
|
+
cloud.google.com/go/compute/metadata v0.3.0 // indirect
|
|
36
|
+
cloud.google.com/go/iam v1.1.6 // indirect
|
|
37
|
+
cloud.google.com/go/storage v1.38.0 // indirect
|
|
36
38
|
filippo.io/edwards25519 v1.0.0-rc.1 // indirect
|
|
37
39
|
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
|
|
38
40
|
github.com/99designs/keyring v1.2.1 // indirect
|
|
39
|
-
github.com/ChainSafe/go-schnorrkel v1.
|
|
40
|
-
github.com/Workiva/go-datastructures v1.
|
|
41
|
+
github.com/ChainSafe/go-schnorrkel v1.1.0 // indirect
|
|
42
|
+
github.com/Workiva/go-datastructures v1.1.5 // indirect
|
|
41
43
|
github.com/aws/aws-sdk-go v1.44.122 // indirect
|
|
42
44
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
43
45
|
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
|
|
44
46
|
github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 // indirect
|
|
45
|
-
github.com/btcsuite/btcd/btcec/v2 v2.3.
|
|
47
|
+
github.com/btcsuite/btcd/btcec/v2 v2.3.4 // indirect
|
|
48
|
+
github.com/bufbuild/protocompile v0.14.1 // indirect
|
|
46
49
|
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
|
|
47
50
|
github.com/cespare/xxhash v1.1.0 // indirect
|
|
48
|
-
github.com/cespare/xxhash/v2 v2.
|
|
51
|
+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
49
52
|
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
|
|
50
53
|
github.com/cockroachdb/apd/v2 v2.0.2 // indirect
|
|
51
54
|
github.com/coinbase/rosetta-sdk-go v0.7.9 // indirect
|
|
52
|
-
github.com/cometbft/cometbft-db v0.
|
|
55
|
+
github.com/cometbft/cometbft-db v0.9.5 // indirect
|
|
53
56
|
github.com/confio/ics23/go v0.9.1 // indirect
|
|
54
57
|
github.com/cosmos/btcutil v1.0.5 // indirect
|
|
55
58
|
github.com/cosmos/cosmos-proto v1.0.0-beta.1 // indirect
|
|
@@ -59,35 +62,36 @@ require (
|
|
|
59
62
|
github.com/cosmos/ledger-cosmos-go v0.12.4 // indirect
|
|
60
63
|
github.com/creachadair/taskgroup v0.3.2 // indirect
|
|
61
64
|
github.com/danieljoos/wincred v1.1.2 // indirect
|
|
62
|
-
github.com/davecgh/go-spew v1.1.
|
|
65
|
+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
63
66
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect
|
|
64
67
|
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect
|
|
65
68
|
github.com/dgraph-io/badger/v2 v2.2007.4 // indirect
|
|
66
|
-
github.com/dgraph-io/ristretto v0.1.
|
|
69
|
+
github.com/dgraph-io/ristretto v0.1.1 // indirect
|
|
67
70
|
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
|
|
68
|
-
github.com/dustin/go-humanize v1.0.
|
|
71
|
+
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
69
72
|
github.com/dvsekhvalnov/jose2go v1.5.0 // indirect
|
|
70
|
-
github.com/felixge/httpsnoop v1.0.
|
|
71
|
-
github.com/fsnotify/fsnotify v1.
|
|
73
|
+
github.com/felixge/httpsnoop v1.0.4 // indirect
|
|
74
|
+
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
|
72
75
|
github.com/ghodss/yaml v1.0.0 // indirect
|
|
73
76
|
github.com/gin-gonic/gin v1.8.1 // indirect
|
|
74
|
-
github.com/go-kit/kit v0.
|
|
77
|
+
github.com/go-kit/kit v0.13.0 // indirect
|
|
75
78
|
github.com/go-kit/log v0.2.1 // indirect
|
|
76
|
-
github.com/go-logfmt/logfmt v0.
|
|
79
|
+
github.com/go-logfmt/logfmt v0.6.0 // indirect
|
|
80
|
+
github.com/go-logr/logr v1.4.1 // indirect
|
|
81
|
+
github.com/go-logr/stdr v1.2.2 // indirect
|
|
77
82
|
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
|
|
78
83
|
github.com/gogo/gateway v1.1.0 // indirect
|
|
79
|
-
github.com/golang/glog v1.
|
|
84
|
+
github.com/golang/glog v1.2.2 // indirect
|
|
80
85
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
81
86
|
github.com/golang/snappy v0.0.4 // indirect
|
|
82
|
-
github.com/google/btree v1.1.
|
|
83
|
-
github.com/google/go-cmp v0.5.9 // indirect
|
|
87
|
+
github.com/google/btree v1.1.3 // indirect
|
|
84
88
|
github.com/google/orderedcode v0.0.1 // indirect
|
|
85
|
-
github.com/google/s2a-go v0.1.
|
|
86
|
-
github.com/google/uuid v1.
|
|
87
|
-
github.com/googleapis/enterprise-certificate-proxy v0.2
|
|
88
|
-
github.com/googleapis/gax-go/v2 v2.
|
|
89
|
+
github.com/google/s2a-go v0.1.7 // indirect
|
|
90
|
+
github.com/google/uuid v1.6.0 // indirect
|
|
91
|
+
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
|
|
92
|
+
github.com/googleapis/gax-go/v2 v2.12.3 // indirect
|
|
89
93
|
github.com/gorilla/handlers v1.5.1 // indirect
|
|
90
|
-
github.com/gorilla/websocket v1.5.
|
|
94
|
+
github.com/gorilla/websocket v1.5.3 // indirect
|
|
91
95
|
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
|
|
92
96
|
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
|
|
93
97
|
github.com/gtank/merlin v0.1.1 // indirect
|
|
@@ -100,64 +104,69 @@ require (
|
|
|
100
104
|
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect
|
|
101
105
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
102
106
|
github.com/hdevalence/ed25519consensus v0.0.0-20220222234857-c00d1f31bab3 // indirect
|
|
103
|
-
github.com/iancoleman/orderedmap v0.2.0 // indirect
|
|
104
107
|
github.com/improbable-eng/grpc-web v0.15.0 // indirect
|
|
105
108
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
106
109
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
|
107
110
|
github.com/jmhodges/levigo v1.0.0 // indirect
|
|
108
|
-
github.com/klauspost/compress v1.
|
|
109
|
-
github.com/lib/pq v1.10.
|
|
111
|
+
github.com/klauspost/compress v1.17.9 // indirect
|
|
112
|
+
github.com/lib/pq v1.10.9 // indirect
|
|
110
113
|
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
|
|
111
|
-
github.com/
|
|
114
|
+
github.com/linxGnu/grocksdb v1.9.3 // indirect
|
|
115
|
+
github.com/magiconair/properties v1.8.7 // indirect
|
|
112
116
|
github.com/manifoldco/promptui v0.9.0 // indirect
|
|
113
117
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
114
118
|
github.com/mattn/go-isatty v0.0.18 // indirect
|
|
115
|
-
github.com/
|
|
116
|
-
github.com/
|
|
117
|
-
github.com/minio/highwayhash v1.0.2 // indirect
|
|
119
|
+
github.com/mimoo/StrobeGo v0.0.0-20220103164710-9a04d6ca976b // indirect
|
|
120
|
+
github.com/minio/highwayhash v1.0.3 // indirect
|
|
118
121
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
119
122
|
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
|
|
120
123
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
121
124
|
github.com/mtibben/percent v0.2.1 // indirect
|
|
122
|
-
github.com/
|
|
123
|
-
github.com/pelletier/go-toml/v2 v2.
|
|
124
|
-
github.com/petermattis/goid v0.0.0-
|
|
125
|
-
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
126
|
-
github.com/prometheus/client_golang v1.
|
|
127
|
-
github.com/prometheus/client_model v0.
|
|
128
|
-
github.com/prometheus/common v0.
|
|
129
|
-
github.com/prometheus/procfs v0.
|
|
125
|
+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
126
|
+
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
|
|
127
|
+
github.com/petermattis/goid v0.0.0-20240813172612-4fcff4a6cae7 // indirect
|
|
128
|
+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
129
|
+
github.com/prometheus/client_golang v1.20.3 // indirect
|
|
130
|
+
github.com/prometheus/client_model v0.6.1 // indirect
|
|
131
|
+
github.com/prometheus/common v0.59.1 // indirect
|
|
132
|
+
github.com/prometheus/procfs v0.15.1 // indirect
|
|
130
133
|
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
|
|
131
134
|
github.com/regen-network/cosmos-proto v0.3.1 // indirect
|
|
132
|
-
github.com/rs/cors v1.
|
|
135
|
+
github.com/rs/cors v1.11.1 // indirect
|
|
133
136
|
github.com/rs/zerolog v1.29.1 // indirect
|
|
134
|
-
github.com/
|
|
135
|
-
github.com/
|
|
136
|
-
github.com/
|
|
137
|
-
github.com/
|
|
137
|
+
github.com/sagikazarmark/locafero v0.6.0 // indirect
|
|
138
|
+
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
|
|
139
|
+
github.com/sasha-s/go-deadlock v0.3.5 // indirect
|
|
140
|
+
github.com/sourcegraph/conc v0.3.0 // indirect
|
|
141
|
+
github.com/spf13/afero v1.11.0 // indirect
|
|
142
|
+
github.com/subosito/gotenv v1.6.0 // indirect
|
|
138
143
|
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
|
|
139
|
-
github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c // indirect
|
|
140
144
|
github.com/tendermint/go-amino v0.16.0 // indirect
|
|
141
145
|
github.com/tidwall/btree v1.5.0 // indirect
|
|
142
146
|
github.com/ulikunitz/xz v0.5.10 // indirect
|
|
143
147
|
github.com/zondax/hid v0.9.2 // indirect
|
|
144
148
|
github.com/zondax/ledger-go v0.14.3 // indirect
|
|
145
|
-
go.etcd.io/bbolt v1.3.
|
|
149
|
+
go.etcd.io/bbolt v1.3.11 // indirect
|
|
146
150
|
go.opencensus.io v0.24.0 // indirect
|
|
147
|
-
golang.org/
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
golang.org/x/
|
|
154
|
-
golang.org/x/
|
|
155
|
-
golang.org/x/
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
151
|
+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
|
|
152
|
+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
|
|
153
|
+
go.opentelemetry.io/otel v1.24.0 // indirect
|
|
154
|
+
go.opentelemetry.io/otel/metric v1.24.0 // indirect
|
|
155
|
+
go.opentelemetry.io/otel/trace v1.24.0 // indirect
|
|
156
|
+
go.uber.org/multierr v1.11.0 // indirect
|
|
157
|
+
golang.org/x/crypto v0.31.0 // indirect
|
|
158
|
+
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
|
|
159
|
+
golang.org/x/net v0.33.0 // indirect
|
|
160
|
+
golang.org/x/oauth2 v0.22.0 // indirect
|
|
161
|
+
golang.org/x/sync v0.10.0 // indirect
|
|
162
|
+
golang.org/x/sys v0.28.0 // indirect
|
|
163
|
+
golang.org/x/term v0.27.0 // indirect
|
|
164
|
+
golang.org/x/text v0.21.0 // indirect
|
|
165
|
+
golang.org/x/time v0.5.0 // indirect
|
|
166
|
+
google.golang.org/api v0.171.0 // indirect
|
|
167
|
+
google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 // indirect
|
|
168
|
+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
|
|
169
|
+
google.golang.org/protobuf v1.34.2 // indirect
|
|
161
170
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
162
171
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
163
172
|
nhooyr.io/websocket v1.8.6 // indirect
|
|
@@ -167,6 +176,8 @@ require (
|
|
|
167
176
|
replace (
|
|
168
177
|
github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0
|
|
169
178
|
|
|
179
|
+
github.com/btcsuite/btcd/btcec/v2 => github.com/btcsuite/btcd/btcec/v2 v2.3.2
|
|
180
|
+
|
|
170
181
|
github.com/confio/ics23/go => github.com/agoric-labs/cosmos-sdk/ics23/go v0.8.0-alpha.agoric.1
|
|
171
182
|
|
|
172
183
|
// https://pkg.go.dev/vuln/GO-2023-2409
|
|
@@ -198,7 +209,7 @@ replace (
|
|
|
198
209
|
// use cometbft
|
|
199
210
|
// Use our fork at least until post-v0.34.14 is released with
|
|
200
211
|
// https://github.com/tendermint/tendermint/issue/6899 resolved.
|
|
201
|
-
github.com/tendermint/tendermint => github.com/agoric-labs/cometbft v0.34.
|
|
212
|
+
github.com/tendermint/tendermint => github.com/agoric-labs/cometbft v0.34.35-alpha.agoric.3
|
|
202
213
|
|
|
203
214
|
// For testing against a local cosmos-sdk, ibc-go, or cometbft
|
|
204
215
|
// github.com/cosmos/cosmos-sdk => ../../../forks/cosmos-sdk
|