feat: implement state compaction and pruning (#603)#624
Closed
ogazboiz wants to merge 1 commit intoJagadeeshftw:masterfrom
Closed
feat: implement state compaction and pruning (#603)#624ogazboiz wants to merge 1 commit intoJagadeeshftw:masterfrom
ogazboiz wants to merge 1 commit intoJagadeeshftw:masterfrom
Conversation
|
@ogazboiz is attempting to deploy a commit to the Jagadeesh B's projects Team on Vercel. A member of the Team first needs to authorize it. |
Owner
|
please resolve the conflicts @ogazboiz |
Owner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Closes #603
Resolves #557
Resolves #674
Implements auto-compaction and pruning of historical state for the
bounty_escrowandprogram_escrowsmart contracts. This reduces the blockchain storage footprint and bounds iteration over unbounded indexes to minimize gas costs.Implementation Details:
prune_bounties):Adminto prune an array ofbounty_ids.ReleasedorRefunded).Escrow,Metadata,PendingClaim,RefundApproval,ReleaseApproval) from persistent storage.EscrowIndexandDepositorIndex.BountyPrunedevent.Closes Implement Per-Program and Per-Escrow Fee Overrides #674
prune_program):Adminto prune a specificprogram_id.PROGRAM_DATA(single-program mode) andDataKey::Program(id)(multi-program mode).remaining_balance == 0.NextScheduleId,ReleaseHistory,Schedules,MultisigConfig, etc.).ProgramPrunedEvent.Operational Usage & Safeguards:
BountyCompletedorPayoutevents, determine when an escrow/program is sufficiently "old" (e.g., 90 days), and proactively call theprune_*admin functions.BountyPrunedandProgramPrunedevents immediately upon data deletion. Indexers and off-chain data warehouses should consume these events to maintain a complete historical ledger.Admincan prune and that no active funds are accidentally wiped. If an escrow/program is not in its terminal state with zero remaining balance, the transaction will panic with anInvalidStatecontract error.Verification
cargo test,cargo fmtcomplete.