This release introduces shutdown-mode handling across the app. Branches that are shielded from regular redemptions will now be flagged as such on the home page. Finally, this releases adds the ability for users to override RPC and subgraph endpoints directly from the app.
Highlights
Shutdown Redemptions
When a branch enters shutdown mode, users can now perform shutdown redemptions directly from the app. A dedicated screen lets users pick troves and redeem the corresponding collateral.



Redemption Shielded Indicator
The home page now surfaces when borrowers on a branch are shielded from redemptions, i.e. when the stability pool exceeds the branch's total debt. Users can borrow on those branches at the lowest rate without worrying about being redeemed against. See the docs for more details on what the redemption shielded indicator means exactly.

Override RPC and Subgraph URLs
Users can now override the RPC and The Graph URLs from the app's footer. A new "Data Sources" panel lets users point the app at a custom node or subgraph, useful for debugging or running against a self-hosted infrastructure. The feature is gated behind an environment variable and disabled by default.

Unstake With Votes on Unregistered Initiatives
Users can now unstake LQTY even when they have voting power allocated to initiatives that have since been unregistered. Previously, allocations to disabled initiatives would block the unstake flow.
Configuration changes
New environment variables
NEXT_PUBLIC_SHOW_DATA_SOURCES
Let users override the RPC and subgraph URLs at runtime. When enabled, a "Data Sources" link is shown in the app's footer that opens a configuration dialog. Optional. Defaults to false.
# Example
NEXT_PUBLIC_SHOW_DATA_SOURCES=trueApp changes
- Handle initiative unregistration in subgraph by @cyril-dfi in #1195
- Users can override RPC and The Graph URLs by @cyril-dfi in #1196
- Shutdown redemptions by @cyril-dfi in #1197
- Add redemption shielded indicator on home page by @cyril-dfi in #1199
- Can unstake when voting for unregistered initiative by @cyril-dfi in #1201
Full Changelog: https://github.com/liquity/bold/compare/@liquity2/app-v1.10.0...@liquity2/app-v1.11.0