@m3s/smart-contract
Version:
A modular toolkit for generating, compiling, deploying, and interacting with Ethereum-compatible smart contracts
8 lines • 381 B
TypeScript
import { IAdapterIdentity, IAdapterLifecycle } from "@m3s/shared";
import { IContractGenerator, IContractCompiler } from "./base.js";
/**
* Complete contract handler interface - composed of all contract operations
*/
export interface IBaseContractHandler extends IAdapterIdentity, IAdapterLifecycle, IContractGenerator, IContractCompiler {
}
//# sourceMappingURL=aliases.d.ts.map