src/module-manager/module-manager.interface.ts
Properties |
| contractAddress |
contractAddress:
|
Type : string
|
| contractName |
contractName:
|
Type : string
|
| description |
description:
|
Type : string
|
| transactionsInput |
transactionsInput:
|
Type : TransactionInput[]
|
import { TransactionInput } from "src/common/interfaces";
import { ModuleManager } from "./schemas/ModuleManager.schema";
export interface IModule extends ModuleManager {
contractName: string;
contractAddress: string;
description: string;
transactionsInput: TransactionInput[];
}