aboutsummaryrefslogtreecommitdiffstats
path: root/packages/types
diff options
context:
space:
mode:
Diffstat (limited to 'packages/types')
-rw-r--r--packages/types/src/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/types/src/index.ts b/packages/types/src/index.ts
index 0e409c93d..7b53b52c4 100644
--- a/packages/types/src/index.ts
+++ b/packages/types/src/index.ts
@@ -53,6 +53,6 @@ export enum SolidityTypes {
Uint = 'uint',
}
-export interface TransactionReceiptWithDecodedLogs<ArgsType> extends TransactionReceipt {
- logs: Array<LogWithDecodedArgs<ArgsType> | Web3.LogEntry>;
+export interface TransactionReceiptWithDecodedLogs extends TransactionReceipt {
+ logs: Array<LogWithDecodedArgs<DecodedLogArgs> | Web3.LogEntry>;
}