@guru-fund/sdk 0.1.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { FunctionFragment, Typed, EventFragment, ContractTransaction, ContractTransactionResponse, DeferredTopicFilter, EventLog, TransactionRequest, LogDescription } from "ethers";
|
|
2
2
|
export interface TypedDeferredTopicFilter<_TCEvent extends TypedContractEvent> extends DeferredTopicFilter {
|
|
3
3
|
}
|
|
4
|
-
export interface TypedContractEvent<InputTuple extends Array<any> = any
|
|
4
|
+
export interface TypedContractEvent<InputTuple extends Array<any> = Array<any>, OutputTuple extends Array<any> = Array<any>, OutputObject = any> {
|
|
5
5
|
(...args: Partial<InputTuple>): TypedDeferredTopicFilter<TypedContractEvent<InputTuple, OutputTuple, OutputObject>>;
|
|
6
6
|
name: string;
|
|
7
7
|
fragment: EventFragment;
|