pub struct TxEip2930 {
pub chain_id: ChainId,
pub nonce: u64,
pub gas_price: u128,
pub gas_limit: u64,
pub to: TxKind,
pub value: U256,
pub access_list: AccessList,
pub input: Bytes,
}
Expand description
Transaction with an AccessList
(EIP-2930).
Fields§
§chain_id: ChainId
Added as EIP-pub 155: Simple replay attack protection
nonce: u64
A scalar value equal to the number of transactions sent by the sender; formally Tn.
gas_price: u128
A scalar value equal to the number of Wei to be paid per unit of gas for all computation costs incurred as a result of the execution of this transaction; formally Tp.
As ethereum circulation is around 120mil eth as of 2022 that is around 120000000000000000000000000 wei we are safe to use u128 as its max number is: 340282366920938463463374607431768211455
gas_limit: u64
A scalar value equal to the maximum amount of gas that should be used in executing this transaction. This is paid up-front, before any computation is done and may not be increased later; formally Tg.
to: TxKind
The 160-bit address of the message call’s recipient or, for a contract creation transaction, ∅, used here to denote the only member of B0 ; formally Tt.
value: U256
A scalar value equal to the number of Wei to be transferred to the message call’s recipient or, in the case of contract creation, as an endowment to the newly created account; formally Tv.
access_list: AccessList
The accessList specifies a list of addresses and storage keys;
these addresses and storage keys are added into the accessed_addresses
and accessed_storage_keys
global sets (introduced in EIP-2929).
A gas cost is charged, though at a discount relative to the cost of
accessing outside the list.
input: Bytes
Input has two uses depending if transaction is Create or Call (if to
field is None or
Some). pub init: An unlimited size byte array specifying the
EVM-code for the account initialisation procedure CREATE,
data: An unlimited size byte array specifying the
input data of the message call, formally Td.
Implementations§
source§impl TxEip2930
impl TxEip2930
sourcepub fn size(&self) -> usize
pub fn size(&self) -> usize
Calculates a heuristic for the in-memory size of the TxEip2930 transaction.
sourcepub fn decode_fields(buf: &mut &[u8]) -> Result<Self>
pub fn decode_fields(buf: &mut &[u8]) -> Result<Self>
Decodes the inner TxEip2930 fields from RLP bytes.
NOTE: This assumes a RLP header has already been decoded, and just decodes the following RLP fields in the following order:
chain_id
nonce
gas_price
gas_limit
to
value
data
(input
)access_list
sourcepub fn encoded_len_with_signature<S>(
&self,
signature: &S,
with_header: bool,
) -> usizewhere
S: EncodableSignature,
pub fn encoded_len_with_signature<S>(
&self,
signature: &S,
with_header: bool,
) -> usizewhere
S: EncodableSignature,
Returns what the encoded length should be, if the transaction were RLP encoded with the
given signature, depending on the value of with_header
.
If with_header
is true
, the payload length will include the RLP header length.
If with_header
is false
, the payload length will not include the RLP header length.
sourcepub fn encode_with_signature_fields<S>(
&self,
signature: &S,
out: &mut dyn BufMut,
)where
S: EncodableSignature,
pub fn encode_with_signature_fields<S>(
&self,
signature: &S,
out: &mut dyn BufMut,
)where
S: EncodableSignature,
Encodes the transaction from RLP bytes, including the signature. This does not encode a tx type byte or string header.
This does encode a list header and include a signature.
Trait Implementations§
source§impl<'arbitrary> Arbitrary<'arbitrary> for TxEip2930
impl<'arbitrary> Arbitrary<'arbitrary> for TxEip2930
source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Self
from the given unstructured data. Read moresource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Self
from the entirety of the given
unstructured data. Read moresource§impl<'de> Deserialize<'de> for TxEip2930
impl<'de> Deserialize<'de> for TxEip2930
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl<'de> DeserializeAs<'de, TxEip2930> for TxEip2930<'de>
Available on crate features serde
and serde-bincode-compat
only.
impl<'de> DeserializeAs<'de, TxEip2930> for TxEip2930<'de>
serde
and serde-bincode-compat
only.source§fn deserialize_as<D>(deserializer: D) -> Result<TxEip2930, D::Error>where
D: Deserializer<'de>,
fn deserialize_as<D>(deserializer: D) -> Result<TxEip2930, D::Error>where
D: Deserializer<'de>,
source§impl<'a> From<&'a TxEip2930> for TxEip2930<'a>
Available on crate features serde
and serde-bincode-compat
only.
impl<'a> From<&'a TxEip2930> for TxEip2930<'a>
serde
and serde-bincode-compat
only.source§impl<'a> From<TxEip2930<'a>> for TxEip2930
Available on crate features serde
and serde-bincode-compat
only.
impl<'a> From<TxEip2930<'a>> for TxEip2930
serde
and serde-bincode-compat
only.source§impl From<TxEip2930> for TypedTransaction
impl From<TxEip2930> for TypedTransaction
source§impl SerializeAs<TxEip2930> for TxEip2930<'_>
Available on crate features serde
and serde-bincode-compat
only.
impl SerializeAs<TxEip2930> for TxEip2930<'_>
serde
and serde-bincode-compat
only.source§fn serialize_as<S>(source: &TxEip2930, serializer: S) -> Result<S::Ok, S::Error>where
S: Serializer,
fn serialize_as<S>(source: &TxEip2930, serializer: S) -> Result<S::Ok, S::Error>where
S: Serializer,
source§impl SignableTransaction<Signature> for TxEip2930
impl SignableTransaction<Signature> for TxEip2930
source§fn set_chain_id(&mut self, chain_id: ChainId)
fn set_chain_id(&mut self, chain_id: ChainId)
chain_id
. Read moresource§fn encode_for_signing(&self, out: &mut dyn BufMut)
fn encode_for_signing(&self, out: &mut dyn BufMut)
source§fn payload_len_for_signature(&self) -> usize
fn payload_len_for_signature(&self) -> usize
source§fn into_signed(self, signature: Signature) -> Signed<Self>
fn into_signed(self, signature: Signature) -> Signed<Self>
source§fn use_eip155(&self) -> bool
fn use_eip155(&self) -> bool
source§fn set_chain_id_checked(&mut self, chain_id: ChainId) -> bool
fn set_chain_id_checked(&mut self, chain_id: ChainId) -> bool
chain_id
if it is not already set. Checks that the provided chain_id
matches the
existing chain_id
if it is already set, returning false
if they do not match.source§fn encoded_for_signing(&self) -> Vec<u8> ⓘ
fn encoded_for_signing(&self) -> Vec<u8> ⓘ
signature_hash
. Read moresource§fn signature_hash(&self) -> B256
fn signature_hash(&self) -> B256
source§impl Transaction for TxEip2930
impl Transaction for TxEip2930
source§fn max_fee_per_gas(&self) -> u128
fn max_fee_per_gas(&self) -> u128
source§fn max_priority_fee_per_gas(&self) -> Option<u128>
fn max_priority_fee_per_gas(&self) -> Option<u128>
source§fn max_fee_per_blob_gas(&self) -> Option<u128>
fn max_fee_per_blob_gas(&self) -> Option<u128>
source§fn priority_fee_or_price(&self) -> u128
fn priority_fee_or_price(&self) -> u128
source§fn access_list(&self) -> Option<&AccessList>
fn access_list(&self) -> Option<&AccessList>
access_list
for the particular transaction type. Returns None
for
older transaction types.source§fn blob_versioned_hashes(&self) -> Option<&[B256]>
fn blob_versioned_hashes(&self) -> Option<&[B256]>
None
.SignedAuthorization
list of the transaction. Read moreimpl Eq for TxEip2930
impl StructuralPartialEq for TxEip2930
Auto Trait Implementations§
impl !Freeze for TxEip2930
impl RefUnwindSafe for TxEip2930
impl Send for TxEip2930
impl Sync for TxEip2930
impl Unpin for TxEip2930
impl UnwindSafe for TxEip2930
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)