Struct Signed

Source
pub struct Signed<T, Sig = PrimitiveSignature> { /* private fields */ }
Expand description

A transaction with a signature and hash seal.

Implementations§

Source§

impl<T, Sig> Signed<T, Sig>

Source

pub fn new_unchecked(tx: T, signature: Sig, hash: B256) -> Self

Instantiate from a transaction and signature. Does not verify the signature.

Source

pub const fn new_unhashed(tx: T, signature: Sig) -> Self

Instantiate from a transaction and signature. Does not verify the signature.

Source

pub const fn tx(&self) -> &T

Returns a reference to the transaction.

Source

pub fn tx_mut(&mut self) -> &mut T

Returns a mutable reference to the transaction.

Source

pub const fn signature(&self) -> &Sig

Returns a reference to the signature.

Source

pub fn strip_signature(self) -> T

Returns the transaction without signature.

Source

pub fn convert<U>(self) -> Signed<U, Sig>
where U: From<T>,

Converts the transaction type to the given alternative that is From<T>

Caution: This is only intended for converting transaction types that are structurally equivalent (produce the same hash).

Source

pub fn try_convert<U>(self) -> Result<Signed<U, Sig>, U::Error>
where U: TryFrom<T>,

Converts the transaction to the given alternative that is TryFrom<T>

Returns the transaction with the new transaction type if all conversions were successful.

Caution: This is only intended for converting transaction types that are structurally equivalent (produce the same hash).

Source

pub fn map<Tx>(self, f: impl FnOnce(T) -> Tx) -> Signed<Tx, Sig>

Applies the given closure to the inner transaction type.

Caution: This is only intended for converting transaction types that are structurally equivalent (produce the same hash).

Source

pub fn try_map<Tx, E>( self, f: impl FnOnce(T) -> Result<Tx, E>, ) -> Result<Signed<Tx, Sig>, E>

Applies the given fallible closure to the inner transactions.

Caution: This is only intended for converting transaction types that are structurally equivalent (produce the same hash).

Source§

impl<T: SignableTransaction<Sig>, Sig> Signed<T, Sig>

Source

pub fn signature_hash(&self) -> B256

Calculate the signing hash for the transaction.

Source§

impl<T> Signed<T>
where T: RlpEcdsaEncodableTx,

Source

pub fn hash(&self) -> &B256

Returns a reference to the transaction hash.

Source

pub fn into_parts(self) -> (T, Signature, B256)

Splits the transaction into parts.

Source

pub fn rlp_encoded_length(&self) -> usize

Get the length of the transaction when RLP encoded.

Source

pub fn rlp_encode(&self, out: &mut dyn BufMut)

RLP encode the signed transaction.

Source

pub fn eip2718_encoded_length(&self) -> usize

Get the length of the transaction when EIP-2718 encoded.

Source

pub fn eip2718_encode_with_type(&self, ty: u8, out: &mut dyn BufMut)

EIP-2718 encode the signed transaction with a specified type flag.

Source

pub fn eip2718_encode(&self, out: &mut dyn BufMut)

EIP-2718 encode the signed transaction.

Source

pub fn network_encoded_length(&self) -> usize

Get the length of the transaction when network encoded.

Source

pub fn network_encode_with_type(&self, ty: u8, out: &mut dyn BufMut)

Network encode the signed transaction with a specified type flag.

Source

pub fn network_encode(&self, out: &mut dyn BufMut)

Network encode the signed transaction.

Source§

impl<T> Signed<T>
where T: RlpEcdsaDecodableTx,

Source

pub fn rlp_decode(buf: &mut &[u8]) -> Result<Self>

RLP decode the signed transaction.

Source

pub fn eip2718_decode_with_type(buf: &mut &[u8], ty: u8) -> Eip2718Result<Self>

EIP-2718 decode the signed transaction with a specified type flag.

Source

pub fn eip2718_decode(buf: &mut &[u8]) -> Eip2718Result<Self>

EIP-2718 decode the signed transaction.

Source

pub fn network_decode_with_type(buf: &mut &[u8], ty: u8) -> Eip2718Result<Self>

Network decode the signed transaction with a specified type flag.

Source

pub fn network_decode(buf: &mut &[u8]) -> Eip2718Result<Self>

Network decode the signed transaction.

Source§

impl<T: SignableTransaction<PrimitiveSignature>> Signed<T, PrimitiveSignature>

Source

pub fn recover_signer(&self) -> Result<Address, SignatureError>

Available on crate feature k256 only.

Recover the signer of the transaction

Source

pub fn try_into_recovered(self) -> Result<Recovered<T>, SignatureError>

Available on crate feature k256 only.

Attempts to recover signer and constructs a crate::transaction::Recovered object.

Trait Implementations§

Source§

impl<'a, T: SignableTransaction<PrimitiveSignature> + Arbitrary<'a>> Arbitrary<'a> for Signed<T, PrimitiveSignature>

