-
Notifications
You must be signed in to change notification settings - Fork 3
feat(rpc): signet_* specific methods
#22
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
38c2133
signet methods
Evalir 9f336c7
chore: move stuff around for the new endpoints
Evalir 96b97ca
chore: add new methods
Evalir eb7ecb3
feat(rpc): nest signet on the main router
Evalir 14840e3
feat: SIgnetError, use it
Evalir 579206a
chore: move macros
Evalir 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
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
File renamed without changes.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| //! Signet RPC errors. | ||
|
|
||
| use reth::rpc::server_types::eth::EthApiError; | ||
|
|
||
| /// Errors that can occur when interacting with the `signet` namespace. | ||
| #[derive(Debug, thiserror::Error)] | ||
| pub enum SignetError { | ||
| /// The transaction cache URL was not provided. | ||
| #[error("transaction cache URL not provided")] | ||
| TxCacheUrlNotProvided, | ||
| /// An error coming from interacting with components | ||
| /// that could emit `EthApiError`s, such as the forwarder. | ||
| #[error(transparent)] | ||
| EthApiError(#[from] EthApiError), | ||
| } | ||
|
|
||
| impl SignetError { | ||
| /// Turn into a string by value, allows for `.map_err(SignetError::to_string)` | ||
| /// to be used. | ||
| pub fn into_string(self) -> String { | ||
| ToString::to_string(&self) | ||
| } | ||
| } |
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,73 @@ | ||
| //! Signet RPC methods and related code. | ||
| pub(crate) mod error; | ||
|
|
||
| use crate::util::await_jh_option; | ||
| use crate::{ctx::RpcCtx, Pnt}; | ||
| use ajj::HandlerCtx; | ||
| use error::SignetError; | ||
| use reth_node_api::FullNodeComponents; | ||
| use signet_bundle::SignetEthBundle; | ||
| use signet_zenith::SignedOrder; | ||
|
|
||
| /// Instantiate a `signet` API router. | ||
| pub fn signet<Host, Signet>() -> ajj::Router<RpcCtx<Host, Signet>> | ||
| where | ||
| Host: FullNodeComponents, | ||
| Signet: Pnt, | ||
| { | ||
| ajj::Router::new().route("sendBundle", send_bundle).route("sendOrder", send_order) | ||
| } | ||
|
|
||
| pub(super) async fn send_bundle<Host, Signet>( | ||
| hctx: HandlerCtx, | ||
| bundle: SignetEthBundle, | ||
| ctx: RpcCtx<Host, Signet>, | ||
| ) -> Result<(), String> | ||
| where | ||
| Host: FullNodeComponents, | ||
| Signet: Pnt, | ||
| { | ||
| let task = |hctx: HandlerCtx| async move { | ||
| let Some(forwarder) = ctx.signet().forwarder() else { | ||
| return Err(SignetError::TxCacheUrlNotProvided.into_string()); | ||
| }; | ||
|
|
||
| hctx.spawn(async move { | ||
| forwarder | ||
| .forward_bundle(bundle) | ||
| .await | ||
| .map_err(|e| SignetError::EthApiError(e).into_string()) | ||
| }); | ||
|
|
||
| Ok(()) | ||
| }; | ||
|
|
||
| await_jh_option!(hctx.spawn_blocking_with_ctx(task)) | ||
| } | ||
|
|
||
| pub(super) async fn send_order<Host, Signet>( | ||
| hctx: HandlerCtx, | ||
| order: SignedOrder, | ||
| ctx: RpcCtx<Host, Signet>, | ||
| ) -> Result<(), String> | ||
| where | ||
| Host: FullNodeComponents, | ||
| Signet: Pnt, | ||
| { | ||
| let task = |hctx: HandlerCtx| async move { | ||
| let Some(forwarder) = ctx.signet().forwarder() else { | ||
| return Err(SignetError::TxCacheUrlNotProvided.into_string()); | ||
| }; | ||
|
|
||
| hctx.spawn(async move { | ||
| forwarder | ||
| .forward_order(order) | ||
| .await | ||
| .map_err(|e| SignetError::EthApiError(e).into_string()) | ||
| }); | ||
|
|
||
| Ok(()) | ||
| }; | ||
|
|
||
| await_jh_option!(hctx.spawn_blocking_with_ctx(task)) | ||
| } | ||
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.