aboutsummaryrefslogtreecommitdiffstats
path: root/packages/abi-gen/src/types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/abi-gen/src/types.ts')
-rw-r--r--packages/abi-gen/src/types.ts24
1 files changed, 0 insertions, 24 deletions
diff --git a/packages/abi-gen/src/types.ts b/packages/abi-gen/src/types.ts
deleted file mode 100644
index 68765b04d..000000000
--- a/packages/abi-gen/src/types.ts
+++ /dev/null
@@ -1,24 +0,0 @@
-import { EventAbi, MethodAbi } from 'ethereum-types';
-
-export enum ParamKind {
- Input = 'input',
- Output = 'output',
-}
-
-export enum ContractsBackend {
- Web3 = 'web3',
- Ethers = 'ethers',
-}
-
-export interface Method extends MethodAbi {
- singleReturnValue: boolean;
- hasReturnValue: boolean;
- tsName: string;
- functionSignature: string;
-}
-
-export interface ContextData {
- contractName: string;
- methods: Method[];
- events: EventAbi[];
-}