@agoric/cosmos 0.35.0-u20.0 → 0.35.0-u21.0.1

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.
Files changed (114) hide show
  1. package/.clang-format +116 -0
  2. package/CHANGELOG.md +14 -2
  3. package/Makefile +38 -67
  4. package/ante/ante.go +2 -2
  5. package/ante/inbound_test.go +1 -1
  6. package/app/app.go +173 -142
  7. package/app/export.go +6 -6
  8. package/app/genesis.go +4 -0
  9. package/app/sim_test.go +299 -50
  10. package/app/upgrade.go +125 -24
  11. package/app/upgrade_test.go +1 -1
  12. package/cmd/agd/agvm.go +1 -1
  13. package/cmd/agd/main.go +1 -1
  14. package/cmd/libdaemon/main.go +34 -1
  15. package/coverage.txt +8531 -0
  16. package/daemon/cmd/root.go +26 -35
  17. package/daemon/cmd/root_test.go +5 -4
  18. package/daemon/cmd/testnet.go +221 -95
  19. package/daemon/main.go +1 -0
  20. package/git-revision.txt +1 -1
  21. package/go.mod +93 -58
  22. package/go.sum +148 -95
  23. package/package.json +6 -3
  24. package/proto/agoric/swingset/genesis.proto +7 -11
  25. package/proto/agoric/swingset/msgs.proto +56 -75
  26. package/proto/agoric/swingset/query.proto +7 -10
  27. package/proto/agoric/swingset/swingset.proto +79 -108
  28. package/proto/agoric/vbank/genesis.proto +5 -5
  29. package/proto/agoric/vbank/msgs.proto +1 -2
  30. package/proto/agoric/vbank/vbank.proto +42 -52
  31. package/proto/agoric/vibc/msgs.proto +8 -11
  32. package/proto/agoric/vstorage/genesis.proto +6 -9
  33. package/proto/agoric/vstorage/query.proto +19 -48
  34. package/proto/agoric/vstorage/vstorage.proto +4 -10
  35. package/proto/agoric/vtransfer/genesis.proto +7 -7
  36. package/proto/buf.gen.gogo.yaml +8 -0
  37. package/proto/buf.gen.pulsar.yaml +17 -0
  38. package/proto/buf.gen.swagger.yaml +5 -0
  39. package/proto/buf.yaml +10 -0
  40. package/scripts/protocgen.sh +14 -21
  41. package/third_party/proto/amino/amino.proto +79 -0
  42. package/third_party/proto/cosmos/base/v1beta1/coin.proto +7 -2
  43. package/third_party/proto/cosmos/ics23/v1/proofs.proto +243 -0
  44. package/third_party/proto/cosmos/msg/v1/msg.proto +30 -0
  45. package/third_party/proto/cosmos/upgrade/v1beta1/upgrade.proto +17 -5
  46. package/third_party/proto/cosmos_proto/cosmos.proto +16 -1
  47. package/third_party/proto/gogoproto/gogo.proto +2 -2
  48. package/third_party/proto/google/protobuf/any.proto +6 -3
  49. package/third_party/proto/ibc/core/channel/v1/channel.proto +1 -1
  50. package/third_party/proto/ibc/core/client/v1/client.proto +4 -2
  51. package/types/address_hooks.go +2 -2
  52. package/types/address_hooks_test.go +3 -3
  53. package/types/ibc_packet.go +3 -3
  54. package/types/ibc_packet_test.go +3 -3
  55. package/vm/client.go +32 -7
  56. package/vm/proto_json.go +2 -2
  57. package/x/swingset/abci.go +1 -1
  58. package/x/swingset/alias.go +0 -1
  59. package/x/swingset/config.go +1 -1
  60. package/x/swingset/keeper/extension_snapshotter.go +1 -1
  61. package/x/swingset/keeper/extension_snapshotter_test.go +1 -1
  62. package/x/swingset/keeper/keeper.go +1 -1
  63. package/x/swingset/keeper/keeper_test.go +1 -1
  64. package/x/swingset/keeper/querier.go +1 -30
  65. package/x/swingset/keeper/swing_store_exports_handler.go +1 -1
  66. package/x/swingset/keeper/swing_store_exports_handler_test.go +1 -1
  67. package/x/swingset/module.go +1 -14
  68. package/x/swingset/types/default-params.go +24 -16
  69. package/x/swingset/types/genesis.pb.go +2 -2
  70. package/x/swingset/types/msgs.pb.go +4 -3
  71. package/x/swingset/types/msgs_test.go +1 -1
  72. package/x/swingset/types/query.pb.go +4 -3
  73. package/x/swingset/types/swingset.pb.go +2 -2
  74. package/x/vbank/genesis.go +1 -1
  75. package/x/vbank/keeper/querier.go +1 -21
  76. package/x/vbank/module.go +1 -16
  77. package/x/vbank/types/genesis.pb.go +2 -2
  78. package/x/vbank/types/msgs.pb.go +3 -2
  79. package/x/vbank/types/query.pb.go +4 -3
  80. package/x/vbank/types/vbank.pb.go +2 -2
  81. package/x/vbank/vbank_test.go +95 -16
  82. package/x/vibc/keeper/keeper.go +8 -5
  83. package/x/vibc/keeper/migrations.go +36 -0
  84. package/x/vibc/keeper/triggers.go +1 -1
  85. package/x/vibc/module.go +9 -17
  86. package/x/vibc/types/expected_keepers.go +5 -10
  87. package/x/vibc/types/ibc_module.go +4 -4
  88. package/x/vibc/types/msgs.go +1 -1
  89. package/x/vibc/types/msgs.pb.go +5 -4
  90. package/x/vibc/types/receiver.go +2 -2
  91. package/x/vlocalchain/keeper/keeper.go +3 -3
  92. package/x/vlocalchain/types/vlocalchain.pb.go +1 -1
  93. package/x/vlocalchain/vlocalchain_test.go +6 -6
  94. package/x/vstorage/alias.go +0 -1
  95. package/x/vstorage/client/cli/query.go +1 -1
  96. package/x/vstorage/genesis.go +1 -1
  97. package/x/vstorage/keeper/keeper.go +6 -5
  98. package/x/vstorage/keeper/keeper_test.go +24 -24
  99. package/x/vstorage/keeper/querier.go +1 -32
  100. package/x/vstorage/keeper/querier_test.go +41 -6
  101. package/x/vstorage/module.go +1 -14
  102. package/x/vstorage/types/genesis.pb.go +2 -2
  103. package/x/vstorage/types/query.pb.go +8 -5
  104. package/x/vstorage/types/vstorage.pb.go +2 -2
  105. package/x/vstorage/vstorage_test.go +3 -3
  106. package/x/vtransfer/genesis.go +1 -1
  107. package/x/vtransfer/ibc_middleware.go +4 -4
  108. package/x/vtransfer/ibc_middleware_test.go +10 -11
  109. package/x/vtransfer/keeper/keeper.go +5 -5
  110. package/x/vtransfer/module.go +1 -14
  111. package/x/vtransfer/types/expected_keepers.go +2 -18
  112. package/x/vtransfer/types/genesis.pb.go +2 -2
  113. package/x/vtransfer/utils_test.go +15 -15
  114. package/daemon/cmd/genaccounts.go +0 -195
