-
Notifications
You must be signed in to change notification settings - Fork 2
Add retry policy manager for failed transactions #299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
b01c0c9
feat(txm): customizable retry policy for reverted transactions
GabrielMartinezRodriguez 508a67b
chore(txm): RetryPolicyManager implements a method to get the revert …
GabrielMartinezRodriguez cc060f6
chore(txm): use viem receipt
GabrielMartinezRodriguez 7d752bb
chore(txm): retry policy pr review
GabrielMartinezRodriguez 4888ec6
chore(txm): pr review
GabrielMartinezRodriguez 95598fd
chore(txm): added docstring and microptimization
GabrielMartinezRodriguez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,72 @@ | ||
| import type { TransactionReceipt } from "viem" | ||
| import type { Attempt, Transaction } from "./Transaction" | ||
| import type { TransactionManager } from "./TransactionManager" | ||
|
|
||
| export type RevertedTransactionReceipt = TransactionReceipt<bigint, number, "reverted", "eip1559"> | ||
|
|
||
| /** | ||
| * Implement this interface and provide it in the {@link TransactionManager} constructor to define your custom retry policy. | ||
| * The default implementation is {@link DefaultRetryPolicyManager}. | ||
| * The default implementation will only retry if the transaction runs out of gas. | ||
| **/ | ||
| export interface RetryPolicyManager { | ||
| shouldRetry( | ||
| transactionManager: TransactionManager, | ||
| transaction: Transaction, | ||
| attempt: Attempt, | ||
| receipt: RevertedTransactionReceipt, | ||
| ): Promise<boolean> | ||
| } | ||
|
|
||
| /** | ||
| * This is the default retry policy manager that will we used if no custom retry policy manager is provided. | ||
| * It will only retry if the transaction runs out of gas. | ||
| */ | ||
| export class DefaultRetryPolicyManager implements RetryPolicyManager { | ||
| public async shouldRetry( | ||
| transactionManager: TransactionManager, | ||
| _: Transaction, | ||
| attempt: Attempt, | ||
| receipt: RevertedTransactionReceipt, | ||
| ): Promise<boolean> { | ||
| return this.isOutOfGas(transactionManager, attempt, receipt) | ||
| } | ||
|
|
||
| /** | ||
| * Retrieves the reason for transaction reversion by utilizing the debug_traceTransaction RPC method. | ||
| * Returns undefined if the request fails or if the transaction has not been reverted. | ||
| * @param transactionManager - The transaction manager | ||
| * @param attempt - The attempt | ||
| * @returns The revert reason or undefined if it cannot be retrieved or the rpc does not allow debug | ||
| */ | ||
| protected async getRevertReason( | ||
| transactionManager: TransactionManager, | ||
| attempt: Attempt, | ||
| ): Promise<string | undefined> { | ||
| const traceResult = transactionManager.rpcAllowDebug | ||
| ? await transactionManager.viemClient.safeDebugTransaction(attempt.hash, { | ||
| tracer: "callTracer", | ||
| }) | ||
| : undefined | ||
|
|
||
| if (!traceResult || traceResult.isErr()) { | ||
| return undefined | ||
| } | ||
|
|
||
| return traceResult.value.revertReason | ||
| } | ||
|
|
||
| protected async isOutOfGas( | ||
| transactionManager: TransactionManager, | ||
| attempt: Attempt, | ||
| receipt: RevertedTransactionReceipt, | ||
| ): Promise<boolean> { | ||
| const revertReason = await this.getRevertReason(transactionManager, attempt) | ||
|
norswap marked this conversation as resolved.
|
||
|
|
||
| if (!revertReason) { | ||
| return receipt.gasUsed === attempt.gas | ||
| } | ||
|
|
||
| return revertReason === "Out of Gas" | ||
| } | ||
| } | ||
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
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
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add docstring that says this retries if running out of gas.