alloy_consensus

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 const 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 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 const fn hash(&self) -> &B256

Returns a reference to the transaction hash.

Source

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

Splits the transaction into parts.

Source

pub fn strip_signature(self) -> T

Returns the transaction without signature.

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: RlpEcdsaTx,

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

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

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) -> Signed<T, Sig>

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>
where T: Deserialize<'de>, Sig: Deserialize<'de>,

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<TxEip1559>> for TxEnvelope

Source§

fn from(v: Signed<TxEip1559>) -> 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 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 TxEnvelope

Source§

fn from(v: Signed<TxEip7702>) -> 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<T: PartialEq, Sig: PartialEq> PartialEq for Signed<T, Sig>

Source§

fn eq(&self, other: &Signed<T, Sig>) -> 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, Sig> Serialize for Signed<T, Sig>
where T: Serialize, Sig: Serialize,

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<T: Copy, Sig: Copy> Copy for Signed<T, Sig>

Source§

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

Source§

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

Auto Trait Implementations§

§

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

§

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 T)

🔬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, 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> 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> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,