@@ -3,7 +3,7 @@ package keeper
3
3
  import (
4
4
  sdk "github.com/cosmos/cosmos-sdk/types"
5
5
 
6
- ibcexported "github.com/cosmos/ibc-go/v6/modules/core/exported"
6
+ ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported"
7
7
 
8
8
  agtypes "github.com/Agoric/agoric-sdk/golang/cosmos/types"
9
9
  "github.com/Agoric/agoric-sdk/golang/cosmos/x/vibc/types"
package/x/vibc/module.go CHANGED
@@ -6,6 +6,7 @@ import (
6
6
  "github.com/grpc-ecosystem/grpc-gateway/runtime"
7
7
  "github.com/spf13/cobra"
8
8
 
9
+ "github.com/Agoric/agoric-sdk/golang/cosmos/x/vibc/keeper"
9
10
  "github.com/Agoric/agoric-sdk/golang/cosmos/x/vibc/types"
10
11
 
11
12
  "github.com/cosmos/cosmos-sdk/client"
@@ -13,8 +14,8 @@ import (
13
14
  cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
14
15
  "github.com/cosmos/cosmos-sdk/types/module"
15
16
 
17
+ abci "github.com/cometbft/cometbft/abci/types"
16
18
  sdk "github.com/cosmos/cosmos-sdk/types"
17
- abci "github.com/tendermint/tendermint/abci/types"
18
19
  )
19
20
 
20
21
  // type check to ensure the interface is properly implemented
@@ -83,7 +84,7 @@ func (AppModule) Name() string {
83
84
  return ModuleName
84
85
  }
85
86
 
86
- func (AppModule) ConsensusVersion() uint64 { return 1 }
87
+ func (AppModule) ConsensusVersion() uint64 { return 2 }
87
88
 
88
89
  // BeginBlock implements the AppModule interface
89
90
  func (am AppModule) BeginBlock(ctx sdk.Context, req abci.RequestBeginBlock) {
@@ -99,25 +100,16 @@ func (AppModule) RegisterInvariants(ir sdk.InvariantRegistry) {
99
100
  // TODO
100
101
  }
101
102
 
102
- // Route implements the AppModule interface
103
- func (am AppModule) Route() sdk.Route {
104
- return sdk.NewRoute(RouterKey, NewHandler(am.keeper, am.bankKeeper))
105
- }
106
-
107
- // QuerierRoute implements the AppModule interface
108
- func (AppModule) QuerierRoute() string {
109
- return ModuleName
110
- }
111
-
112
- // LegacyQuerierHandler implements the AppModule interface
113
- func (am AppModule) LegacyQuerierHandler(*codec.LegacyAmino) sdk.Querier {
114
- return nil
115
- }
116
-
117
103
  // RegisterServices registers module services.
118
104
  func (am AppModule) RegisterServices(cfg module.Configurator) {
119
105
  tx := &types.UnimplementedMsgServer{}
120
106
  types.RegisterMsgServer(cfg.MsgServer(), tx)
107
+
108
+ m := keeper.NewMigrator(am.keeper)
109
+ err := cfg.RegisterMigration(types.ModuleName, 1, m.Migrate1to2)
110
+ if err != nil {
111
+ panic(err)
112
+ }
121
113
  }
122
114
 
123
115
  // InitGenesis performs genesis initialization for the ibc-transfer module. It returns
@@ -3,10 +3,9 @@ package types
3
3
  import (
4
4
  sdk "github.com/cosmos/cosmos-sdk/types"
5
5
  capability "github.com/cosmos/cosmos-sdk/x/capability/types"
6
- clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types"
7
- connection "github.com/cosmos/ibc-go/v6/modules/core/03-connection/types"
8
- channel "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types"
9
- ibcexported "github.com/cosmos/ibc-go/v6/modules/core/exported"
6
+ clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types"
7
+ channel "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types"
8
+ ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported"
10
9
  )
11
10
 
12
11
  type BankKeeper interface {
@@ -40,12 +39,8 @@ type ChannelKeeper interface {
40
39
 
41
40
  // ClientKeeper defines the expected IBC client keeper
42
41
  type ClientKeeper interface {
43
- GetClientConsensusState(ctx sdk.Context, clientID string) (connection ibcexported.ConsensusState, found bool)
44
- }
45
-
46
- // ConnectionKeeper defines the expected IBC connection keeper
47
- type ConnectionKeeper interface {
48
- GetConnection(ctx sdk.Context, connectionID string) (connection connection.ConnectionEnd, found bool)
42
+ GetParams(ctx sdk.Context) clienttypes.Params
43
+ SetParams(ctx sdk.Context, params clienttypes.Params)
49
44
  }
50
45
 
51
46
  // PortKeeper defines the expected IBC port keeper
@@ -7,11 +7,11 @@ import (
7
7
  agtypes "github.com/Agoric/agoric-sdk/golang/cosmos/types"
8
8
  "github.com/Agoric/agoric-sdk/golang/cosmos/vm"
9
9
  capability "github.com/cosmos/cosmos-sdk/x/capability/types"
10
- channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types"
11
- porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types"
12
- host "github.com/cosmos/ibc-go/v6/modules/core/24-host"
10
+ channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types"
11
+ porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types"
12
+ host "github.com/cosmos/ibc-go/v7/modules/core/24-host"
13
13
 
14
- "github.com/cosmos/ibc-go/v6/modules/core/exported"
14
+ "github.com/cosmos/ibc-go/v7/modules/core/exported"
15
15
 
16
16
  sdk "github.com/cosmos/cosmos-sdk/types"
17
17
  )
@@ -4,7 +4,7 @@ import (
4
4
  sdk "github.com/cosmos/cosmos-sdk/types"
5
5
  sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
6
6
 
7
- chanTypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types"
7
+ chanTypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types"
8
8
  )
9
9
 
10
10
  const RouterKey = ModuleName // this was defined in your key.go file
@@ -7,10 +7,10 @@ import (
7
7
  context "context"
8
8
  fmt "fmt"
9
9
  github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types"
10
- types "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types"
11
- _ "github.com/gogo/protobuf/gogoproto"
12
- grpc1 "github.com/gogo/protobuf/grpc"
13
- proto "github.com/gogo/protobuf/proto"
10
+ _ "github.com/cosmos/gogoproto/gogoproto"
11
+ grpc1 "github.com/cosmos/gogoproto/grpc"
12
+ proto "github.com/cosmos/gogoproto/proto"
13
+ types "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types"
14
14
  grpc "google.golang.org/grpc"
15
15
  codes "google.golang.org/grpc/codes"
16
16
  status "google.golang.org/grpc/status"
@@ -223,6 +223,7 @@ func _Msg_SendPacket_Handler(srv interface{}, ctx context.Context, dec func(inte
223
223
  return interceptor(ctx, in, info, handler)
224
224
  }
225
225
 
226
+ var Msg_serviceDesc = _Msg_serviceDesc
226
227
  var _Msg_serviceDesc = grpc.ServiceDesc{
227
228
  ServiceName: "agoric.vibc.Msg",
228
229
  HandlerType: (*MsgServer)(nil),
@@ -7,9 +7,9 @@ import (
7
7
 
8
8
  "github.com/Agoric/agoric-sdk/golang/cosmos/types"
9
9
  "github.com/Agoric/agoric-sdk/golang/cosmos/vm"
10
- channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types"
10
+ channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types"
11
11
 
12
- "github.com/cosmos/ibc-go/v6/modules/core/exported"
12
+ "github.com/cosmos/ibc-go/v7/modules/core/exported"
13
13
 
14
14
  sdk "github.com/cosmos/cosmos-sdk/types"
15
15
  )
@@ -8,8 +8,8 @@ import (
8
8
  "strings"
9
9
  "unicode"
10
10
 
11
- "github.com/gogo/protobuf/jsonpb"
12
- "github.com/gogo/protobuf/proto"
11
+ "github.com/cosmos/gogoproto/jsonpb"
12
+ "github.com/cosmos/gogoproto/proto"
13
13
 
14
14
  "github.com/cosmos/cosmos-sdk/codec"
15
15
  codectypes "github.com/cosmos/cosmos-sdk/codec/types"
@@ -17,7 +17,7 @@ import (
17
17
  sdk "github.com/cosmos/cosmos-sdk/types"
18
18
  sdkaddress "github.com/cosmos/cosmos-sdk/types/address"
19
19
 
20
- abci "github.com/tendermint/tendermint/abci/types"
20
+ abci "github.com/cometbft/cometbft/abci/types"
21
21
 
22
22
  "github.com/Agoric/agoric-sdk/golang/cosmos/x/vlocalchain/types"
23
23
  )
@@ -6,7 +6,7 @@ package types
6
6
  import (
7
7
  fmt "fmt"
8
8
  types "github.com/cosmos/cosmos-sdk/codec/types"
9
- proto "github.com/gogo/protobuf/proto"
9
+ proto "github.com/cosmos/gogoproto/proto"
10
10
  io "io"
11
11
  math "math"
12
12
  math_bits "math/bits"
@@ -12,6 +12,7 @@ import (
12
12
  "github.com/Agoric/agoric-sdk/golang/cosmos/x/vlocalchain"
13
13
  "github.com/Agoric/agoric-sdk/golang/cosmos/x/vlocalchain/types"
14
14
 
15
+ "github.com/cometbft/cometbft/libs/log"
15
16
  "github.com/cosmos/cosmos-sdk/baseapp"
16
17
  "github.com/cosmos/cosmos-sdk/store"
17
18
  storetypes "github.com/cosmos/cosmos-sdk/store/types"
@@ -19,13 +20,12 @@ import (
19
20
  authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
20
21
  banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
21
22
  stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
22
- transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types"
23
- "github.com/tendermint/tendermint/libs/log"
23
+ transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types"
24
24
 
25
- "github.com/gogo/protobuf/jsonpb"
26
- "github.com/gogo/protobuf/proto"
27
- tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
28
- dbm "github.com/tendermint/tm-db"
25
+ dbm "github.com/cometbft/cometbft-db"
26
+ tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
27
+ "github.com/cosmos/gogoproto/jsonpb"
28
+ "github.com/cosmos/gogoproto/proto"
29
29
  )
30
30
 
31
31
  var (
@@ -12,7 +12,6 @@ const (
12
12
 
13
13
  var (
14
14
  NewKeeper = keeper.NewKeeper
15
- NewQuerier = keeper.NewQuerier
16
15
  NewStorage = types.NewData
17
16
  NewChildren = types.NewChildren
18
17
  )
@@ -4,7 +4,7 @@ import (
4
4
  "github.com/Agoric/agoric-sdk/golang/cosmos/x/vstorage/types"
5
5
  "github.com/cosmos/cosmos-sdk/client"
6
6
  "github.com/cosmos/cosmos-sdk/client/flags"
7
- "github.com/gogo/protobuf/proto"
7
+ "github.com/cosmos/gogoproto/proto"
8
8
  "github.com/spf13/cobra"
9
9
  )
10
10
 
@@ -4,8 +4,8 @@ import (
4
4
  "fmt"
5
5
 
6
6
  "github.com/Agoric/agoric-sdk/golang/cosmos/x/vstorage/types"
7
+ abci "github.com/cometbft/cometbft/abci/types"
7
8
  sdk "github.com/cosmos/cosmos-sdk/types"
8
- abci "github.com/tendermint/tendermint/abci/types"
9
9
  )
10
10
 
11
11
  func NewGenesisState() *types.GenesisState {
@@ -12,10 +12,10 @@ import (
12
12
 
13
13
  sdkmath "cosmossdk.io/math"
14
14
  metrics "github.com/armon/go-metrics"
15
+ db "github.com/cometbft/cometbft-db"
15
16
  storetypes "github.com/cosmos/cosmos-sdk/store/types"
16
17
  "github.com/cosmos/cosmos-sdk/telemetry"
17
18
  sdk "github.com/cosmos/cosmos-sdk/types"
18
- db "github.com/tendermint/tm-db"
19
19
 
20
20
  agoric "github.com/Agoric/agoric-sdk/golang/cosmos/types"
21
21
  "github.com/Agoric/agoric-sdk/golang/cosmos/x/vstorage/types"
@@ -124,6 +124,7 @@ func NewKeeper(storeKey storetypes.StoreKey) Keeper {
124
124
  // to/from the store due to the store's internal implementation.
125
125
  var MetricKeyStoreSizeIncrease = []string{"store", "size_increase"}
126
126
  var MetricKeyStoreSizeDecrease = []string{"store", "size_decrease"}
127
+
127
128
  const MetricLabelStoreKey = "storeKey"
128
129
 
129
130
  // reportStoreSizeMetrics exports store size increase/decrease metrics
@@ -239,7 +240,7 @@ func (k Keeper) RemoveEntriesWithPrefix(ctx sdk.Context, pathPrefix string) {
239
240
 
240
241
  for _, key := range keys {
241
242
  rawValue := store.Get(key)
242
- k.reportStoreSizeMetrics(0, len(key) + len(rawValue))
243
+ k.reportStoreSizeMetrics(0, len(key)+len(rawValue))
243
244
  store.Delete(key)
244
245
  }
245
246
 
@@ -396,7 +397,7 @@ func (k Keeper) SetStorage(ctx sdk.Context, entry agoric.KVEntry) {
396
397
  if !entry.HasValue() {
397
398
  if !k.HasChildren(ctx, path) {
398
399
  // We have no children, can delete.
399
- k.reportStoreSizeMetrics(0, len(encodedKey) + len(oldRawValue))
400
+ k.reportStoreSizeMetrics(0, len(encodedKey)+len(oldRawValue))
400
401
  store.Delete(encodedKey)
401
402
  } else {
402
403
  // We have children, mark as an empty placeholder without deleting.
@@ -421,7 +422,7 @@ func (k Keeper) SetStorage(ctx sdk.Context, entry agoric.KVEntry) {
421
422
  break
422
423
  }
423
424
  encodedAncestor := types.PathToEncodedKey(ancestor)
424
- k.reportStoreSizeMetrics(0, len(encodedAncestor) + len(types.EncodedNoDataValue))
425
+ k.reportStoreSizeMetrics(0, len(encodedAncestor)+len(types.EncodedNoDataValue))
425
426
  store.Delete(encodedAncestor)
426
427
  }
427
428
  } else {
@@ -433,7 +434,7 @@ func (k Keeper) SetStorage(ctx sdk.Context, entry agoric.KVEntry) {
433
434
  break
434
435
  }
435
436
  encodedAncestor := types.PathToEncodedKey(ancestor)
436
- k.reportStoreSizeMetrics(len(encodedAncestor) + len(types.EncodedNoDataValue), 0)
437
+ k.reportStoreSizeMetrics(len(encodedAncestor)+len(types.EncodedNoDataValue), 0)
437
438
  store.Set(encodedAncestor, types.EncodedNoDataValue)
438
439
  }
439
440
  }
@@ -11,10 +11,10 @@ import (
11
11
  storetypes "github.com/cosmos/cosmos-sdk/store/types"
12
12
  sdk "github.com/cosmos/cosmos-sdk/types"
13
13
 
14
- abci "github.com/tendermint/tendermint/abci/types"
15
- "github.com/tendermint/tendermint/libs/log"
16
- tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
17
- dbm "github.com/tendermint/tm-db"
14
+ dbm "github.com/cometbft/cometbft-db"
15
+ abci "github.com/cometbft/cometbft/abci/types"
16
+ "github.com/cometbft/cometbft/libs/log"
17
+ tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
18
18
  )
19
19
 
20
20
  var (
@@ -227,51 +227,51 @@ func TestStorageNotify(t *testing.T) {
227
227
  {
228
228
  Type: "storage",
229
229
  Attributes: []abci.EventAttribute{
230
- {Key: []byte("path"), Value: []byte("notify.legacy")},
231
- {Key: []byte("value"), Value: []byte("legacyValue")},
230
+ {Key: "path", Value: "notify.legacy"},
231
+ {Key: "value", Value: "legacyValue"},
232
232
  },
233
233
  },
234
234
  {
235
235
  Type: "state_change",
236
236
  Attributes: []abci.EventAttribute{
237
- {Key: []byte("store"), Value: []byte("vstorage")},
238
- {Key: []byte("key"), Value: []byte("2\x00notify\x00legacy")},
239
- {Key: []byte("anckey"), Value: []byte("\x012\x00notify\x00legacy\x01")},
240
- {Key: []byte("value"), Value: []byte("legacyValue")},
237
+ {Key: "store", Value: "vstorage"},
238
+ {Key: "key", Value: "2\x00notify\x00legacy"},
239
+ {Key: "anckey", Value: "\x012\x00notify\x00legacy\x01"},
240
+ {Key: "value", Value: "legacyValue"},
241
241
  },
242
242
  },
243
243
  {
244
244
  Type: "storage",
245
245
  Attributes: []abci.EventAttribute{
246
- {Key: []byte("path"), Value: []byte("notify.legacy2")},
247
- {Key: []byte("value"), Value: []byte("legacyValue2b")},
246
+ {Key: "path", Value: "notify.legacy2"},
247
+ {Key: "value", Value: "legacyValue2b"},
248
248
  },
249
249
  },
250
250
  {
251
251
  Type: "state_change",
252
252
  Attributes: []abci.EventAttribute{
253
- {Key: []byte("store"), Value: []byte("vstorage")},
254
- {Key: []byte("key"), Value: []byte("2\x00notify\x00legacy2")},
255
- {Key: []byte("anckey"), Value: []byte("\x012\x00notify\x00legacy2\x01")},
256
- {Key: []byte("value"), Value: []byte("legacyValue2b")},
253
+ {Key: "store", Value: "vstorage"},
254
+ {Key: "key", Value: "2\x00notify\x00legacy2"},
255
+ {Key: "anckey", Value: "\x012\x00notify\x00legacy2\x01"},
256
+ {Key: "value", Value: "legacyValue2b"},
257
257
  },
258
258
  },
259
259
  {
260
260
  Type: "state_change",
261
261
  Attributes: []abci.EventAttribute{
262
- {Key: []byte("store"), Value: []byte("vstorage")},
263
- {Key: []byte("key"), Value: []byte("2\x00notify\x00noLegacy")},
264
- {Key: []byte("anckey"), Value: []byte("\x012\x00notify\x00noLegacy\x01")},
265
- {Key: []byte("value"), Value: []byte("noLegacyValue")},
262
+ {Key: "store", Value: "vstorage"},
263
+ {Key: "key", Value: "2\x00notify\x00noLegacy"},
264
+ {Key: "anckey", Value: "\x012\x00notify\x00noLegacy\x01"},
265
+ {Key: "value", Value: "noLegacyValue"},
266
266
  },
267
267
  },
268
268
  {
269
269
  Type: "state_change",
270
270
  Attributes: []abci.EventAttribute{
271
- {Key: []byte("store"), Value: []byte("vstorage")},
272
- {Key: []byte("key"), Value: []byte("2\x00notify\x00noLegacy2")},
273
- {Key: []byte("anckey"), Value: []byte("\x012\x00notify\x00noLegacy2\x01")},
274
- {Key: []byte("value"), Value: []byte("noLegacyValue2b")},
271
+ {Key: "store", Value: "vstorage"},
272
+ {Key: "key", Value: "2\x00notify\x00noLegacy2"},
273
+ {Key: "anckey", Value: "\x012\x00notify\x00noLegacy2\x01"},
274
+ {Key: "value", Value: "noLegacyValue2b"},
275
275
  },
276
276
  },
277
277
  }
@@ -1,7 +1,7 @@
1
1
  package keeper
2
2
 
3
3
  import (
4
- abci "github.com/tendermint/tendermint/abci/types"
4
+ abci "github.com/cometbft/cometbft/abci/types"
5
5
 
6
6
  sdkioerrors "cosmossdk.io/errors"
7
7
  "github.com/cosmos/cosmos-sdk/codec"
@@ -26,37 +26,6 @@ func getVstorageEntryPath(urlPathSegments []string) (string, error) {
26
26
  return urlPathSegments[0], nil
27
27
  }
28
28
 
29
- // NewQuerier returns the function for handling queries routed to this module.
30
- // It performs its own routing based on the first slash-separated URL path
31
- // segment (e.g., URL path `/data/foo.bar` is a request for the value associated
32
- // with vstorage path "foo.bar", and `/children/foo.bar` is a request for the
33
- // child path segments immediately underneath vstorage path "foo.bar" which may
34
- // be used to extend it to a vstorage path such as "foo.bar.baz").
35
- func NewQuerier(keeper Keeper, legacyQuerierCdc *codec.LegacyAmino) sdk.Querier {
36
- return func(ctx sdk.Context, urlPathSegments []string, req abci.RequestQuery) (res []byte, err error) {
37
- var queryType string
38
- if len(urlPathSegments) > 0 {
39
- queryType = urlPathSegments[0]
40
- }
41
- switch queryType {
42
- case QueryData:
43
- entryPath, entryPathErr := getVstorageEntryPath(urlPathSegments[1:])
44
- if entryPathErr != nil {
45
- return nil, entryPathErr
46
- }
47
- return queryData(ctx, entryPath, req, keeper, legacyQuerierCdc)
48
- case QueryChildren:
49
- entryPath, entryPathErr := getVstorageEntryPath(urlPathSegments[1:])
50
- if entryPathErr != nil {
51
- return nil, entryPathErr
52
- }
53
- return queryChildren(ctx, entryPath, req, keeper, legacyQuerierCdc)
54
- default:
55
- return nil, sdkioerrors.Wrap(sdkerrors.ErrUnknownRequest, "unknown vstorage query path")
56
- }
57
- }
58
- }
59
-
60
29
  // nolint: unparam
61
30
  func queryData(ctx sdk.Context, path string, req abci.RequestQuery, keeper Keeper, legacyQuerierCdc *codec.LegacyAmino) (res []byte, err error) {
62
31
  entry := keeper.GetEntry(ctx, path)
@@ -2,22 +2,57 @@ package keeper
2
2
 
3
3
  import (
4
4
  "bytes"
5
+ "encoding/json"
5
6
  "testing"
6
7
 
7
8
  agoric "github.com/Agoric/agoric-sdk/golang/cosmos/types"
8
-
9
- abci "github.com/tendermint/tendermint/abci/types"
9
+ "github.com/Agoric/agoric-sdk/golang/cosmos/x/vstorage/types"
10
10
 
11
11
  sdkioerrors "cosmossdk.io/errors"
12
- "github.com/cosmos/cosmos-sdk/codec"
12
+ sdk "github.com/cosmos/cosmos-sdk/types"
13
13
  sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
14
14
  )
15
15
 
16
+ func runRpc(ctx sdk.Context, querier Querier, rpc string, args []string) (res []byte, err error) {
17
+ defer func() {
18
+ if r := recover(); r != nil {
19
+ err = sdkerrors.ErrInvalidRequest
20
+ }
21
+ }()
22
+ switch rpc {
23
+ case "children":
24
+ if len(args) != 1 {
25
+ return nil, sdkerrors.ErrInvalidRequest
26
+ }
27
+ req := &types.QueryChildrenRequest{Path: args[0]}
28
+ r, err := querier.Children(sdk.WrapSDKContext(ctx), req)
29
+ if err != nil {
30
+ return nil, err
31
+ }
32
+ return json.MarshalIndent(r, "", " ")
33
+
34
+ case "data":
35
+ if len(args) != 1 {
36
+ return nil, sdkerrors.ErrInvalidRequest
37
+ }
38
+ req := &types.QueryDataRequest{Path: args[0]}
39
+ r, err := querier.Data(sdk.WrapSDKContext(ctx), req)
40
+ if r != nil && r.Value == "" {
41
+ return nil, sdkerrors.ErrNotFound
42
+ }
43
+ if err != nil {
44
+ return nil, err
45
+ }
46
+ return json.MarshalIndent(r, "", " ")
47
+ default:
48
+ return nil, sdkerrors.ErrUnknownRequest
49
+ }
50
+ }
51
+
16
52
  func TestQuerier(t *testing.T) {
17
53
  testKit := makeTestKit()
18
54
  ctx, keeper := testKit.ctx, testKit.vstorageKeeper
19
- legacyQuerierCdc := codec.NewAminoCodec(codec.NewLegacyAmino())
20
- querier := NewQuerier(keeper, legacyQuerierCdc.LegacyAmino)
55
+ querier := Querier{keeper}
21
56
 
22
57
  // Populate mock data
23
58
  keeper.SetStorage(ctx, agoric.NewKVEntry("foo.bar", "42"))
@@ -99,7 +134,7 @@ func TestQuerier(t *testing.T) {
99
134
  }...)
100
135
 
101
136
  for _, desc := range testCases {
102
- res, err := querier(ctx, desc.path, abci.RequestQuery{})
137
+ res, err := runRpc(ctx, querier, desc.path[0], desc.path[1:])
103
138
  if desc.err != nil {
104
139
  if err == nil {
105
140
  t.Errorf("%s: got no error, want error %q", desc.label, *desc.err)
@@ -15,8 +15,8 @@ import (
15
15
  cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
16
16
  "github.com/cosmos/cosmos-sdk/types/module"
17
17
 
18
+ abci "github.com/cometbft/cometbft/abci/types"
18
19
  sdk "github.com/cosmos/cosmos-sdk/types"
19
- abci "github.com/tendermint/tendermint/abci/types"
20
20
  )
21
21
 
22
22
  // type check to ensure the interface is properly implemented
@@ -90,19 +90,6 @@ func (AppModule) Name() string {
90
90
 
91
91
  func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry) {}
92
92
 
93
- func (am AppModule) Route() sdk.Route {
94
- return sdk.NewRoute(types.RouterKey, NewHandler(am.keeper))
95
- }
96
-
97
- func (am AppModule) QuerierRoute() string {
98
- return ModuleName
99
- }
100
-
101
- // LegacyQuerierHandler returns the sdk.Querier for deployment module
102
- func (am AppModule) LegacyQuerierHandler(legacyQuerierCdc *codec.LegacyAmino) sdk.Querier {
103
- return keeper.NewQuerier(am.keeper, legacyQuerierCdc)
104
- }
105
-
106
93
  func (am AppModule) RegisterServices(cfg module.Configurator) {
107
94
  querier := keeper.Querier{Keeper: am.keeper}
108
95
  types.RegisterQueryServer(cfg.QueryServer(), querier)
@@ -5,8 +5,8 @@ package types
5
5
 
6
6
  import (
7
7
  fmt "fmt"
8
- _ "github.com/gogo/protobuf/gogoproto"
9
- proto "github.com/gogo/protobuf/proto"
8
+ _ "github.com/cosmos/gogoproto/gogoproto"
9
+ proto "github.com/cosmos/gogoproto/proto"
10
10
  io "io"
11
11
  math "math"
12
12
  math_bits "math/bits"
@@ -7,9 +7,9 @@ import (
7
7
  context "context"
8
8
  fmt "fmt"
9
9
  query "github.com/cosmos/cosmos-sdk/types/query"
10
- _ "github.com/gogo/protobuf/gogoproto"
11
- grpc1 "github.com/gogo/protobuf/grpc"
12
- proto "github.com/gogo/protobuf/proto"
10
+ _ "github.com/cosmos/gogoproto/gogoproto"
11
+ grpc1 "github.com/cosmos/gogoproto/grpc"
12
+ proto "github.com/cosmos/gogoproto/proto"
13
13
  _ "google.golang.org/genproto/googleapis/api/annotations"
14
14
  grpc "google.golang.org/grpc"
15
15
  codes "google.golang.org/grpc/codes"
@@ -135,8 +135,10 @@ type QueryCapDataRequest struct {
135
135
  ItemFormat string `protobuf:"bytes,3,opt,name=item_format,json=itemFormat,proto3" json:"itemFormat" yaml:"itemFormat"`
136
136
  // remotableValueFormat indicates how to transform references to opaque but
137
137
  // distinguishable Remotables into readable embedded representations.
138
- // * "object" represents each Remotable as an `{ id, allegedName }` object, e.g. `{ "id": "board007", "allegedName": "IST brand" }`.
139
- // * "string" represents each Remotable as a string with bracket-wrapped contents including its alleged name and id, e.g. "[Alleged: IST brand <board007>]".
138
+ // * "object" represents each Remotable as an `{ id, allegedName }` object, e.g. `{ "id": "board007", "allegedName":
139
+ // "IST brand" }`.
140
+ // * "string" represents each Remotable as a string with bracket-wrapped contents including its alleged name and id,
141
+ // e.g. "[Alleged: IST brand <board007>]".
140
142
  RemotableValueFormat string `protobuf:"bytes,10,opt,name=remotable_value_format,json=remotableValueFormat,proto3" json:"remotableValueFormat" yaml:"remotableValueFormat"`
141
143
  }
142
144
 
@@ -557,6 +559,7 @@ func _Query_Children_Handler(srv interface{}, ctx context.Context, dec func(inte
557
559
  return interceptor(ctx, in, info, handler)
558
560
  }
559
561
 
562
+ var Query_serviceDesc = _Query_serviceDesc
560
563
  var _Query_serviceDesc = grpc.ServiceDesc{
561
564
  ServiceName: "agoric.vstorage.Query",
562
565
  HandlerType: (*QueryServer)(nil),
@@ -5,8 +5,8 @@ package types
5
5
 
6
6
  import (
7
7
  fmt "fmt"
8
- _ "github.com/gogo/protobuf/gogoproto"
9
- proto "github.com/gogo/protobuf/proto"
8
+ _ "github.com/cosmos/gogoproto/gogoproto"
9
+ proto "github.com/cosmos/gogoproto/proto"
10
10
  io "io"
11
11
  math "math"
12
12
  math_bits "math/bits"
@@ -15,9 +15,9 @@ import (
15
15
  sdk "github.com/cosmos/cosmos-sdk/types"
16
16
 
17
17
  agorictypes "github.com/Agoric/agoric-sdk/golang/cosmos/types"
18
- "github.com/tendermint/tendermint/libs/log"
19
- tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
20
- dbm "github.com/tendermint/tm-db"
18
+ dbm "github.com/cometbft/cometbft-db"
19
+ "github.com/cometbft/cometbft/libs/log"
20
+ tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
21
21
  )
22
22
 
23
23
  var (
@@ -4,8 +4,8 @@ import (
4
4
  "fmt"
5
5
 
6
6
  "github.com/Agoric/agoric-sdk/golang/cosmos/x/vtransfer/types"
7
+ abci "github.com/cometbft/cometbft/abci/types"
7
8
  sdk "github.com/cosmos/cosmos-sdk/types"
8
- abci "github.com/tendermint/tendermint/abci/types"
9
9
  )
10
10
 
11
11
  func NewGenesisState() *types.GenesisState {
@@ -4,10 +4,10 @@ import (
4
4
  "github.com/Agoric/agoric-sdk/golang/cosmos/x/vtransfer/keeper"
5
5
  sdk "github.com/cosmos/cosmos-sdk/types"
6
6
  capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types"
7
- clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types"
8
- channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types"
9
- porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types"
10
- "github.com/cosmos/ibc-go/v6/modules/core/exported"
7
+ clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types"
8
+ channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types"
9
+ porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types"
10
+ "github.com/cosmos/ibc-go/v7/modules/core/exported"
11
11
  )
12
12
 
13
13
  // IBCMiddleware (https://ibc.cosmos.network/main/ibc/apps/ibcmodule) forwards