Struct alloy_dyn_abi::eip712::TypedData

source ·
pub struct TypedData {
    pub domain: Eip712Domain,
    pub resolver: Resolver,
    pub primary_type: String,
    pub message: Value,
}
Available on crate feature eip712 only.
Expand description

Represents the EIP-712 typed data object.

Typed data is a JSON object containing type information, domain separator parameters and the message object which has the following schema:

{
    "type": "object",
    "properties": {
        "types": {
            "type": "object",
            "properties": {
                "EIP712Domain": { "type": "array" }
            },
            "additionalProperties": {
                "type": "array",
                "items": {
                    "type": "object",
                    "properties": {
                        "name": { "type": "string" },
                        "type": { "type": "string" }
                    },
                    "required": ["name", "type"]
                }
            },
            "required": ["EIP712Domain"]
        },
        "primaryType": { "type": "string" },
        "domain": { "type": "object" },
        "message": { "type": "object" }
    },
    "required": ["types", "primaryType", "domain", "message"]
}

Fields§

§domain: Eip712Domain

Signing domain metadata. The signing domain is the intended context for the signature (e.g. the dapp, protocol, etc. that it’s intended for). This data is used to construct the domain separator of the message.

§resolver: Resolver

The custom types used by this message.

§primary_type: String

The type of the message.

§message: Value

The message to be signed.

Implementations§

source§

impl TypedData

source

pub fn from_struct<S: SolStruct + Serialize>( s: &S, domain: Option<Eip712Domain>, ) -> Self

Instantiate TypedData from a SolStruct that implements serde::Serialize.

source

pub const fn domain(&self) -> &Eip712Domain

Returns the domain for this typed data.

source

pub fn coerce(&self) -> Result<DynSolValue>

Coerce the message to the type specified by primary_type, using the types map as a resolver.

source

pub fn type_hash(&self) -> Result<B256>

Calculate the Keccak-256 hash of encodeType for this value.

Fails if this type is not a struct.

source

pub fn hash_struct(&self) -> Result<B256>

Calculate the hashStruct for this value.

Fails if this type is not a struct.

source

pub fn encode_data(&self) -> Result<Vec<u8>>

Calculate the encodeData for this value.

Fails if this type is not a struct.

source

pub fn encode_type(&self) -> Result<String>

Calculate the encodeType for this value.

Fails if this type is not a struct.

source

pub fn eip712_signing_hash(&self) -> Result<B256>

Calculate the EIP-712 signing hash for this value.

This is the hash of the magic bytes 0x1901 concatenated with the domain separator and the hashStruct result.

Trait Implementations§

source§

impl Clone for TypedData

source§

fn clone(&self) -> TypedData

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 Debug for TypedData

source§

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

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

impl<'de> Deserialize<'de> for TypedData

source§

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

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

impl PartialEq for TypedData

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for TypedData

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 Eq for TypedData

source§

impl StructuralPartialEq for TypedData

Auto Trait Implementations§

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> 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> ToOwned for T
where T: Clone,

§

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

§

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

§

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