Skip to content

Commit f076ee4

Browse files
Merge pull request #335 from informalsystems/main
Merge main into release/v3.x-new to prepare v3.6.3 release
2 parents 3ab6b7a + e7b764f commit f076ee4

File tree

113 files changed

+6181
-3176
lines changed

Some content is hidden

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

113 files changed

+6181
-3176
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-Decoupling of LSM token info provider from the main Hydro contract.
2+
([\#317](https://github.com/informalsystems/hydro/pull/317))

.changelog/v3.6.3/summary.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Date: November 7th, 2025

CHANGELOG

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# CHANGELOG
22

3+
## v3.6.3
4+
5+
Date: November 7th, 2025
6+
7+
### FEATURES
8+
9+
-Decoupling of LSM token info provider from the main Hydro contract.
10+
([\#317](https://github.com/informalsystems/hydro/pull/317))
11+
312
## v3.6.2
413

514
Date: October 6th, 2025
@@ -188,10 +197,10 @@ Date: February 11th, 2025
188197

189198
- Allow users / aggregators to unvote without having to switch votes.
190199
([\#218](https://github.com/informalsystems/hydro/pull/218))
191-
- Introduced SnapshotMaps for tracking the historical voting power for each user as well as the round total voting power.
192-
([\#220](https://github.com/informalsystems/hydro/pull/220))
193200
- Introduced the compounder cap- a reserved portion of the maximum token lock limit that is allocated exclusively for known users from the previous round.
194201
([\#220](https://github.com/informalsystems/hydro/pull/220))
202+
- Introduced SnapshotMaps for tracking the historical voting power for each user as well as the round total voting power.
203+
([\#220](https://github.com/informalsystems/hydro/pull/220))
195204
- Added support for integrating Hydro as a voting module in DAO DAO governance smart contracts.
196205
([\#226](https://github.com/informalsystems/hydro/pull/226))
197206

@@ -288,10 +297,10 @@ Date: November 18th, 2024
288297

289298
### FEATURES
290299

291-
- Adjusts tributes to only be claimable if their proposal received a non-zero fund deployment.
292-
([\#164](https://github.com/informalsystems/hydro/pull/164))
293300
- Add a minimum liquidity request value to proposals.
294301
([\#164](https://github.com/informalsystems/hydro/pull/164))
302+
- Adjusts tributes to only be claimable if their proposal received a non-zero fund deployment.
303+
([\#164](https://github.com/informalsystems/hydro/pull/164))
295304
- Allow whitelist admins to register performed liquidity deployments in the Hydro contract.
296305
([\#164](https://github.com/informalsystems/hydro/pull/164))
297306
- Allow bids to set a custom duration they would like to receive liquidity for.

Cargo.lock

Lines changed: 78 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ members = [
66
"contracts/liquid-collateral",
77
"contracts/token-info-providers/st-token-info-provider",
88
"contracts/token-info-providers/d-token-info-provider",
9+
"contracts/token-info-providers/lsm-token-info-provider",
910
"contracts/marketplace",
1011
"contracts/gatekeeper",
1112
"contracts/inflow",
@@ -16,7 +17,7 @@ members = [
1617
resolver = "2"
1718

1819
[workspace.package]
19-
version = "3.6.2"
20+
version = "3.6.3"
2021
edition = "2021"
2122

2223
[profile.release]
@@ -42,6 +43,7 @@ cosmwasm-schema = "2.1.2"
4243
proptest = "1.0.0"
4344
cw-utils = "2.0.0"
4445
cosmos-sdk-proto = { version = "0.20.0", default-features = false }
46+
ibc-proto = { version = "0.46.0", default-features = false }
4547
prost = "0.12.6"
4648
prost-types = "0.12.6"
4749
cw-orch = "0.25.0"

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ schema:
4141
cd contracts/dao-voting-adapter && cargo run --bin dao_voting_adapter_schema
4242
cd contracts/token-info-providers/st-token-info-provider && cargo run --bin st_token_info_provider_schema
4343
cd contracts/token-info-providers/d-token-info-provider && cargo run --bin d_token_info_provider_schema
44+
cd contracts/token-info-providers/lsm-token-info-provider && cargo run --bin lsm_token_info_provider_schema
4445
cd contracts/gatekeeper && cargo run --bin gatekeeper_schema
4546
cd contracts/marketplace && cargo run --bin marketplace_schema
4647
cd contracts/inflow && cargo run --bin inflow_schema
@@ -50,6 +51,7 @@ schema:
5051
$(MAKE) ts-codegen-inner SCHEMA_LOCATION=./contracts/dao-voting-adapter/schema NAME=DAOVotingAdapterBase
5152
$(MAKE) ts-codegen-inner SCHEMA_LOCATION=./contracts/token-info-providers/st-token-info-provider/schema NAME=STTokenInfoProviderBase
5253
$(MAKE) ts-codegen-inner SCHEMA_LOCATION=./contracts/token-info-providers/d-token-info-provider/schema NAME=DTokenInfoProviderBase
54+
$(MAKE) ts-codegen-inner SCHEMA_LOCATION=./contracts/token-info-providers/lsm-token-info-provider/schema NAME=LSMTokenInfoProviderBase
5355
$(MAKE) ts-codegen-inner SCHEMA_LOCATION=./contracts/gatekeeper/schema NAME=GatekeeperBase
5456
$(MAKE) ts-codegen-inner SCHEMA_LOCATION=./contracts/marketplace/schema NAME=MarketplaceBase
5557
$(MAKE) ts-codegen-inner SCHEMA_LOCATION=./contracts/inflow/schema NAME=InflowBase

artifacts/checksums.txt

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
6e75739372bf9e3f188fbb707ce93a38619021f1e9dc7532f00def53b35fac20 d_token_info_provider.wasm
2-
90c08f794faf3f5a71b94c5c25050c1bbf91d3a82fdcc604847a1b09acb52042 dao_voting_adapter.wasm
3-
b0feadfd0db42e6536f71c17ad2ca76177b38f49f40f490a91d58c8d3a426f7c gatekeeper.wasm
4-
b01b986eefc8e55950700283fd472b3e4102dacf64f0efb58dd32cb550795bc3 hydro.wasm
5-
c343d3ffffced73851a17d0cc1de8e40bb282f369e21f34124466dc536598cf4 inflow.wasm
6-
98c6cd3ba16e17fcb6f8c872446e2dc9f5c9bd5b9084aa1d3a34a4583eb2a8d9 liquid_collateral.wasm
7-
96012e757b8965bb265e35c6e46ca14b6cb5bcb87d41fb23eb19c9a5eed67cd2 marketplace.wasm
8-
314de5209fa206082e37abcee59c06ec6136142b9a3b3871e0040dfafa57a06d st_token_info_provider.wasm
9-
f12229a1a10a023b3f6047f2a4fe4ed0255be0d5acedfbe477973b86ece33e46 tribute.wasm
1+
0ab3c3c30cb9694dea5433db835765ecaf2643cc3e099959c8a04ff0fa171b5a d_token_info_provider.wasm
2+
c4f7bca8be7697e30a6652dc68856c263d725f966288a3eb5bee0dd80ca90be3 dao_voting_adapter.wasm
3+
225a548fafdff6292ba0d05326be28fe326cef8dca5f4a7e6ecc11349a2501ae gatekeeper.wasm
4+
07d550065f138d7e5cc3f08cec19984cffb07a5427d5669dbed5ea80391fb33b hydro.wasm
5+
fde73ef829e0a351e7243b8d04ff59196b7253e3069d780a90792a404c215ac5 inflow.wasm
6+
f77130fc62b49941f834185209040984c5de7fd5542062a188f97cb53757abf8 liquid_collateral.wasm
7+
1aeea071c3e142ca13d7b0e8f7b84396b6791e83c0e1438ba76baab98fea7bd0 lsm_token_info_provider.wasm
8+
493da16481202f53fd3ae120739a9b9eadd5e441701722cb624e7a343bd3e513 marketplace.wasm
9+
28155b3e5287048bf58a8f40c4dbfdb8da9c1ee686d95bf0d2f03f8315f3cd8d st_token_info_provider.wasm
10+
f6916dd7ca5f39af452ec458c8317983e13d68a855316aeececec07a5a5c5975 tribute.wasm
9.89 KB
Binary file not shown.

artifacts/dao_voting_adapter.wasm

0 Bytes
Binary file not shown.

artifacts/gatekeeper.wasm

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)