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) 515 B
import { BytesLike } from "ethers"; import { SignerWithAddress } from "@nomicfoundation/hardhat-ethers/signers"; import { VeBetterPassport } from "../../typechain-types"; interface SignalingFixture { veBetterPassport: VeBetterPassport; owner: SignerWithAddress; otherAccounts: SignerWithAddress[]; x2EarnApps: any; appId: BytesLike; appAdmin: SignerWithAddress; regularSignaler: SignerWithAddress; } export declare function setupSignalingFixture(): Promise<SignalingFixture>; export {};