/** * 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. */ import { NameServiceData } from './NameServiceData'; import { WalletProviderEnum } from './WalletProviderEnum'; /** * * @export * @interface JwtBlockchainAccount */ export interface JwtBlockchainAccount { /** * Valid blockchain wallet address, must be an alphanumeric string (underscores allowed for chains like Midnight) * @type {string} * @memberof JwtBlockchainAccount */ address: string; /** * Blockchain network name (e.g. EVM, SOL) * @type {string} * @memberof JwtBlockchainAccount */ chain: string; /** * * @type {string} * @memberof JwtBlockchainAccount */ id: string; /** * * @type {NameServiceData} * @memberof JwtBlockchainAccount */ nameService?: NameServiceData; /** * Name of the wallet provider * @type {string} * @memberof JwtBlockchainAccount */ walletName: string; /** * * @type {WalletProviderEnum} * @memberof JwtBlockchainAccount */ walletProvider: WalletProviderEnum; } export declare function JwtBlockchainAccountFromJSON(json: any): JwtBlockchainAccount; export declare function JwtBlockchainAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): JwtBlockchainAccount; export declare function JwtBlockchainAccountToJSON(value?: JwtBlockchainAccount | null): any;