interface GetTransactionsSummariesParams {
    abiMap?: AbiMap;
    filters: Exact<{
        after?: InputMaybe<string>;
        before?: InputMaybe<string>;
        first?: InputMaybe<number>;
        last?: InputMaybe<number>;
        owner: string;
    }>;
    provider: Provider;
}

Properties

abiMap?: AbiMap
filters: Exact<{
    after?: InputMaybe<string>;
    before?: InputMaybe<string>;
    first?: InputMaybe<number>;
    last?: InputMaybe<number>;
    owner: string;
}>
provider: Provider