feat(svm): L-02 Missing SpeedUpV3Deposit and FillV3RelayWithUpdatedDe… #848
+5
−0
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.
Changes proposed in this PR:
We acknowledge this issue but will not implement speed-ups for the following reasons:
Speed-ups are not used often, especially with deposit expirations in place. Previously, they were used to update deposit parameters, but expirations now handle this effectively.
Supporting speed-ups on Solana is overly complex due to incompatible cryptographic schemes. Solana wallets (Ed25519) and Ethereum (ECDSA secp256k1) use different signature algorithms:
While ECDSA signatures from Ethereum wallets can be verified on Solana, Solana wallets cannot generate ECDSA signatures that can be verified on Ethereum.
Speed-ups require the depositor’s signature to be validated on both source and destination chains, which demands a shared signature scheme—something not feasible between Solana and Ethereum.
Given these limitations, we have decided to drop support for speed-ups on Solana.
Added a comment explaining the above.