@vechain/vebetterdao-contracts
Version:
Open-source repository that houses the smart contracts powering the decentralized VeBetterDAO on the VeChain Thor blockchain.
14 lines (13 loc) • 513 B
TypeScript
import { Clock, Levels, MintingLogic, Settings, Token } from "../../../typechain-types";
interface DeployStargateNFTLibrariesArgs {
logOutput?: boolean;
}
export type StargateLibraries = {
StargateNFTClockLib: Clock;
StargateNFTLevelsLib: Levels;
StargateNFTSettingsLib: Settings;
StargateNFTMintingLib: MintingLogic;
StargateNFTTokenLib: Token;
};
export declare function deployStargateNFTLibraries({ logOutput, }?: DeployStargateNFTLibrariesArgs): Promise<StargateLibraries>;
export {};