Source code for erc7730.model.resolved.context

from pydantic import Field
from pydantic_string_url import HttpUrl

from erc7730.model.abi import ABI
from erc7730.model.base import Model
from erc7730.model.context import EIP712Schema
from erc7730.model.types import Address, Id

# ruff: noqa: N815 - camel case field names are tolerated to match schema


[docs] class ResolvedDomain(Model): """ EIP 712 Domain Binding constraint. Each value of the domain constraint MUST match the corresponding eip 712 message domain value. """ name: str | None = Field(default=None, title="Name", description="The EIP-712 domain name.") version: str | None = Field(default=None, title="Version", description="The EIP-712 version.") chainId: int | None = Field(default=None, title="Chain ID", description="The EIP-155 chain id.") verifyingContract: Address | None = Field( default=None, title="Verifying Contract", description="The EIP-712 verifying contract address." )
[docs] class ResolvedDeployment(Model): """ A deployment describing where the contract is deployed. The target contract (Tx to or factory) MUST match one of those deployments. """ chainId: int = Field(title="Chain ID", description="The deployment EIP-155 chain id.") address: Address = Field(title="Contract Address", description="The deployment contract address.")
[docs] class ResolvedFactory(Model): """ A factory constraint is used to check whether the target contract is deployed by a specified factory. """ deployments: list[ResolvedDeployment] = Field( title="Deployments", description="An array of deployments describing where the contract is deployed. The target contract (Tx to or" "factory) MUST match one of those deployments.", ) deployEvent: str = Field( title="Deploy Event signature", description="The event signature that the factory emits when deploying a new contract.", )
[docs] class ResolvedBindingContext(Model): deployments: list[ResolvedDeployment] = Field( title="Deployments", description="An array of deployments describing where the contract is deployed. The target contract (Tx to or" "factory) MUST match one of those deployments.", min_length=1, )
[docs] class ResolvedContract(ResolvedBindingContext): """ Contract Binding Context. The contract binding context is a set constraints that are used to bind the ERC7730 file to a specific smart contract. """ abi: list[ABI] = Field( title="ABI", description="The ABI of the target contract. This must an array of ABI objects.", ) addressMatcher: HttpUrl | None = Field( default=None, title="Address Matcher", description="An URL of a contract address matcher that should be used to match the contract address.", ) factory: ResolvedFactory | None = Field( default=None, title="Factory Constraint", description="A factory constraint is used to check whether the target contract is deployed by a specified" "factory.", )
[docs] class ResolvedEIP712(ResolvedBindingContext): """ EIP 712 Binding. The EIP-712 binding context is a set of constraints that must be verified by the message being signed. """ domain: ResolvedDomain | None = Field( default=None, title="EIP 712 Domain Binding constraint", description="Each value of the domain constraint MUST match the corresponding eip 712 message domain value.", ) domainSeparator: str | None = Field( default=None, title="Domain Separator constraint", description="The domain separator value that must be matched by the message. In hex string representation.", ) schemas: list[EIP712Schema] = Field(title="EIP-712 messages schemas", description="Schemas of all messages.")
[docs] class ResolvedContractContext(Model): """ Contract Binding Context. The contract binding context is a set constraints that are used to bind the ERC7730 file to a specific smart contract. """ id: Id | None = Field( alias="$id", default=None, title="Id", description="An internal identifier that can be used either for clarity specifying what the element is or as a" "reference in device specific sections.", ) contract: ResolvedContract = Field( title="Contract Binding Context", description="The contract binding context is a set constraints that are used to bind the ERC7730 file to a" "specific smart contract.", )
[docs] class ResolvedEIP712Context(Model): """ EIP 712 Binding. The EIP-712 binding context is a set of constraints that must be verified by the message being signed. """ id: Id | None = Field( alias="$id", default=None, title="Id", description="An internal identifier that can be used either for clarity specifying what the element is or as a" "reference in device specific sections.", ) eip712: ResolvedEIP712 = Field( title="EIP 712 Binding", description="The EIP-712 binding context is a set of constraints that must be verified by the message being" "signed.", )