Skip to content

Commit

Permalink
feat: Fix param passing and chronicle ledger updates endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
msarcev committed Feb 20, 2024
1 parent a8c1293 commit acf6be7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/src/services/nova/chronicleService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { INetwork } from "../../models/db/INetwork";
import { FetchHelper } from "../../utils/fetchHelper";

const CHRONICLE_ENDPOINTS = {
updatesByAddress: "/api/explorer/v2/ledger/updates/by-address/",
updatesByAddress: "/api/explorer/v3/ledger/updates/by-address/",
balance: "/api/explorer/v3/balance/",
};

Expand Down
2 changes: 1 addition & 1 deletion client/src/services/nova/novaApiClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export class NovaApiClient extends ApiClient {
const params = {
pageSize: request.pageSize,
sort: request.sort,
startMilestoneIndex: request.startSlotIndex,
startSlotIndex: request.startSlotIndex,
cursor: request.cursor,
};

Expand Down

0 comments on commit acf6be7

Please sign in to comment.