aboutsummaryrefslogtreecommitdiffstats
path: root/src/types.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-08-17 12:22:24 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-08-17 12:22:24 +0800
commitb95d93a43b3020e1ebf4f319d78d918ea0fe8802 (patch)
treebc658d302a4877c99cb30de23875ed1d84a6ebe3 /src/types.ts
parentb5bfcc772acc2d7c538f3809e7ab1890b9f7b1a7 (diff)
downloaddexon-0x-contracts-b95d93a43b3020e1ebf4f319d78d918ea0fe8802.tar
dexon-0x-contracts-b95d93a43b3020e1ebf4f319d78d918ea0fe8802.tar.gz
dexon-0x-contracts-b95d93a43b3020e1ebf4f319d78d918ea0fe8802.tar.bz2
dexon-0x-contracts-b95d93a43b3020e1ebf4f319d78d918ea0fe8802.tar.lz
dexon-0x-contracts-b95d93a43b3020e1ebf4f319d78d918ea0fe8802.tar.xz
dexon-0x-contracts-b95d93a43b3020e1ebf4f319d78d918ea0fe8802.tar.zst
dexon-0x-contracts-b95d93a43b3020e1ebf4f319d78d918ea0fe8802.zip
Add JSONRPCPayload type and remove unused import
Diffstat (limited to 'src/types.ts')
-rw-r--r--src/types.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/types.ts b/src/types.ts
index ee45acf11..851995cf7 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -368,3 +368,8 @@ export interface ContractArtifact {
};
};
}
+
+export interface JSONRPCPayload {
+ params: any[];
+ method: string;
+}