@q-dev/q-js-sdk
Version:
Typescript Library to interact with Q System Contracts
14 lines (13 loc) • 877 B
TypeScript
import { SignerOrProvider } from '../../../types';
import { RootNodeSlashingEscrow } from '../../../ethers-contracts/RootNodeSlashingEscrow';
import { SystemSlashingEscrowInstance } from '../../SystemSlashingEscrowInstance';
/**
* Root nodes Slashing Escrow instance to interact with Root nodes Slashing Escrow contract.
* See [onchain documentation](@system-contracts-repo/@network/RootNodeSlashingEscrow/) for more details.
* An instance of this class for a deployed network can be obtained via {@link ContractRegistryInstance.rootNodeSlashingEscrow}
*/
export declare class RootNodeSlashingEscrowInstance extends SystemSlashingEscrowInstance<RootNodeSlashingEscrow> {
static readonly abi = "RootNodeSlashingEscrow.json";
static readonly registryKey = "governance.rootNodes.slashingEscrow";
constructor(signerOrProvider: SignerOrProvider, address: string);
}