/// export interface FaucetPluginConfig { port: number; host: string; encryptedPrivateKey: string; tokenID: string; captchaSitekey: string; captchaSecretkey: string; applicationUrl: string; fee: string; amount: string; tokenPrefix: string; captchaSecret: string; logoURL?: string; } export interface State { publicKey?: Buffer; privateKey?: Buffer; address?: string; }