UNPKG

@vechain/vebetterdao-contracts

Version:

Open-source repository that houses the smart contracts powering the decentralized VeBetterDAO on the VeChain Thor blockchain.

15 lines (14 loc) 641 B
export * from "./type"; export declare const AppEnv: { readonly LOCAL: "local"; readonly E2E: "e2e"; readonly TESTNET_STAGING: "testnet-staging"; readonly TESTNET: "testnet"; readonly MAINNET: "mainnet"; }; export declare const EnvConfigValues: ("local" | "e2e" | "testnet-staging" | "testnet" | "mainnet")[]; export type EnvConfig = (typeof EnvConfigValues)[number]; export declare function getContractsConfig(env: EnvConfig): import("./type").ContractsConfig; export declare function shouldEndorseXApps(): boolean; export declare function shouldNotUpgradeContracts(): boolean; export declare function isE2E(): boolean;