UNPKG

@circle-fin/circle-sdk

Version:
40 lines (38 loc) 883 B
/* tslint:disable */ /* eslint-disable */ /** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface PresignDomain */ export interface PresignDomain { /** * User readable name of signing domain * @type {string} * @memberof PresignDomain */ name: string; /** * The address of the contract that will verify the signature * @type {string} * @memberof PresignDomain */ verifyingContract: string; /** * The current major version of the signing domain. Signatures from different versions are not compatible * @type {string} * @memberof PresignDomain */ version: string; /** * chain id from https://chainid.network/ * @type {number} * @memberof PresignDomain */ chainId: number; }