@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

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.