@liskhq/lisk-framework-faucet-plugin
Version:
A plugin for distributing testnet tokens from a newly developed blockchain application.
18 lines (17 loc) • 392 B
TypeScript
import * as React from 'react';
interface FaucetConfig {
amount: string;
applicationUrl: string;
tokenPrefix: string;
logoURL?: string;
captchaSitekey?: string;
faucetAddress?: string;
}
export declare const getConfig: () => Promise<FaucetConfig>;
declare global {
interface Window {
grecaptcha: any;
}
}
export declare const App: React.FC;
export {};