pub struct UnsignedTempoTransaction {Show 15 fields
pub aa_authorization_list: Vec<TempoAaAuthorization>,
pub access_list: Vec<UnsignedTempoTransactionAccessListItem>,
pub calls: Vec<TempoCall>,
pub chain_id: Option<Quantity>,
pub fee_payer_signature: Option<TempoFeePayerSignature>,
pub fee_token: Option<String>,
pub from: Option<String>,
pub gas_limit: Option<Quantity>,
pub max_fee_per_gas: Option<Quantity>,
pub max_priority_fee_per_gas: Option<Quantity>,
pub nonce: Option<Quantity>,
pub nonce_key: Option<Quantity>,
pub type_: UnsignedTempoTransactionType,
pub valid_after: Option<Quantity>,
pub valid_before: Option<Quantity>,
}Expand description
An unsigned Tempo transaction (type 118) with batched calls.
JSON schema
{
"title": "UnsignedTempoTransaction",
"description": "An unsigned Tempo transaction (type 118) with batched
calls.",
"type": "object",
"required": [
"calls",
"type"
],
"properties": {
"aa_authorization_list": {
"type": "array",
"items": {
"$ref": "#/components/schemas/TempoAAAuthorization"
},
"maxItems": 10
},
"access_list": {
"type": "array",
"items": {
"type": "object",
"required": [
"address",
"storage_keys"
],
"properties": {
"address": {
"type": "string"
},
"storage_keys": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Hex"
}
}
}
}
},
"calls": {
"type": "array",
"items": {
"$ref": "#/components/schemas/TempoCall"
},
"minItems": 1
},
"chain_id": {
"$ref": "#/components/schemas/Quantity"
},
"fee_payer_signature": {
"$ref": "#/components/schemas/TempoFeePayerSignature"
},
"fee_token": {
"type": "string"
},
"from": {
"type": "string"
},
"gas_limit": {
"$ref": "#/components/schemas/Quantity"
},
"max_fee_per_gas": {
"$ref": "#/components/schemas/Quantity"
},
"max_priority_fee_per_gas": {
"$ref": "#/components/schemas/Quantity"
},
"nonce": {
"$ref": "#/components/schemas/Quantity"
},
"nonce_key": {
"$ref": "#/components/schemas/Quantity"
},
"type": {
"type": "number",
"enum": [
118.0
]
},
"valid_after": {
"$ref": "#/components/schemas/Quantity"
},
"valid_before": {
"$ref": "#/components/schemas/Quantity"
}
},
"x-stainless-model": "wallets.unsigned_tempo_transaction"
}Fields§
§access_list: Vec<UnsignedTempoTransactionAccessListItem>§calls: Vec<TempoCall>§chain_id: Option<Quantity>§fee_payer_signature: Option<TempoFeePayerSignature>§fee_token: Option<String>§from: Option<String>§gas_limit: Option<Quantity>§max_fee_per_gas: Option<Quantity>§max_priority_fee_per_gas: Option<Quantity>§nonce: Option<Quantity>§nonce_key: Option<Quantity>§type_: UnsignedTempoTransactionType§valid_after: Option<Quantity>§valid_before: Option<Quantity>Trait Implementations§
Source§impl Clone for UnsignedTempoTransaction
impl Clone for UnsignedTempoTransaction
Source§fn clone(&self) -> UnsignedTempoTransaction
fn clone(&self) -> UnsignedTempoTransaction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UnsignedTempoTransaction
impl Debug for UnsignedTempoTransaction
Source§impl<'de> Deserialize<'de> for UnsignedTempoTransaction
impl<'de> Deserialize<'de> for UnsignedTempoTransaction
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&UnsignedTempoTransaction> for UnsignedTempoTransaction
impl From<&UnsignedTempoTransaction> for UnsignedTempoTransaction
Source§fn from(value: &UnsignedTempoTransaction) -> Self
fn from(value: &UnsignedTempoTransaction) -> Self
Converts to this type from the input type.
Source§impl From<UnsignedTempoTransaction> for UnsignedEthereumTransaction
impl From<UnsignedTempoTransaction> for UnsignedEthereumTransaction
Source§fn from(value: UnsignedTempoTransaction) -> Self
fn from(value: UnsignedTempoTransaction) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UnsignedTempoTransaction
impl RefUnwindSafe for UnsignedTempoTransaction
impl Send for UnsignedTempoTransaction
impl Sync for UnsignedTempoTransaction
impl Unpin for UnsignedTempoTransaction
impl UnsafeUnpin for UnsignedTempoTransaction
impl UnwindSafe for UnsignedTempoTransaction
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
Mutably borrows from an owned value. Read more