create-web3-dapp-dev
Version:
<p align="center"> <br /> <a href="https://createweb3dapp.alchemy.com"> <img src=".github/images/cw3d-logo.png" width="200" alt=""/></a> <br /> </p>
17 lines (15 loc) • 339 B
text/typescript
import { APIKeys } from "./ApiKeys";
export interface DappInfo {
chain: string;
isTemplate: boolean;
template: string;
isEVM: boolean;
isTypescript: boolean;
testnet: string;
useBackend: boolean;
backendProvider?: string;
hasSmartContract: boolean;
modules: string[] | null;
apiKeys: APIKeys;
storeAnonymisedData?: boolean;
}