UNPKG

@ardier16/q-js-sdk

Version:

Typescript Library to interact with Q System Contracts

14 lines (13 loc) 825 B
import Web3 from 'web3'; import { RootNodeSlashingEscrow } from '../../../web3-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(web3: Web3, address: string); }