UNPKG

evm-blockchain-tools

Version:

This is a collection of resuseable tools to support development for EVM-powered blockchains

8 lines (7 loc) 271 B
import { Interface } from "ethers/lib/utils"; import { ContractModel } from "../models/contract-model"; export declare abstract class ContractService<T extends ContractModel> { protected contract: T; constructor(contract: T); get abiInterface(): Interface; }