aboutsummaryrefslogtreecommitdiffstats
path: root/src/types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/types.ts')
-rw-r--r--src/types.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/types.ts b/src/types.ts
index 4b9250654..1b70d950b 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -267,3 +267,11 @@ export interface OrderFillRequest {
}
export type AsyncMethod = (...args: any[]) => Promise<any>;
+
+export interface ContractInstance {
+ address: string;
+}
+
+export interface Artifact {
+ networks: {[networkId: number]: any};
+}