@liskhq/lisk-framework-faucet-plugin
Version:
A plugin for distributing testnet tokens from a newly developed blockchain application.
21 lines (20 loc) • 456 B
TypeScript
/// <reference types="node" />
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;
}