evm-blockchain-tools
Version:
This is a collection of resuseable tools to support development for EVM-powered blockchains
13 lines • 357 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ContractService = void 0;
class ContractService {
constructor(contract) {
this.contract = contract;
}
get abiInterface() {
return this.contract.abi;
}
}
exports.ContractService = ContractService;
//# sourceMappingURL=contract-service.js.map