@ardier16/q-js-sdk
Version:
Typescript Library to interact with Q System Contracts
14 lines (13 loc) • 545 B
TypeScript
import Web3 from 'web3';
import { ASlashingEscrow } from '../web3-contracts/ASlashingEscrow';
import { BaseSlashingEscrowInstance } from './governance/BaseSlashingEscrowInstance';
export declare class SystemSlashingEscrowInstance<T extends ASlashingEscrow> extends BaseSlashingEscrowInstance<T> {
readonly address: string;
/**
* Constructor
* @param web3 web3 instance
* @param abiFile abi json file
* @param address contract address
*/
constructor(web3: Web3, abiFile: string, address: string);
}