UNPKG

@ardier16/q-js-sdk

Version:

Typescript Library to interact with Q System Contracts

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