✨ Implicit execute lifetimes #203
Merged
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.
Problem
Explicit lifetimes are required to deal with extra accounts but we don't want to expose lifetimes to people who are not 100% experienced with Rust.
Solution
Add implicit lifetimes.
Transform
fn execute(ctx: Context<Components>, ...)
tofn execute<'a, 'b, 'c, 'info>(ctx: Context<'a, 'b, 'c, 'info, Components<'info>>, ...)
Greptile Overview
Updated On: 2025-09-24 17:32:59 UTC
Summary
This PR implements implicit lifetimes for BOLT system execute functions, automatically transforming
fn execute(ctx: Context<Components>, ...)
tofn execute<'a, 'b, 'c, 'info>(ctx: Context<'a, 'b, 'c, 'info, Components<'info>>, ...)
at compile time.inject_lifetimes_and_context
function that automatically injects the required lifetimes ('a
,'b
,'c
,'info
) to execute functionsContext<Components>
type to fully qualifiedContext<'a, 'b, 'c, 'info, Components<'info>>
typeThe transformation is handled intelligently by checking for existing lifetimes before adding new ones and properly handling both empty and populated generic argument lists. This significantly improves developer experience by hiding Rust lifetime complexity from users who don't need to deal with extra accounts.
Confidence Score: 4/5
Important Files Changed
File Analysis
Sequence Diagram