Skip to main content

EthereumParser

Struct EthereumParser 

Source
pub struct EthereumParser;
Expand description

Ethereum transaction parser.

This struct implements the Chain trait for parsing Ethereum transactions into the unified ParsedTx format.

§Supported Transaction Types

  • Legacy transactions (type 0 or no type prefix)
  • EIP-2930 transactions (type 1)
  • EIP-1559 transactions (type 2)

§Example

use txgate_chain::{Chain, EthereumParser};

let parser = EthereumParser::new();

// Check chain ID and curve
assert_eq!(parser.id(), "ethereum");
assert_eq!(parser.curve(), txgate_crypto::CurveType::Secp256k1);

// Check supported versions
assert!(parser.supports_version(0));
assert!(parser.supports_version(1));
assert!(parser.supports_version(2));
assert!(!parser.supports_version(3)); // EIP-4844 not yet supported

Implementations§

Source§

impl EthereumParser

Source

pub const fn new() -> Self

Create a new Ethereum parser instance.

§Example
use txgate_chain::EthereumParser;

let parser = EthereumParser::new();

Trait Implementations§

Source§

impl Chain for EthereumParser

Source§

fn id(&self) -> &'static str

Returns the chain identifier.

§Returns

Always returns "ethereum".

Source§

fn parse(&self, raw: &[u8]) -> Result<ParsedTx, ParseError>

Parse raw transaction bytes into a ParsedTx.

This method detects the transaction type and delegates to the appropriate parser:

  • Legacy transactions (no type prefix or type 0)
  • EIP-2930 transactions (type 1)
  • EIP-1559 transactions (type 2)
§Arguments
  • raw - The raw transaction bytes
§Returns
  • Ok(ParsedTx) - Successfully parsed transaction
  • Err(ParseError) - Parsing failed
§Errors

Returns a ParseError if:

  • The transaction type is not supported
  • The RLP encoding is invalid
  • Required fields are missing or malformed
Source§

fn curve(&self) -> CurveType

Returns the elliptic curve used by Ethereum.

§Returns

Always returns CurveType::Secp256k1.

Source§

fn supports_version(&self, version: u8) -> bool

Check if this parser supports a specific transaction version.

§Arguments
  • version - The transaction type byte
§Returns
  • true for versions 0, 1, 2 (Legacy, EIP-2930, EIP-1559)
  • false for other versions (e.g., EIP-4844 blob transactions)
Source§

impl Clone for EthereumParser

Source§

fn clone(&self) -> EthereumParser

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for EthereumParser

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for EthereumParser

Source§

fn default() -> EthereumParser

Returns the “default value” for a type. Read more
Source§

impl Copy for EthereumParser

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V