UNPKG

@ardier16/q-js-sdk

Version:

Typescript Library to interact with Q System Contracts

18 lines 1.04 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RootNodeSlashingEscrowInstance = void 0; const SystemSlashingEscrowInstance_1 = require("../../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} */ class RootNodeSlashingEscrowInstance extends SystemSlashingEscrowInstance_1.SystemSlashingEscrowInstance { constructor(web3, address) { super(web3, RootNodeSlashingEscrowInstance.abi, address); } } exports.RootNodeSlashingEscrowInstance = RootNodeSlashingEscrowInstance; RootNodeSlashingEscrowInstance.abi = 'RootNodeSlashingEscrow.json'; RootNodeSlashingEscrowInstance.registryKey = 'governance.rootNodes.slashingEscrow'; //# sourceMappingURL=RootNodeSlashingEscrowInstance.js.map