UNPKG

@ardier16/q-js-sdk

Version:

Typescript Library to interact with Q System Contracts

14 lines (13 loc) 831 B
import Web3 from 'web3'; import { ValidatorSlashingEscrow } from '../../../web3-contracts/ValidatorSlashingEscrow'; import { SystemSlashingEscrowInstance } from '../../SystemSlashingEscrowInstance'; /** * Validator Slashing Escrow instance to interact with Validator Slashing Escrow contract. * See [onchain documentation](@system-contracts-repo/@network/ValidatorSlashingEscrow/) for more details. * An instance of this class for a deployed network can be obtained via {@link ContractRegistryInstance.validatorSlashingEscrow} */ export declare class ValidatorSlashingEscrowInstance extends SystemSlashingEscrowInstance<ValidatorSlashingEscrow> { static readonly abi = "ValidatorSlashingEscrow.json"; static readonly registryKey = "governance.validators.slashingEscrow"; constructor(web3: Web3, address: string); }