@vechain/vebetterdao-contracts
Version:
Open-source repository that houses the smart contracts powering the decentralized VeBetterDAO on the VeChain Thor blockchain.
11 lines (10 loc) • 428 B
TypeScript
import { ChallengeCoreLogic, ChallengeSettlementLogic } from "../../typechain-types";
interface DeployChallengesLibrariesArgs {
logOutput?: boolean;
}
export type ChallengesLibraries = {
ChallengeCoreLogic: ChallengeCoreLogic;
ChallengeSettlementLogic: ChallengeSettlementLogic;
};
export declare function challengesLibraries({ logOutput, }?: DeployChallengesLibrariesArgs): Promise<ChallengesLibraries>;
export {};