-
Notifications
You must be signed in to change notification settings - Fork 20
Description
Summary:
Grove storage platform has a critical infrastructure bug where mutable resources get permanently stuck in "dirty" status and never reach "done" status, preventing storage.updateJson() from working on both testnet and mainnet.
Impact:
All mutable registry updates timeout indefinitely
Affects both testnet and mainnet environments
Forces developers to use wasteful immutable workarounds
Evidence:
Mutable resources show "status": "dirty", "progress": 0 permanently
Immutable resources work correctly with "status": "done", "progress": 100"
The @lens-chain/storage-client SDK's updateJson() method waits for "done" status before allowing updates, causing timeouts
Expected Behavior:
Mutable resources should propagate to "done" status within reasonable time, allowing storage.updateJson() to perform in-place updates.