@agoric/cosmos 0.35.0-u21.0.1 → 0.35.0-u22.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.
Files changed (114) hide show
  1. package/CHANGELOG.md +11 -187
  2. package/Makefile +2 -2
  3. package/ante/ante.go +2 -2
  4. package/ante/inbound.go +1 -2
  5. package/ante/inbound_test.go +3 -1
  6. package/ante/vm_admission.go +1 -2
  7. package/app/app.go +255 -174
  8. package/app/encoding.go +6 -3
  9. package/app/export.go +50 -21
  10. package/app/genesis.go +7 -5
  11. package/app/params/encoding.go +1 -1
  12. package/app/params/proto.go +6 -4
  13. package/app/sim_test.go +11 -13
  14. package/app/txconfig/tx_config.go +169 -0
  15. package/app/upgrade.go +52 -97
  16. package/app/upgrade_test.go +1 -1
  17. package/cmd/agd/agvm.go +1 -1
  18. package/cmd/agd/main.go +1 -1
  19. package/cmd/libdaemon/main.go +2 -2
  20. package/daemon/cmd/root.go +99 -30
  21. package/daemon/cmd/root_test.go +12 -27
  22. package/daemon/main.go +2 -9
  23. package/git-revision.txt +1 -1
  24. package/go.mod +129 -109
  25. package/go.sum +228 -469
  26. package/package.json +2 -2
  27. package/proto/agoric/swingset/msgs.proto +46 -9
  28. package/proto/agoric/swingset/swingset.proto +7 -2
  29. package/proto/agoric/vbank/vbank.proto +1 -1
  30. package/proto/agoric/vibc/msgs.proto +4 -0
  31. package/tests/e2e/vbank/vbank_test.go +172 -0
  32. package/tests/integrations/types/aminojson_test.go +214 -0
  33. package/tests/integrations/vbank/vbank_test.go +348 -0
  34. package/third_party/proto/amino/amino.proto +6 -1
  35. package/third_party/proto/cosmos/base/v1beta1/coin.proto +18 -5
  36. package/third_party/proto/cosmos/upgrade/v1beta1/upgrade.proto +4 -8
  37. package/third_party/proto/ibc/core/channel/v1/channel.proto +42 -17
  38. package/third_party/proto/ibc/core/client/v1/client.proto +48 -40
  39. package/types/address_hooks.go +2 -2
  40. package/types/address_hooks_test.go +3 -3
  41. package/types/ibc_packet.go +3 -3
  42. package/types/ibc_packet_test.go +3 -3
  43. package/types/kv_entry_helpers.go +3 -3
  44. package/types/kv_entry_helpers_test.go +2 -2
  45. package/types/legacy_address_encoder.go +58 -0
  46. package/vm/proto_json_test.go +1 -1
  47. package/vm/server.go +2 -1
  48. package/x/swingset/abci.go +2 -2
  49. package/x/swingset/client/cli/tx.go +16 -14
  50. package/x/swingset/config.go +1 -1
  51. package/x/swingset/genesis.go +2 -1
  52. package/x/swingset/handler.go +2 -1
  53. package/x/swingset/keeper/extension_snapshotter.go +14 -5
  54. package/x/swingset/keeper/extension_snapshotter_test.go +1 -1
  55. package/x/swingset/keeper/keeper.go +21 -17
  56. package/x/swingset/keeper/keeper_test.go +10 -7
  57. package/x/swingset/keeper/msg_server.go +26 -5
  58. package/x/swingset/keeper/swing_store_exports_handler.go +1 -1
  59. package/x/swingset/keeper/swing_store_exports_handler_test.go +1 -1
  60. package/x/swingset/module.go +20 -22
  61. package/x/swingset/types/codec.go +10 -5
  62. package/x/swingset/types/default-params.go +13 -12
  63. package/x/swingset/types/expected_keepers.go +5 -4
  64. package/x/swingset/types/msgs.go +50 -36
  65. package/x/swingset/types/msgs.pb.go +60 -51
  66. package/x/swingset/types/params_test.go +21 -20
  67. package/x/swingset/types/swingset.pb.go +67 -61
  68. package/x/vbank/genesis.go +12 -8
  69. package/x/vbank/handler.go +2 -1
  70. package/x/vbank/keeper/grpc_query.go +4 -1
  71. package/x/vbank/keeper/keeper.go +108 -23
  72. package/x/vbank/keeper/querier.go +4 -1
  73. package/x/vbank/keeper/rewards.go +6 -2
  74. package/x/vbank/module.go +47 -75
  75. package/x/vbank/types/expected_keepers.go +15 -10
  76. package/x/vbank/types/key.go +3 -0
  77. package/x/vbank/types/params.go +4 -3
  78. package/x/vbank/types/vbank.pb.go +41 -40
  79. package/x/vbank/vbank.go +25 -10
  80. package/x/vbank/vbank_test.go +213 -154
  81. package/x/vibc/handler.go +2 -1
  82. package/x/vibc/keeper/keeper.go +10 -10
  83. package/x/vibc/keeper/migrations.go +1 -1
  84. package/x/vibc/keeper/triggers.go +1 -1
  85. package/x/vibc/module.go +5 -22
  86. package/x/vibc/types/codec.go +2 -1
  87. package/x/vibc/types/expected_keepers.go +7 -5
  88. package/x/vibc/types/ibc_module.go +5 -5
  89. package/x/vibc/types/msgs.go +30 -7
  90. package/x/vibc/types/msgs.pb.go +29 -25
  91. package/x/vibc/types/receiver.go +2 -2
  92. package/x/vlocalchain/handler.go +2 -1
  93. package/x/vlocalchain/keeper/keeper.go +17 -5
  94. package/x/vlocalchain/keeper/keeper_test.go +3 -2
  95. package/x/vlocalchain/types/expected_keepers.go +7 -4
  96. package/x/vlocalchain/vlocalchain_test.go +38 -26
  97. package/x/vstorage/genesis.go +10 -10
  98. package/x/vstorage/handler.go +2 -1
  99. package/x/vstorage/keeper/keeper.go +68 -46
  100. package/x/vstorage/keeper/keeper_test.go +35 -19
  101. package/x/vstorage/module.go +27 -13
  102. package/x/vstorage/testing/queue.go +5 -3
  103. package/x/vstorage/vstorage.go +2 -1
  104. package/x/vstorage/vstorage_test.go +21 -17
  105. package/x/vtransfer/genesis.go +1 -3
  106. package/x/vtransfer/handler.go +3 -2
  107. package/x/vtransfer/ibc_middleware.go +5 -5
  108. package/x/vtransfer/ibc_middleware_test.go +43 -29
  109. package/x/vtransfer/keeper/keeper.go +35 -33
  110. package/x/vtransfer/module.go +8 -11
  111. package/x/vtransfer/types/expected_keepers.go +3 -3
  112. package/x/vtransfer/utils_test.go +26 -11
  113. package/coverage.txt +0 -8531
  114. package/daemon/cmd/testnet.go +0 -539
package/CHANGELOG.md CHANGED
@@ -3,11 +3,11 @@
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-u21.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.34.1...@agoric/cosmos@0.35.0-u21.0) (2025-06-19)
7
-
6
+ ## [0.35.0-u22.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.34.1...@agoric/cosmos@0.35.0-u22.0) (2025-09-09)
8
7
 