Available on crate features arbitrary and k256 only.
Source§

fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>

Generate an arbitrary value of Self from the given unstructured data. Read more
Source§

fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>

Generate an arbitrary value of Self from the entirety of the given unstructured data. Read more
Source§

fn size_hint(depth: usize) -> (usize, Option<usize>)

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

fn try_size_hint( depth: usize, ) -> Result<(usize, Option<usize>), MaxRecursionReached>

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
Source§

impl<T: Clone, Sig: Clone> Clone for Signed<T, Sig>

Source§

fn clone(&self) -> Self

Returns a copy 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<T: Debug, Sig: Debug> Debug for Signed<T, Sig>

Source§

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

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

impl<'de, T, Sig> Deserialize<'de> for Signed<T, Sig>

Available on crate feature serde only.
Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<Signed<EthereumTypedTransaction<TxEip4844Variant>>> for TxEnvelope

Source§

fn from(v: Signed<TypedTransaction>) -> Self

Converts to this type from the input type.
Source§

impl From<Signed<TxEip1559>> for PooledTransaction

Source§

fn from(v: Signed<TxEip1559>) -> Self

Converts to this type from the input type.
Source§

impl From<Signed<TxEip1559>> for TxEnvelope

Source§

fn from(v: Signed<TxEip1559>) -> Self

Converts to this type from the input type.
Source§

impl From<Signed<TxEip2930>> for PooledTransaction

Source§

fn from(v: Signed<TxEip2930>) -> Self

Converts to this type from the input type.
Source§

impl From<Signed<TxEip2930>> for TxEnvelope

Source§

fn from(v: Signed<TxEip2930>) -> Self

Converts to this type from the input type.
Source§

impl From<Signed<TxEip4844>> for Signed<TxEip4844Variant>

Source§

fn from(value: Signed<TxEip4844>) -> Self

Converts to this type from the input type.
Source§

impl From<Signed<TxEip4844>> for TxEnvelope

Source§

fn from(v: Signed<TxEip4844>) -> Self

Converts to this type from the input type.
Source§

impl From<Signed<TxEip4844Variant>> for TxEnvelope

Source§

fn from(v: Signed<TxEip4844Variant>) -> Self

Converts to this type from the input type.
Source§

impl From<Signed<TxEip4844WithSidecar>> for PooledTransaction

Source§

fn from(v: Signed<TxEip4844WithSidecar>) -> Self

Converts to this type from the input type.
Source§

impl From<Signed<TxEip4844WithSidecar>> for Signed<TxEip4844Variant>

Source§

fn from(value: Signed<TxEip4844WithSidecar>) -> Self

Converts to this type from the input type.
Source§

impl From<Signed<TxEip4844WithSidecar>> for TxEnvelope

Source§

fn from(v: Signed<TxEip4844WithSidecar>) -> Self

Converts to this type from the input type.
Source§

impl From<Signed<TxEip7702>> for PooledTransaction

Source§

fn from(v: Signed<TxEip7702>) -> Self

Converts to this type from the input type.
Source§

impl From<Signed<TxEip7702>> for TxEnvelope

Source§

fn from(v: Signed<TxEip7702>) -> Self

Converts to this type from the input type.
Source§

impl From<Signed<TxLegacy>> for PooledTransaction

Source§

fn from(v: Signed<TxLegacy>) -> Self

Converts to this type from the input type.
Source§

impl From<Signed<TxLegacy>> for TxEnvelope

Source§

fn from(v: Signed<TxLegacy>) -> Self

Converts to this type from the input type.
Source§

impl From<TxEnvelope> for Signed<TypedTransaction>

Source§

fn from(value: TxEnvelope) -> Self

Converts to this type from the input type.
Source§

impl<T: RlpEcdsaEncodableTx + PartialEq> PartialEq for Signed<T>

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T> Serialize for Signed<T>
where T: Clone + RlpEcdsaEncodableTx + Serialize,

Available on crate feature serde only.
Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl TryFrom<Signed<TxEip4844Variant>> for PooledTransaction

Source§

type Error = ValueError<Signed<TxEip4844Variant>>

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

fn try_from(value: Signed<TxEip4844Variant>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<T: RlpEcdsaEncodableTx + PartialEq> Eq for Signed<T>

Auto Trait Implementations§

§

impl<T, Sig = PrimitiveSignature> !Freeze for Signed<T, Sig>

§

impl<T, Sig> RefUnwindSafe for Signed<T, Sig>

§

impl<T, Sig> Send for Signed<T, Sig>
where T: Send, Sig: Send,

§

impl<T, Sig> Sync for Signed<T, Sig>
where T: Sync, Sig: Sync,

§

impl<T, Sig> Unpin for Signed<T, Sig>
where T: Unpin, Sig: Unpin,

§

impl<T, Sig> UnwindSafe for Signed<T, Sig>
where T: UnwindSafe, Sig: UnwindSafe,

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, dst: *mut u8)

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

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Layout§

Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.