Skip to content

Commit

Permalink
Fix fetchAggregates
Browse files Browse the repository at this point in the history
  • Loading branch information
philogicae committed May 8, 2024
1 parent 1f35fc1 commit f8803f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/src/httpClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class AlephHttpClient {
async fetchAggregates(address: string, keys?: string[]): Promise<Record<string, any>> {
const params = { address, keys }
const result = await this.aggregateClient.get<any>(params)
return result.data
return result
}

/**
Expand Down

0 comments on commit f8803f2

Please sign in to comment.