9
8
  ### ⚠ BREAKING CHANGES
10
9
 
10
+ * **cosmos:** upgrade to Cosmos SDK v0.50.14
11
11
  * **localchain:** make `localchain.query` and `queryMany` useful
12
12
  * **vstorage:** Enforce path validation
13
13
  * **cosmos:** make vm comms use `context.Context`
@@ -36,6 +36,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
36
36
  * **cosmos:** add `vm/jsonrpcconn` ([4184fb1](https://github.com/Agoric/agoric-sdk/commit/4184fb1a12b3c83d898cb8c43464e1e48838348c))
37
37
  * **cosmos:** Add a "CapData" vstorage RPC endpoint ([8943f2f](https://github.com/Agoric/agoric-sdk/commit/8943f2f850e0cddb87a6fad0a36f01e4c350cf45)), closes [#7581](https://github.com/Agoric/agoric-sdk/issues/7581)
38
38
  * **cosmos:** Add a vstorage package for decoding CapData ([8bdd7cb](https://github.com/Agoric/agoric-sdk/commit/8bdd7cb915f8e8d4103dc4d21b212aae67644b56))
39
+ * **cosmos:** add annotations for amino encoding ([3eb6830](https://github.com/Agoric/agoric-sdk/commit/3eb68309582695bc07e48c0201ffee1af56af44e))
39
40
  * **cosmos:** add hooking kv reader ([496a430](https://github.com/Agoric/agoric-sdk/commit/496a430c772a1f996e515ef9622e7668e00ea843))
40
41
  * **cosmos:** add required export-dir export cmd option ([3be2986](https://github.com/Agoric/agoric-sdk/commit/3be2986059c9f007d34518deef68e31956e9b45e))
41
42
  * **cosmos:** add Reserve withdrawal upgrade ([9e97cbd](https://github.com/Agoric/agoric-sdk/commit/9e97cbd7438e3df5aec96091d18ecdcde720978b))
@@ -50,7 +51,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
50
51
  * **cosmos:** KVEntry implements json Marshaler and Unmarshaller ([1bba859](https://github.com/Agoric/agoric-sdk/commit/1bba8592eee0e24e480c407095f0f63ccca4a242))
51
52
  * **cosmos:** make vm comms use `context.Context` ([fa1754c](https://github.com/Agoric/agoric-sdk/commit/fa1754c791ba6c848e6b94f3a75051c6b4cc69f6))
52
53
  * **cosmos:** new `IBCPacket` helpers to tame JSON ([f5a10b6](https://github.com/Agoric/agoric-sdk/commit/f5a10b6457501c9be9ae396bd1c7a8d43ea42dd6))
53
- * **cosmos:** Next upgrade is agoric-upgrade-21 ([39b5190](https://github.com/Agoric/agoric-sdk/commit/39b5190966dca03d8022ebd191c786647c8a3c3f))
54
+ * **cosmos:** Next upgrade is agoric-upgrade-22 ([cf0acc7](https://github.com/Agoric/agoric-sdk/commit/cf0acc7243a5790e2118339d9fe39e37d431bc1e))
54
55
  * **cosmos:** prevent VM port handlers from panicking ([afd6017](https://github.com/Agoric/agoric-sdk/commit/afd60170d453865cfa871a01e8d8a74ffef9221a))
55
56
  * **cosmos:** propagate and handle shutdown message ([ac12e6d](https://github.com/Agoric/agoric-sdk/commit/ac12e6d57b3a50e079744f7a6faced7f4bebb957))
56
57
  * **cosmos:** separate swing-store export data from genesis file ([f476bd5](https://github.com/Agoric/agoric-sdk/commit/f476bd50fb3ca5df0c4f43b20e059e05a2659b4c))
@@ -59,10 +60,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
59
60
  * **cosmos:** Support arbitrary core eval builder arguments ([#10767](https://github.com/Agoric/agoric-sdk/issues/10767)) ([a944f4c](https://github.com/Agoric/agoric-sdk/commit/a944f4cdf36012e8c07fe0804de5e9f3532db3ce)), closes [#10752](https://github.com/Agoric/agoric-sdk/issues/10752) [#10752](https://github.com/Agoric/agoric-sdk/issues/10752)
60
61
  * **cosmos:** support core proposals set by upgrade handler ([605eb4b](https://github.com/Agoric/agoric-sdk/commit/605eb4b8f33d7646c3a9084d43ecd51029e12b80))
61
62
  * **cosmos:** support snapshot export ([4386f8e](https://github.com/Agoric/agoric-sdk/commit/4386f8e67136f184b94febb5d65990a26e101cf3))
63
+ * **cosmos:** switch to custom amino encoder ([0a4e8f2](https://github.com/Agoric/agoric-sdk/commit/0a4e8f21f6dd11a92988b362cc27e6ff27e25d59))
62
64
  * **cosmos:** un-wire x/crisis ([#8582](https://github.com/Agoric/agoric-sdk/issues/8582)) ([7153535](https://github.com/Agoric/agoric-sdk/commit/7153535c5c10fed309dc60f12f981c81841fdb93))
63
65
  * **cosmos:** upgrade IBC vat for next release ([c994490](https://github.com/Agoric/agoric-sdk/commit/c99449081560480e7e2dd6fc069b12dbcc630370))
64
66
  * **cosmos:** upgrade provisioning vat ([#8901](https://github.com/Agoric/agoric-sdk/issues/8901)) ([174e37d](https://github.com/Agoric/agoric-sdk/commit/174e37d7499b372c33ecaf6e05f82f43ebfff902))
65
67
  * **cosmos:** upgrade skips proposals with no variant ([4ce1372](https://github.com/Agoric/agoric-sdk/commit/4ce13721201d9a62a40352d909f97a44d8e5b25d))
68
+ * **cosmos:** upgrade to Cosmos SDK v0.50.14 ([3a6e54a](https://github.com/Agoric/agoric-sdk/commit/3a6e54a87c4c47f062de2bac1e82db8688a7a32a))
66
69
  * **cosmos:** upgrade vat-bank ([8727b79](https://github.com/Agoric/agoric-sdk/commit/8727b79cf7b9e520630b793ea963a9f375d9707a))
67
70
  * **cosmos:** use `x/vbank` ConsensusVersion to upgrade monitoring ([0e367d3](https://github.com/Agoric/agoric-sdk/commit/0e367d3e9870622acc8a38afe57c2b6cbe629341))
68
71
  * **cosmos:** use operational artifact level for swingset state export/restore ([161ddd3](https://github.com/Agoric/agoric-sdk/commit/161ddd34ca6c16da0ad3ef716fa5da3d2ba86b68))
@@ -110,6 +113,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
110
113
  * **x/swingset:** add WaitUntilSwingStoreExportDone ([05bbee5](https://github.com/Agoric/agoric-sdk/commit/05bbee53906591f3520a14f7580145c5a2593208))
111
114
  * **x/swingset:** allow taking snapshot latest height ([a1290ef](https://github.com/Agoric/agoric-sdk/commit/a1290eff74583838f096acfd9baddb6f623693a6))
112
115
  * **x/swingset:** allow third party to provision wallet ([#10923](https://github.com/Agoric/agoric-sdk/issues/10923)) ([d2b661f](https://github.com/Agoric/agoric-sdk/commit/d2b661fa059ece198d02b2d72e9611b666c3794f)), closes [#10912](https://github.com/Agoric/agoric-sdk/issues/10912)
116
+ * **x/swingset:** amino encoding for core eval proposal ([b0a6ad0](https://github.com/Agoric/agoric-sdk/commit/b0a6ad04d75fc127fcb9ae862368ce7f156ad809))
113
117
  * **x/swingset:** auto-provision smart wallet ([20a5485](https://github.com/Agoric/agoric-sdk/commit/20a5485b96d072a4cee990b3c24f8fb441ea909f))
114
118
  * **x/swingset:** Define default vat cleanup budget as { default: 5, kv: 50 } ([d86ee6d](https://github.com/Agoric/agoric-sdk/commit/d86ee6d5cf0882a53ac3a6e3b802e4002c4c1d12))
115
119
  * **x/swingset:** export swing store in genesis ([598abf7](https://github.com/Agoric/agoric-sdk/commit/598abf73ac555bd7284c8a91a03c205dc62d9b0c))
@@ -118,7 +122,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
118
122
  * **x/swingset:** refuse smart wallet messages if not provisioned ([75bd9a7](https://github.com/Agoric/agoric-sdk/commit/75bd9a7bf85bd9b3b9870d9cf42d63f08f0e4f68))
119
123
  * **x/swingset:** Require a non-empty vat cleanup budget to include `default` ([28c4d8b](https://github.com/Agoric/agoric-sdk/commit/28c4d8bf9897f1ff744e64ea0e681ee41064aafd))
120
124
 
121
-
122
125
  ### Bug Fixes
123
126
 
124
127
  * **agd:** upgrade all orchestration vats to new liveslots ([59fa82c](https://github.com/Agoric/agoric-sdk/commit/59fa82c4740e1ddace28e1389e3c7c875bcdf93e))
@@ -127,13 +130,14 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
127
130
  * **cosmic-swingset:** add missing bits for maxVatsOnline ([8c0c177](https://github.com/Agoric/agoric-sdk/commit/8c0c17752f7439db6f7aee9f88be1dedce2a1bf1))
128
131
  * **cosmic-swingset:** plumbing for maxVatsOnline ([45a759a](https://github.com/Agoric/agoric-sdk/commit/45a759a71c8abc724618a12dfd8ae72552b9783e))
129
132
  * **cosmos-vm:** allow interleaved client requests ([a2a1cec](https://github.com/Agoric/agoric-sdk/commit/a2a1cec831c4556add77e099621253526596a0f6))
130
- * **cosmos-vstorage:** split 'size_delta' counter into 'size_increase' and 'size_decrease' ([#11063](https://github.com/Agoric/agoric-sdk/issues/11063)) ([3825031](https://github.com/Agoric/agoric-sdk/commit/38250315cedf68dc801b75bee867818a3846fae7)), closes [#11062](https://github.com/Agoric/agoric-sdk/issues/11062) [#10938](https://github.com/Agoric/agoric-sdk/issues/10938) [/github.com/Agoric/agoric-sdk/pull/10997#discussion_r1956583919](https://github.com/Agoric//github.com/Agoric/agoric-sdk/pull/10997/issues/discussion_r1956583919)
133
+ * **cosmos-vstorage:** split 'size_delta' counter into 'size_increase' and 'size_decrease' ([#11063](https://github.com/Agoric/agoric-sdk/issues/11063)) ([3825031](https://github.com/Agoric/agoric-sdk/commit/38250315cedf68dc801b75bee867818a3846fae7)), closes [#11062](https://github.com/Agoric/agoric-sdk/issues/11062) [#10938](https://github.com/Agoric/agoric-sdk/issues/10938)
131
134
  * **cosmos:** add action context to core evals ([7cfae88](https://github.com/Agoric/agoric-sdk/commit/7cfae88a1d2c31d91030a8742972d9f03d331059))
132
135
  * **cosmos:** add some missing pieces ([5cf1f52](https://github.com/Agoric/agoric-sdk/commit/5cf1f522d319434ec30cfb7961e2f3e607326b5f))
133
136
  * **cosmos:** Add support for iavl options ([c6770ec](https://github.com/Agoric/agoric-sdk/commit/c6770ece8dd7f3f56c40b3cb80be245a99e01c9d))
134
137
  * **cosmos:** correctly detect presence of Agoric VM ([c7e266e](https://github.com/Agoric/agoric-sdk/commit/c7e266e035cc454bf74e88e96959f862ece146f8))
135
138
  * **cosmos:** don't init controller before upgrade ([b4260af](https://github.com/Agoric/agoric-sdk/commit/b4260afd158c9f1c6faae8ee95019e1e7c385e5f))
136
139
  * **cosmos:** don't rerun store migrations on upgrade ([8738a9b](https://github.com/Agoric/agoric-sdk/commit/8738a9bee247096da1dc72e2d2ba9c338a0cb739))
140
+ * **cosmos:** empty `storeUpgrades` after release ([f4ec2b7](https://github.com/Agoric/agoric-sdk/commit/f4ec2b7f432b6ee8b61ec1a0dfea970655582e66))
137
141
  * **cosmos:** express dependency between proposals ([3cb85b8](https://github.com/Agoric/agoric-sdk/commit/3cb85b8a67fb69adf1bb0404cd101d205e05cd20))
138
142
  * **cosmos:** get `agd start` running again ([ff54e13](https://github.com/Agoric/agoric-sdk/commit/ff54e1369ac9dbbc79ec2e480ea8605201009746))
139
143
  * **cosmos:** ibc-go app migration up to `v7.2` ([ef4d95d](https://github.com/Agoric/agoric-sdk/commit/ef4d95d9a9c08a73b5622119a89707eaff6f41cf))
@@ -182,36 +186,28 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
182
186
  * **x/swingset:** guard snapshot restore for concurrency ([554a110](https://github.com/Agoric/agoric-sdk/commit/554a1102a08f466dad5d8291044150236896ec7a))
183
187
  * **x/swingset:** handle defer errors on export write ([f1eacbe](https://github.com/Agoric/agoric-sdk/commit/f1eacbec22eb52955266e401b83bc2e324b5bde5))
184
188
  * **x/swingset:** Let migration see incomplete Params structs ([315cdd5](https://github.com/Agoric/agoric-sdk/commit/315cdd56e0955ba26d624ca3a4997888abc1d635))
189
+ * **x/swingset:** register core eval proposal amino type ([1458971](https://github.com/Agoric/agoric-sdk/commit/1458971d40da12360d81c2e8c6593b9ba335f500))
190
+ * **x/swingset:** register install bundle amino type ([cce3109](https://github.com/Agoric/agoric-sdk/commit/cce3109d00308fac2441dbe9361cc568953d7bb7))
185
191
  * **x/swingset:** switch export/import to replay artifact level ([6ab24b2](https://github.com/Agoric/agoric-sdk/commit/6ab24b299f31affc0a638cc6352678a2c167044c))
186
192
  * **x/vstorage:** value can be empty in genesis data ([b8a817d](https://github.com/Agoric/agoric-sdk/commit/b8a817dfa70c225741a32fb73780de75c5aa9184))
187
193
 
188
-
189
194
  ### Reverts
190
195
 
191
196
  * Revert "fix(cosmos): don't log expected missing tx context of CORE_EVAL" ([003f0c2](https://github.com/Agoric/agoric-sdk/commit/003f0c2232815a8d64a3f9a5b05521a10160ce34))
192
197
  * Revert "fix: handle hang-on-halt behavior from agoric-labs/cosmos-sdk#305" ([4d99888](https://github.com/Agoric/agoric-sdk/commit/4d998883cea2b7a0fa844f471620061adb42ff07)), closes [agoric-labs/cosmos-sdk#305](https://github.com/agoric-labs/cosmos-sdk/issues/305) [agoric-labs/cosmos-sdk#305](https://github.com/agoric-labs/cosmos-sdk/issues/305)
193
198
 
194
-
195
199
  ### Build System
196
200
 
197
201
  * remove deprecated `ag-cosmos-helper` ([6866ebe](https://github.com/Agoric/agoric-sdk/commit/6866ebe670c257b60dfb6951c295e21ce0fe2fcc))
198
202
 
199
-
200
-
201
203
  ### [0.34.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.34.0...@agoric/cosmos@0.34.1) (2023-06-09)
202
204
 
203
205
  **Note:** Version bump only for package @agoric/cosmos
204
206
 
205
-
206
-
207
-
208
-
209
207
  ### Updated go.mod and go.sum to include the barberry fix
210
208
 
211
-
212
209
  ## [0.34.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.32.2...@agoric/cosmos@0.34.0) (2023-05-19)
213
210
 
214
-
215
211
  ### ⚠ BREAKING CHANGES
216
212
 
217
213
  * **vstorage:** separate `set`, `legacySet` and `setWithoutNotify`
@@ -246,7 +242,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
246
242
  * **vstorage:** batch and dedupe events per block ([312b608](https://github.com/Agoric/agoric-sdk/commit/312b60818835865de48cf3252819c56152f5876c))
247
243
  * **vstorage:** separate `set`, `legacySet` and `setWithoutNotify` ([a242a0e](https://github.com/Agoric/agoric-sdk/commit/a242a0e7670300f2ac67eaf5d163d9ea13fff65c))
248
244
 
249
-
250
245
  ### Bug Fixes
251
246
 
252
247
  * **agd:** run the bootstrap block during `agoric-upgrade-10` ([3bb75e3](https://github.com/Agoric/agoric-sdk/commit/3bb75e398b3827c9608137f8ccb5d31c468a3684))
@@ -270,30 +265,22 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
270
265
  * **vbank:** only "module account" events cause balance updates ([f90f094](https://github.com/Agoric/agoric-sdk/commit/f90f0946c2ccf61339b63458927860f00e39cc9a))
271
266
  * **vbank:** properly detect module accounts ([5b5f39d](https://github.com/Agoric/agoric-sdk/commit/5b5f39d4e48b4d990f6534a14890fe745b1e8946))
272
267
 
273
-
274
268
  ### Reverts
275
269
 
276
270
  * Revert "fix: disable state-sync by default, until we've implemented it" ([30340fb](https://github.com/Agoric/agoric-sdk/commit/30340fbf14caaa0decb1dc1c0dd2ecec150c38d6))
277
271
 
278
-
279
-
280
272
  ## [0.33.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.32.2...@agoric/cosmos@0.33.0) (2023-02-17)
281
273
 
282
-
283
274
  ### Features
284
275
 
285
276
  * null upgrade handler for upgrade-9 ([bfbc86f](https://github.com/Agoric/agoric-sdk/commit/bfbc86f32959c8e900bda3ed2bae7283e9975f66))
286
277
 
287
-
288
278
  ### Bug Fixes
289
279
 
290
280
  * remove unneeded upgrade store loader ([e7a0ea0](https://github.com/Agoric/agoric-sdk/commit/e7a0ea0d8029ac131ca07ba90a4da210d4be6294))
291
281
 
292
-
293
-
294
282
  ### [0.32.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.32.1...@agoric/cosmos@0.32.2) (2022-10-18)
295
283
 
296
-
297
284
  ### Bug Fixes
298
285
 
299
286
  * actually run the upgrade handler for test ([142b769](https://github.com/Agoric/agoric-sdk/commit/142b7696061e724c5bf25c627b1356610dc5fa75))
@@ -301,21 +288,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
301
288
  * init in the right order ([3050d11](https://github.com/Agoric/agoric-sdk/commit/3050d11a9bff53251d9fb7ccfea7cb713fd14ca8))
302
289
  * use fromVM instead of vm since vm is an import ([131f0db](https://github.com/Agoric/agoric-sdk/commit/131f0db9dfcd46aa04ce7e0b5115fc3735a175fd))
303
290
 
304
-
305
-
306
291
  ### [0.32.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.32.0...@agoric/cosmos@0.32.1) (2022-10-08)
307
292
 
308
-
309
293
  ### Bug Fixes
310
294
 
311
295
  * implement upgrade handler ([0f64bf1](https://github.com/Agoric/agoric-sdk/commit/0f64bf15e78e27e7e3127a62740025ab823a4a96))
312
296
  * review comments ([c67dc3c](https://github.com/Agoric/agoric-sdk/commit/c67dc3c17b1158c6a56ecd94856b55ec5f873983))
313
297
 
314
-
315
-
316
298
  ## [0.32.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.31.0...@agoric/cosmos@0.32.0) (2022-10-05)
317
299
 
318
-
319
300
  ### Features
320
301
 
321
302
  * compute separate mempool limit for allowed inbound ([ebfc852](https://github.com/Agoric/agoric-sdk/commit/ebfc85272ab9c589d6a0ecb6dac5b59f931f3001))
@@ -326,7 +307,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
326
307
  * run CI and mergify on release-pismo ([#6338](https://github.com/Agoric/agoric-sdk/issues/6338)) ([cf973d0](https://github.com/Agoric/agoric-sdk/commit/cf973d08c8a15678d2c3bdbddf96d330ce5246db))
327
308
  * upgrade handler for upgrade 8 ([54c8746](https://github.com/Agoric/agoric-sdk/commit/54c8746247aafc4888f55be759d20b86faee4956))
328
309
 
329
-
330
310
  ### Bug Fixes
331
311
 
332
312
  * detect CheckTx correctly, reject inbound before fees ([ae8fc79](https://github.com/Agoric/agoric-sdk/commit/ae8fc790d7966dd011da7c359b1a783b4aaa672e))
@@ -335,11 +315,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
335
315
  * generate vbank notifications for zero balances ([9769886](https://github.com/Agoric/agoric-sdk/commit/976988605fb2de00ebceee3c98db8a4d7b8a0199))
336
316
  * remove unneeded store upgrade ([f1cc0da](https://github.com/Agoric/agoric-sdk/commit/f1cc0dacb37948777329f7bc8ade6218e3f03a34))
337
317
 
338
-
339
-
340
318
  ## [0.31.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.30.0...@agoric/cosmos@0.31.0) (2022-09-20)
341
319
 
342
-
343
320
  ### ⚠ BREAKING CHANGES
344
321
 
345
322
  * **vstorage:** separate `x/vstorage` from `x/swingset` module
@@ -359,7 +336,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
359
336
  * **vstorage:** provide the data prefix for the storeKey ([f08b2ac](https://github.com/Agoric/agoric-sdk/commit/f08b2ac85830ab16ce1f1688cede98a6a64c8062))
360
337
  * **vstorage:** separate `x/vstorage` from `x/swingset` module ([cf7b993](https://github.com/Agoric/agoric-sdk/commit/cf7b99334f7152694a98aec4a1e221794792287c))
361
338
 
362
-
363
339
  ### Bug Fixes
364
340
 
365
341
  * move auth module earlier in genesis order ([d689d2e](https://github.com/Agoric/agoric-sdk/commit/d689d2e153917486f26a213cfd09c076eb3fa776))
@@ -373,11 +349,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
373
349
  * **vats:** update `chainStorage` to use new `vstorage` API ([094044c](https://github.com/Agoric/agoric-sdk/commit/094044c6e75203a47d069242cfa225b2c15d80d5))
374
350
  * **vstorage:** efficient ancestry ([68df8ed](https://github.com/Agoric/agoric-sdk/commit/68df8ede30eddfb2559654994dd8517cec4427b3))
375
351
 
376
-
377
-
378
352
  ## [0.30.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.29.0...@agoric/cosmos@0.30.0) (2022-05-28)
379
353
 
380
-
381
354
  ### Features
382
355
 
383
356
  * **agd:** Add install-bundle command ([6d3e227](https://github.com/Agoric/agoric-sdk/commit/6d3e227314da09609ea17aead2c0e1b48510b128))
@@ -389,18 +362,14 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
389
362
  * **vbank:** update with `vbank/reserve` module account ([3799383](https://github.com/Agoric/agoric-sdk/commit/379938358a669b6b247474d3e7fabf576f75b01d))
390
363
  * cli for sending Wallet{Spend}Action transactions ([ddb9629](https://github.com/Agoric/agoric-sdk/commit/ddb96291d37c3832e9593e3a9ed466d89fc8a824))
391
364
 
392
-
393
365
  ### Bug Fixes
394
366
 
395
367
  * **keeper:** do not delete keys with descendents ([cb272ae](https://github.com/Agoric/agoric-sdk/commit/cb272ae97a042ceefd3af93b1b4601ca49dfe3a7))
396
368
  * **vbank:** avoid panicing on invalid denoms ([adc22d6](https://github.com/Agoric/agoric-sdk/commit/adc22d6ba3125a7e878885b066019f0e6b95a6a1))
397
369
  * Correct a dead link for package @agoric/cosmos ([#5143](https://github.com/Agoric/agoric-sdk/issues/5143)) ([1e51f6a](https://github.com/Agoric/agoric-sdk/commit/1e51f6a0bedefd0e33260a78b21ad72d31048f08))
398
370
 
399
-
400
-
401
371
  ## [0.29.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.28.0...@agoric/cosmos@0.29.0) (2022-04-18)
402
372
 
403
-
404
373
  ### ⚠ BREAKING CHANGES
405
374
 
406
375
  * consistent Node engine requirement (>=14.15.0)
@@ -410,7 +379,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
410
379
  * can only lien vested tokens ([9eea226](https://github.com/Agoric/agoric-sdk/commit/9eea22695b43e899c2dc701a6cdc6b3aa2e5f987))
411
380
  * track delegation in lien wrapper account ([05da39f](https://github.com/Agoric/agoric-sdk/commit/05da39fdbaaaeadef52f7eee874517fd1e8c0299))
412
381
 
413
-
414
382
  ### Bug Fixes
415
383
 
416
384
  * prevent panic in `BindPort` ([5df86b0](https://github.com/Agoric/agoric-sdk/commit/5df86b0753367af883a2d1563a7267bcb15d1779))
@@ -418,16 +386,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
418
386
  * add account wrappers for whole account hierarchy ([633a07f](https://github.com/Agoric/agoric-sdk/commit/633a07f4179e55824ba37b2b341347dd7db83b64))
419
387
  * **cosmosswingset:** check negativity before castnig to uint ([db6c3da](https://github.com/Agoric/agoric-sdk/commit/db6c3dab4162e3e52720e81d10b1798064b94817))
420
388
 
421
-
422
389
  ### Miscellaneous Chores
423
390
 
424
391
  * consistent Node engine requirement (>=14.15.0) ([ddc40fa](https://github.com/Agoric/agoric-sdk/commit/ddc40fa525f845ed900512c38b99f01458a3d131))
425
392
 
426
-
427
-
428
393
  ## [0.28.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.27.3...@agoric/cosmos@0.28.0) (2022-02-24)
429
394
 
430
-
431
395
  ### ⚠ BREAKING CHANGES
432
396
 
433
397
  * **cosmos:** RUN protocol etc. is not started by default.
@@ -446,40 +410,31 @@ Stay tuned for a mechanism to turn them on via governance.
446
410
  * **cosmos:** implement `x/swingset` CoreEval and Wallet ([251cf41](https://github.com/Agoric/agoric-sdk/commit/251cf41b36c6c3b32678ef5a707794e6cdc07197))
447
411
  * **cosmos:** robustly handle kvstore rollback ([c58ddb4](https://github.com/Agoric/agoric-sdk/commit/c58ddb490229741e57ef2130493608cbe9b13d4c))
448
412
 
449
-
450
413
  ### Bug Fixes
451
414
 
452
415
  * **cosmos:** use core bootstrap by default ([2cbf293](https://github.com/Agoric/agoric-sdk/commit/2cbf293f4d5fab85fc8c14cd1566a2dd78e99f86))
453
416
 
454
-
455
-
456
417
  ### [0.27.3](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.27.2...@agoric/cosmos@0.27.3) (2022-02-21)
457
418
 
458
-
459
419
  ### Features
460
420
 
461
421
  * **cosmos:** charge SwingSet fees at the Cosmos level ([5da6fec](https://github.com/Agoric/agoric-sdk/commit/5da6fece5c89c46a159970a734feb17bbd9a4d08))
462
422
  * **cosmos:** set `swingset.params.bootstrap_vat_config` at genesis ([63e6e67](https://github.com/Agoric/agoric-sdk/commit/63e6e67957bad2bb05b7693f667e2efd1cbc9e48))
463
423
  * **ibc:** reimplement `relativeTimeoutNs`, per `ibc-go` ([4673493](https://github.com/Agoric/agoric-sdk/commit/4673493df11f51e9aa018b0ded9632776759f1ee))
464
424
 
465
-
466
425
  ### Bug Fixes
467
426
 
468
427
  * **cosmos:** remove unnecessary IBC complexity ([08f9a44](https://github.com/Agoric/agoric-sdk/commit/08f9a44751d0122f90368d6d64d512482a7dbf41))
469
428
  * make `default-params.go` match `sim-params.js` ([550ba3a](https://github.com/Agoric/agoric-sdk/commit/550ba3a058cc2f7e0200479c6c3ceaf5dc39e21e))
470
429
  * **sim-params:** update parameters to charge higher SwingSet fees ([341ddbb](https://github.com/Agoric/agoric-sdk/commit/341ddbbf43637c38eb194f3e7c6fd20fb1e5cb4e))
471
430
 
472
-
473
-
474
431
  ### [0.27.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.27.1...@agoric/cosmos@0.27.2) (2021-12-22)
475
432
 
476
-
477
433
  ### Features
478
434
 
479
435
  * **cosmos:** adapt Agoric changes to new `gaiad` ([29535de](https://github.com/Agoric/agoric-sdk/commit/29535ded86ca87db70b2fa59d85dc4394bbba761))
480
436
  * **cosmos:** upgrade to `gaia/releases/v6.0.0` ([2fe7008](https://github.com/Agoric/agoric-sdk/commit/2fe7008ed699bb543db0ad8c3fb750dfd8c6c425))
481
437
 
482
-
483
438
  ### Bug Fixes
484
439
 
485
440
  * **cosmos:** add `upgradegaia.sh` to apply Gaia source upgrades ([b9669c5](https://github.com/Agoric/agoric-sdk/commit/b9669c5dfe80c9942aed620fdaa19b164c9f3600))
@@ -487,11 +442,8 @@ Stay tuned for a mechanism to turn them on via governance.
487
442
  * **cosmos:** don't twiddle the genesis params, set them explicitly ([c9c8d81](https://github.com/Agoric/agoric-sdk/commit/c9c8d81f476a0df7559eae35c0dd323cd26a9d7b))
488
443
  * **cosmos:** properly put `x/capability` in `SetOrderBeginBlockers` ([823f4fe](https://github.com/Agoric/agoric-sdk/commit/823f4fe86a8f2109f87746f00ffbd3eeb4bf1e38))
489
444
 
490
-
491
-
492
445
  ### [0.27.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.27.0...@agoric/cosmos@0.27.1) (2021-12-02)
493
446
 
494
-
495
447
  ### Features
496
448
 
497
449
  * **ante:** record `tx_ante_admission_refused` counter ([7d31058](https://github.com/Agoric/agoric-sdk/commit/7d31058caf64a57ef127f129588162ecc7377bea))
@@ -506,7 +458,6 @@ Stay tuned for a mechanism to turn them on via governance.
506
458
  * **cosmos:** use snake-cased governance params ([41ca6dc](https://github.com/Agoric/agoric-sdk/commit/41ca6dcde40ef01a9ff1c9564d6b3763a779bf35))
507
459
  * implement staking state query to support voting ([4d44aa4](https://github.com/Agoric/agoric-sdk/commit/4d44aa40d147389cae6083c1210fe287478257c7))
508
460
 
509
-
510
461
  ### Bug Fixes
511
462
 
512
463
  * represent storage in same order in genesis state ([f584cd1](https://github.com/Agoric/agoric-sdk/commit/f584cd1a1256d4b27cf05a1b46bda1fb6aa591af))
@@ -518,11 +469,8 @@ Stay tuned for a mechanism to turn them on via governance.
518
469
  * upgrade and configure buf ([334aa87](https://github.com/Agoric/agoric-sdk/commit/334aa8796b318dd1efbff76da3e51d3fa077ca8e))
519
470
  * **cosmos:** remove extra `types.Storage` wrapping from x/swingset ([d716f96](https://github.com/Agoric/agoric-sdk/commit/d716f966ff2582b7fcfa19f74e9b083182df29b0))
520
471
 
521
-
522
-
523
472
  ## [0.27.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.19...@agoric/cosmos@0.27.0) (2021-10-13)
524
473
 
525
-
526
474
  ### ⚠ BREAKING CHANGES
527
475
 
528
476
  * **cosmos:** compile agd binary to supercede ag-chain-cosmos
@@ -535,7 +483,6 @@ Stay tuned for a mechanism to turn them on via governance.
535
483
  * revise x/lien to hold total liened amount ([842c9b0](https://github.com/Agoric/agoric-sdk/commit/842c9b0d98a8655b286c9f91c70bb6fddc3e0ba3))
536
484
  * stateless lien module that upcalls to kernel ([603c0cf](https://github.com/Agoric/agoric-sdk/commit/603c0cfc8d2b4706dbbaa42d2ae057fa9dea65dc))
537
485
 
538
-
539
486
  ### Bug Fixes
540
487
 
541
488
  * address review comments ([8af3e15](https://github.com/Agoric/agoric-sdk/commit/8af3e1547b4df32c604f6b628a62bff230666166))
@@ -543,86 +490,56 @@ Stay tuned for a mechanism to turn them on via governance.
543
490
  * don't use manual key prefix ([50a881b](https://github.com/Agoric/agoric-sdk/commit/50a881be4971cd5c006867daca66eb6138276492))
544
491
  * lien accounts must proxy all account methods ([db79c42](https://github.com/Agoric/agoric-sdk/commit/db79c42398195a09e8b3953dad35224f0943752b))
545
492
 
546
-
547
-
548
493
  ### [0.26.19](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.18...@agoric/cosmos@0.26.19) (2021-09-23)
549
494
 
550
495
  **Note:** Version bump only for package @agoric/cosmos
551
496
 
552
-
553
-
554
-
555
-
556
497
  ### [0.26.18](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.17...@agoric/cosmos@0.26.18) (2021-09-15)
557
498
 
558
-
559
499
  ### Features
560
500
 
561
501
  * **cosmos:** publish event when `x/swingset` storage is modified ([8b63eb0](https://github.com/Agoric/agoric-sdk/commit/8b63eb08006807af547f4b1e166fef34c6cdde75))
562
502
 
563
-
564
503
  ### Bug Fixes
565
504
 
566
505
  * **cosmos:** ensure simulated transactions can't trigger SwingSet ([997329a](https://github.com/Agoric/agoric-sdk/commit/997329a92f5380edab586f4186a2092ce361dcde))
567
506
  * **cosmos:** the bootstrap block is not a simulation, either ([f906a54](https://github.com/Agoric/agoric-sdk/commit/f906a54a9a3cdb2342c8b274a7132fb6aa9e9fcc))
568
507
  * **solo:** query WebSocket for mailbox instead of ag-cosmos-helper ([9a23c34](https://github.com/Agoric/agoric-sdk/commit/9a23c344e3d2c1980e27db23e3caa306a9bd655f))
569
508
 
570
-
571
-
572
509
  ### [0.26.17](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.16...@agoric/cosmos@0.26.17) (2021-08-21)
573
510
 
574
-
575
511
  ### Bug Fixes
576
512
 
577
513
  * **cosmos:** the bootstrap block is not a simulation, either ([c4e4727](https://github.com/Agoric/agoric-sdk/commit/c4e472748b4eed4f7ad9650a5904a526e0c2e214))
578
514
 
579
-
580
-
581
515
  ### [0.26.16](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.15...@agoric/cosmos@0.26.16) (2021-08-21)
582
516
 
583
517
  **Note:** Version bump only for package @agoric/cosmos
584
518
 
585
-
586
-
587
-
588
-
589
519
  ### [0.26.15](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.14...@agoric/cosmos@0.26.15) (2021-08-18)
590
520
 
591
-
592
521
  ### Bug Fixes
593
522
 
594
523
  * **cosmos:** don't version x/swingset proto yet ([4463e89](https://github.com/Agoric/agoric-sdk/commit/4463e8950f930216ec0a1270e3c5d3a8d6ec510d))
595
524
  * **cosmos:** properly fail when querying missing egress/mailbox ([0c1be92](https://github.com/Agoric/agoric-sdk/commit/0c1be922f3742ea2e7fb7e82f567ab04b85f7ae1))
596
525
  * **cosmos:** route x/swingset queries through GRPC ([34fc9cd](https://github.com/Agoric/agoric-sdk/commit/34fc9cd89ef1c018840ed019c481a1e255d96378))
597
526
 
598
-
599
-
600
527
  ### [0.26.14](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.13...@agoric/cosmos@0.26.14) (2021-08-17)
601
528
 
602
529
  **Note:** Version bump only for package @agoric/cosmos
603
530
 
604
-
605
-
606
-
607
-
608
531
  ### [0.26.13](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.12...@agoric/cosmos@0.26.13) (2021-08-16)
609
532
 
610
533
  **Note:** Version bump only for package @agoric/cosmos
611
534
 
612
-
613
-
614
-
615
-
616
535
  ### [0.26.12](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.9...@agoric/cosmos@0.26.12) (2021-08-15)
617
536
 
618
-
619
537
  ### Features
620
538
 
621
539
  * **cosmos:** generate GRPC REST gateway implementations ([968b78e](https://github.com/Agoric/agoric-sdk/commit/968b78e40bd8a2bdb9aff1f141c1d9489b581354))
622
540
  * **cosmos:** upgrade to v0.43.0 and add vbank governance hooks ([29137dd](https://github.com/Agoric/agoric-sdk/commit/29137dd8bd8b08776fff7a2a97405042da9222a5))
623
541
  * **vbank:** add governance and query methods ([c80912e](https://github.com/Agoric/agoric-sdk/commit/c80912e6110b8d45d6b040ee9f3d9c1addaab804))
624
542
 
625
-
626
543
  ### Bug Fixes
627
544
 
628
545
  * **cosmos:** deterministic storage modification and querying ([799ebdb](https://github.com/Agoric/agoric-sdk/commit/799ebdb77056ce40404358099a65f8ef673de6c9))
@@ -630,115 +547,80 @@ Stay tuned for a mechanism to turn them on via governance.
630
547
 
631
548
  ### 0.26.10 (2021-07-28)
632
549
 
633
-
634
550
  ### Features
635
551
 
636
552
  * **cosmos:** use agoric-labs/cosmos-sdk v0.43.0-rc0.agoric ([6dfebdb](https://github.com/Agoric/agoric-sdk/commit/6dfebdb1493ae448f226cd5b1be399213068ca95))
637
553
 
638
-
639
554
  ### Bug Fixes
640
555
 
641
556
  * **cosmic-swingset:** use BOOTSTRAP_BLOCK to avoid slog confusion ([9c8725b](https://github.com/Agoric/agoric-sdk/commit/9c8725bae6ff4038052f33947da77d3eddc0351d))
642
557
 
643
-
644
-
645
558
  ### [0.26.11](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.9...@agoric/cosmos@0.26.11) (2021-08-14)
646
559
 
647
-
648
560
  ### Features
649
561
 
650
562
  * **cosmos:** generate GRPC REST gateway implementations ([968b78e](https://github.com/Agoric/agoric-sdk/commit/968b78e40bd8a2bdb9aff1f141c1d9489b581354))
651
563
  * **cosmos:** upgrade to v0.43.0 and add vbank governance hooks ([29137dd](https://github.com/Agoric/agoric-sdk/commit/29137dd8bd8b08776fff7a2a97405042da9222a5))
652
564
  * **vbank:** add governance and query methods ([c80912e](https://github.com/Agoric/agoric-sdk/commit/c80912e6110b8d45d6b040ee9f3d9c1addaab804))
653
565
 
654
-
655
566
  ### Bug Fixes
656
567
 
657
568
  * **cosmos:** don't force the output format to JSON ([671b93d](https://github.com/Agoric/agoric-sdk/commit/671b93d6032656dceeee1616b849535145b3e10d))
658
569
 
659
570
  ### 0.26.10 (2021-07-28)
660
571
 
661
-
662
572
  ### Features
663
573
 
664
574
  * **cosmos:** use agoric-labs/cosmos-sdk v0.43.0-rc0.agoric ([6dfebdb](https://github.com/Agoric/agoric-sdk/commit/6dfebdb1493ae448f226cd5b1be399213068ca95))
665
575
 
666
-
667
576
  ### Bug Fixes
668
577
 
669
578
  * **cosmic-swingset:** use BOOTSTRAP_BLOCK to avoid slog confusion ([9c8725b](https://github.com/Agoric/agoric-sdk/commit/9c8725bae6ff4038052f33947da77d3eddc0351d))
670
579
 
671
-
672
-
673
580
  ### [0.26.10](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.9...@agoric/cosmos@0.26.10) (2021-07-28)
674
581
 
675
-
676
582
  ### Features
677
583
 
678
584
  * **cosmos:** use agoric-labs/cosmos-sdk v0.43.0-rc0.agoric ([6dfebdb](https://github.com/Agoric/agoric-sdk/commit/6dfebdb1493ae448f226cd5b1be399213068ca95))
679
585
 
680
-
681
586
  ### Bug Fixes
682
587
 
683
588
  * **cosmic-swingset:** use BOOTSTRAP_BLOCK to avoid slog confusion ([9c8725b](https://github.com/Agoric/agoric-sdk/commit/9c8725bae6ff4038052f33947da77d3eddc0351d))
684
589
 
685
-
686
-
687
590
  ### [0.26.9](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.8...@agoric/cosmos@0.26.9) (2021-07-01)
688
591
 
689
-
690
592
  ### Bug Fixes
691
593
 
692
594
  * **vbank:** ensure that multiple balance updates are sorted ([204790f](https://github.com/Agoric/agoric-sdk/commit/204790f4c70e198cc06fe54e9205a71567ca6c83))
693
595
 
694
-
695
-
696
596
  ### [0.26.8](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.7...@agoric/cosmos@0.26.8) (2021-06-28)
697
597
 
698
-
699
598
  ### Bug Fixes
700
599
 
701
600
  * **vbank:** be sure to persist nonce state in the KVStore ([9dc151a](https://github.com/Agoric/agoric-sdk/commit/9dc151a26c13c84351dba237d2e550f0cabb3d49))
702
601
 
703
-
704
-
705
602
  ### [0.26.7](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.6...@agoric/cosmos@0.26.7) (2021-06-25)
706
603
 
707
-
708
604
  ### Bug Fixes
709
605
 
710
606
  * **cosmos:** have daemon also trap os.Interrupt for good luck ([9854446](https://github.com/Agoric/agoric-sdk/commit/98544462b469cce8b3365223fc31a4ca305e610f))
711
607
 
712
-
713
-
714
608
  ### [0.26.6](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.5...@agoric/cosmos@0.26.6) (2021-06-24)
715
609
 
716
610
  **Note:** Version bump only for package @agoric/cosmos
717
611
 
718
-
719
-
720
-
721
-
722
612
  ### [0.26.5](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.4...@agoric/cosmos@0.26.5) (2021-06-23)
723
613
 
724
-
725
614
  ### Bug Fixes
726
615
 
727
616
  * move COMMIT_BLOCK immediately before the Cosmos SDK commit ([f0d2e68](https://github.com/Agoric/agoric-sdk/commit/f0d2e686a68cffbee2e97697594a7669051f0b40))
728
617
 
729
-
730
-
731
618
  ### [0.26.4](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.3...@agoric/cosmos@0.26.4) (2021-06-16)
732
619
 
733
620
  **Note:** Version bump only for package @agoric/cosmos
734
621
 
735
-
736
-
737
-
738
-
739
622
  ### [0.26.3](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.2...@agoric/cosmos@0.26.3) (2021-06-15)
740
623
 
741
-
742
624
  ### Features
743
625
 
744
626
  * enable VPURSE_GIVE_TO_FEE_COLLECTOR ([b56fa7f](https://github.com/Agoric/agoric-sdk/commit/b56fa7fc6c7180e3bcba3660da3ec897bc84d551))
@@ -747,7 +629,6 @@ Stay tuned for a mechanism to turn them on via governance.
747
629
  * implement cosmos-sdk v0.43.0-beta1 ([7b05073](https://github.com/Agoric/agoric-sdk/commit/7b05073f1e8a458e54fa9ddd6ba037b9e472d59a))
748
630
  * send AG_COSMOS_INIT supplyCoins instead of vpurse genesis ([759d6ab](https://github.com/Agoric/agoric-sdk/commit/759d6abe4ec5f798dca15a88d3523c63808a8b30))
749
631
 
750
-
751
632
  ### Bug Fixes
752
633
 
753
634
  * apply recent renames, use aliases if possible ([d703223](https://github.com/Agoric/agoric-sdk/commit/d7032237fea884b28c72cb3bdbd6bc9deebf6d46))
@@ -758,36 +639,23 @@ Stay tuned for a mechanism to turn them on via governance.
758
639
  * **golang:** exit Go on signals; no more SIGKILL just to quit ([b5222b3](https://github.com/Agoric/agoric-sdk/commit/b5222b3352ad71854472dce9f8561417576ddd97))
759
640
  * Pin ESM to forked version ([54dbb55](https://github.com/Agoric/agoric-sdk/commit/54dbb55d64d7ff7adb395bc4bd9d1461dd2d3c17))
760
641
 
761
-
762
-
763
642
  ## [0.26.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.1...@agoric/cosmos@0.26.2) (2021-05-10)
764
643
 
765
-
766
644
  ### Bug Fixes
767
645
 
768
646
  * a malformed case statement elided recipient vpurse updates ([5f4664d](https://github.com/Agoric/agoric-sdk/commit/5f4664de429740a266bbbd0ad6b1f868a2b4240b))
769
647
  * update incorrect string cast where Sprint was needed ([c83dc19](https://github.com/Agoric/agoric-sdk/commit/c83dc198a23c844edaccacf351bb8911c893153b))
770
648
 
771
-
772
-
773
-
774
-
775
649
  ## [0.26.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.26.0...@agoric/cosmos@0.26.1) (2021-05-05)
776
650
 
777
651
  **Note:** Version bump only for package @agoric/cosmos
778
652
 
779
-
780
-
781
-
782
-
783
653
  # [0.26.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.25.4...@agoric/cosmos@0.26.0) (2021-05-05)
784
654
 
785
-
786
655
  ### Bug Fixes
787
656
 
788
657
  * adjust git-revision.txt generation ([6a8b0f2](https://github.com/Agoric/agoric-sdk/commit/6a8b0f20df17d5427b1c70273bcc170c7945dc2a))
789
658
 
790
-
791
659
  ### Features
792
660
 
793
661
  * **golang:** implement balance updates for virtual purses ([c4c485c](https://github.com/Agoric/agoric-sdk/commit/c4c485cbc2280464e632b1b4a2fa945e86ff8b36))
@@ -795,98 +663,54 @@ Stay tuned for a mechanism to turn them on via governance.
795
663
  * plumb through the genesis data to vpurse initialisation ([8105589](https://github.com/Agoric/agoric-sdk/commit/8105589dd7e14a7e8edbbac4a794d8eee2f30298))
796
664
  * **vpurse:** connect to golang ([d2f719d](https://github.com/Agoric/agoric-sdk/commit/d2f719dce9936a129817a3781bc1de8c4367bb46))
797
665
 
798
-
799
-
800
-
801
-
802
666
  ## [0.25.4](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.25.3...@agoric/cosmos@0.25.4) (2021-04-22)
803
667
 
804
668
  **Note:** Version bump only for package @agoric/cosmos
805
669
 
806
-
807
-
808
-
809
-
810
670
  ## [0.25.3](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.25.2...@agoric/cosmos@0.25.3) (2021-04-18)
811
671
 
812
672
  **Note:** Version bump only for package @agoric/cosmos
813
673
 
814
-
815
-
816
-
817
-
818
674
  ## [0.25.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.25.1...@agoric/cosmos@0.25.2) (2021-04-16)
819
675
 
820
676
  **Note:** Version bump only for package @agoric/cosmos
821
677
 
822
-
823
-
824
-
825
-
826
678
  ## [0.25.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.25.0...@agoric/cosmos@0.25.1) (2021-04-14)
827
679
 
828
680
  **Note:** Version bump only for package @agoric/cosmos
829
681
 
830
-
831
-
832
-
833
-
834
682
  # [0.25.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.24.5...@agoric/cosmos@0.25.0) (2021-04-13)
835
683
 
836
-
837
684
  ### Bug Fixes
838
685
 
839
686
  * run swingset on genesis init before opening for business ([7e228d4](https://github.com/Agoric/agoric-sdk/commit/7e228d40d8d435727863c72c1ba19ca7267476ce))
840
687
 
841
-
842
688
  ### Features
843
689
 
844
690
  * install Pegasus on "transfer" IBC port ([a257216](https://github.com/Agoric/agoric-sdk/commit/a2572163878bad9c6ba11914e02b8aacfefedeba))
845
691
  * wait until genesis time has passed before continuing ([4d13843](https://github.com/Agoric/agoric-sdk/commit/4d13843db58fa1f7037386d54db13cbf786cd1d3))
846
692
 
847
-
848
-
849
-
850
-
851
693
  ## [0.24.5](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.24.4...@agoric/cosmos@0.24.5) (2021-04-07)
852
694
 
853
695
  **Note:** Version bump only for package @agoric/cosmos
854
696
 
855
-
856
-
857
-
858
-
859
697
  ## [0.24.4](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.24.3...@agoric/cosmos@0.24.4) (2021-04-06)
860
698
 
861
699
  **Note:** Version bump only for package @agoric/cosmos
862
700
 
863
-
864
-
865
-
866
-
867
701
  ## [0.24.3](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.24.2...@agoric/cosmos@0.24.3) (2021-03-24)
868
702
 
869
-
870
703
  ### Bug Fixes
871
704
 
872
705
  * silence some noisy Go logs ([6ef8a69](https://github.com/Agoric/agoric-sdk/commit/6ef8a69b5c7845a33d1ec7bfeb6c74ece2fbab0f))
873
706
 
874
-
875
-
876
-
877
-
878
707
  ## [0.24.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.24.1...@agoric/cosmos@0.24.2) (2021-03-16)
879
708
 
880
-
881
709
  ### Bug Fixes
882
710
 
883
711
  * golang/cosmos upgrades ([d18e9d3](https://github.com/Agoric/agoric-sdk/commit/d18e9d31de456b2c44a08f36e01bd4b6c2c237dc))
884
712
  * make separate 'test:xs' target, remove XS from 'test' target ([b9c1a69](https://github.com/Agoric/agoric-sdk/commit/b9c1a6987093fc8e09e8aba7acd2a1618413bac8)), closes [#2647](https://github.com/Agoric/agoric-sdk/issues/2647)
885
713
 
886
-
887
-
888
-
889
-
890
714
  ## [0.24.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/cosmos@0.24.0...@agoric/cosmos@0.24.1) (2021-02-22)
891
715
 
892
716
  **Note:** Version bump only for package @agoric/cosmos