@q-dev/q-js-sdk
Version:
Typescript Library to interact with Q System Contracts
14 lines (13 loc) • 883 B
TypeScript
import { SignerOrProvider } from '../../../types';
import { ValidatorSlashingEscrow } from '../../../ethers-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(signerOrProvider: SignerOrProvider, address: string);
}