pub struct EndUserEvmSmartAccount {
pub address: EndUserEvmSmartAccountAddress,
pub created_at: DateTime<Utc>,
pub owner_addresses: Vec<EndUserEvmSmartAccountOwnerAddressesItem>,
}Expand description
Information about an EVM smart account associated with an end user.
JSON schema
{
"description": "Information about an EVM smart account associated with an end user.",
"type": "object",
"required": [
"address",
"createdAt",
"ownerAddresses"
],
"properties": {
"address": {
"description": "The address of the EVM smart account.",
"examples": [
"0x742d35Cc6634C0532925a3b844Bc454e4438f44e"
],
"type": "string",
"pattern": "^0x[0-9a-fA-F]{40}$"
},
"createdAt": {
"description": "The date and time when the account was created, in ISO 8601 format.",
"examples": [
"2025-01-15T10:30:00Z"
],
"type": "string",
"format": "date-time"
},
"ownerAddresses": {
"description": "The addresses of the EVM EOA accounts that own this smart account. Smart accounts can have multiple owners, such as when spend permissions are enabled.",
"examples": [
[
"0x1234567890abcdef1234567890abcdef12345678",
"0xabcdefabcdefabcdefabcdefabcdefabcdefabcd"
]
],
"type": "array",
"items": {
"description": "The address of an EVM EOA account that owns this smart account.",
"examples": [
"0x1234567890abcdef1234567890abcdef12345678"
],
"type": "string",
"pattern": "^0x[0-9a-fA-F]{40}$"
}
}
}
}Fields§
§address: EndUserEvmSmartAccountAddressThe address of the EVM smart account.
created_at: DateTime<Utc>The date and time when the account was created, in ISO 8601 format.
owner_addresses: Vec<EndUserEvmSmartAccountOwnerAddressesItem>The addresses of the EVM EOA accounts that own this smart account. Smart accounts can have multiple owners, such as when spend permissions are enabled.
Implementations§
Source§impl EndUserEvmSmartAccount
impl EndUserEvmSmartAccount
pub fn builder() -> EndUserEvmSmartAccount
Trait Implementations§
Source§impl Clone for EndUserEvmSmartAccount
impl Clone for EndUserEvmSmartAccount
Source§fn clone(&self) -> EndUserEvmSmartAccount
fn clone(&self) -> EndUserEvmSmartAccount
Returns a duplicate of the value. Read more
1.0.0 · 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 EndUserEvmSmartAccount
impl Debug for EndUserEvmSmartAccount
Source§impl<'de> Deserialize<'de> for EndUserEvmSmartAccount
impl<'de> Deserialize<'de> for EndUserEvmSmartAccount
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<&EndUserEvmSmartAccount> for EndUserEvmSmartAccount
impl From<&EndUserEvmSmartAccount> for EndUserEvmSmartAccount
Source§fn from(value: &EndUserEvmSmartAccount) -> Self
fn from(value: &EndUserEvmSmartAccount) -> Self
Converts to this type from the input type.
Source§impl From<EndUserEvmSmartAccount> for EndUserEvmSmartAccount
impl From<EndUserEvmSmartAccount> for EndUserEvmSmartAccount
Source§fn from(value: EndUserEvmSmartAccount) -> Self
fn from(value: EndUserEvmSmartAccount) -> Self
Converts to this type from the input type.
Source§impl Serialize for EndUserEvmSmartAccount
impl Serialize for EndUserEvmSmartAccount
Source§impl TryFrom<EndUserEvmSmartAccount> for EndUserEvmSmartAccount
impl TryFrom<EndUserEvmSmartAccount> for EndUserEvmSmartAccount
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: EndUserEvmSmartAccount) -> Result<Self, ConversionError>
fn try_from(value: EndUserEvmSmartAccount) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for EndUserEvmSmartAccount
impl RefUnwindSafe for EndUserEvmSmartAccount
impl Send for EndUserEvmSmartAccount
impl Sync for EndUserEvmSmartAccount
impl Unpin for EndUserEvmSmartAccount
impl UnwindSafe for EndUserEvmSmartAccount
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