feat: add svm crate#21
Open
bmuddha wants to merge 1 commit into
Open
Conversation
This was referenced May 28, 2026
Collaborator
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
This was referenced May 28, 2026
6908a8c to
bf5041b
Compare
56ba2c5 to
293b261
Compare
a03f0fd to
d2ebd2c
Compare
fea9f0b to
a7dda81
Compare
81aff13 to
b426266
Compare
This was referenced Jun 23, 2026
5571cd0 to
f64d381
Compare
24b7753 to
d8ece3d
Compare
e7f8d8a to
3207425
Compare
809ec9f to
72848fc
Compare
fef8a88 to
cd4ec1f
Compare
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.

What changed
Added the
solana-svmcrate, an engine-shaped fork of Agave's crate patched inworkspace-wide via
[patch.crates-io].Why
The engine needs a transaction loader/executor that is caller-owned at the
transaction boundary, so persistence and commit policy live above it rather than
inside a validator bank.
Closes #8.
Impact
transaction_processing_callback,executes via
solana-program-runtime, and returns the mutated account set.native-loader /
PROGRAM_OWNERSownership before execution.intentionally out of scope.
Reviewer notes
Rent-state and lamport-balance checks still run around execution, but this runtime
owns no validator state. See
solana/README.md(Runtime Scope).Follow-up
processorschedules transactions through this SVM upstack.