UNPKG

@ardier16/q-js-sdk

Version:

Typescript Library to interact with Q System Contracts

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