mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 02:49:55 +00:00
fix: redirect issues in documentation links (#14032)
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
//! Additional `eth_` RPC API for bundles.
|
||||
//!
|
||||
//! See also <https://docs.flashbots.net/flashbots-auction/searchers/advanced/rpc-endpoint>
|
||||
//! See also <https://docs.flashbots.net/flashbots-auction/advanced/rpc-endpoint>
|
||||
|
||||
use alloy_primitives::{Bytes, B256};
|
||||
use alloy_rpc_types_mev::{
|
||||
@ -24,7 +24,7 @@ pub trait EthCallBundleApi {
|
||||
|
||||
/// The __full__ Eth bundle rpc interface.
|
||||
///
|
||||
/// See also <https://docs.flashbots.net/flashbots-auction/searchers/advanced/rpc-endpoint>
|
||||
/// See also <https://docs.flashbots.net/flashbots-auction/advanced/rpc-endpoint>
|
||||
#[cfg_attr(not(feature = "client"), rpc(server, namespace = "eth"))]
|
||||
#[cfg_attr(feature = "client", rpc(server, client, namespace = "eth"))]
|
||||
pub trait EthBundleApi {
|
||||
@ -41,7 +41,7 @@ pub trait EthBundleApi {
|
||||
request: EthCallBundle,
|
||||
) -> jsonrpsee::core::RpcResult<EthCallBundleResponse>;
|
||||
|
||||
/// `eth_cancelBundle` is used to prevent a submitted bundle from being included on-chain. See [bundle cancellations](https://docs.flashbots.net/flashbots-auction/searchers/advanced/bundle-cancellations) for more information.
|
||||
/// `eth_cancelBundle` is used to prevent a submitted bundle from being included on-chain. See [bundle cancellations](https://docs.flashbots.net/flashbots-auction/advanced/bundle-cancellations) for more information.
|
||||
#[method(name = "cancelBundle")]
|
||||
async fn cancel_bundle(&self, request: CancelBundleRequest) -> jsonrpsee::core::RpcResult<()>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user