/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * EIP-7702 auth * @export * @interface SignMessageEip7702Auth */ export interface SignMessageEip7702Auth { /** * Address that signed the authorization * @type {string} * @memberof SignMessageEip7702Auth */ address: string; /** * Chain ID * @type {number} * @memberof SignMessageEip7702Auth */ chainId: number; /** * Nonce * @type {number} * @memberof SignMessageEip7702Auth */ nonce: number; } export declare function SignMessageEip7702AuthFromJSON(json: any): SignMessageEip7702Auth; export declare function SignMessageEip7702AuthFromJSONTyped(json: any, ignoreDiscriminator: boolean): SignMessageEip7702Auth; export declare function SignMessageEip7702AuthToJSON(value?: SignMessageEip7702Auth | null): any;