UNPKG

@ardier16/q-js-sdk

Version:

Typescript Library to interact with Q System Contracts

14 lines (13 loc) 826 B
import { EPQFIMembershipVoting } from '../../../web3-contracts/EPQFI_MembershipVoting'; import Web3 from 'web3'; import { ExpertsMembershipVotingInstance } from './ExpertsMembershipVotingInstance'; /** * EPQFI membership voting instance to interact with EPQFI membership voting contract. * See [onchain documentation](@system-contracts-repo/@network/EPQFI_MembershipVoting/) for more details. * An instance of this class for a deployed network can be obtained via {@link ContractRegistryInstance.epqfiMembershipVoting} */ export declare class EPQFIMembershipVotingInstance extends ExpertsMembershipVotingInstance<EPQFIMembershipVoting> { static readonly registryKey = "governance.experts.EPQFI.membershipVoting"; static readonly abi = "EPQFI_MembershipVoting.json"; constructor(web3: Web3, address: string); }