@kibisis/connect-kit
Version:
The UI kit to allow dApps to connect to the Kibisis wallets.
10 lines • 366 B
TypeScript
/**
* @property {boolean} debug - [optional] Whether to display debug messages. Defaults to "false".
* @property {string} genesisHash - The hash of the first block that is used to identity the chain. Encoded in base64.
*/
interface INewOptions {
debug?: boolean;
genesisHash: string;
}
export default INewOptions;
//# sourceMappingURL=INewOptions.d.ts.map