UNPKG

evx-sdk

Version:

The Evx SDK is a developer toolkit designed to simplify interaction with the Evx decentralized liquidity protocol. It provides an abstraction layer over the smart contracts, allowing developers to easily build applications, integrate liquidity pools, fetc

14 lines (13 loc) 336 B
/** * @notice Output interface for the EIP-712 domain query * @dev Contains all the fields returned by the eip712Domain function */ export interface IEip712DomainQueryOutput { fields: string; name: string; version: string; chainId: bigint; verifyingContract: string; salt: string; extensions: bigint[]; }