Skip to content

Commit

Permalink
fix endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
crossle committed Jan 29, 2024
1 parent a596a89 commit f2b5bb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/safe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const SafeKeystoreClient = (axiosInstance: AxiosInstance, keystore: Keyst

depositEntries: (data: SafeDepositEntriesRequest) => axiosInstance.post<unknown, SafeDepositEntryResponse[]>(`/safe/deposit/entries`, data),

createDeposit: (chain_id: string) => axiosInstance.post<unknown, SafeDepositEntryResponse[]>('/safe/deposit_entries', { chain_id }),
createDeposit: (chain_id: string) => axiosInstance.post<unknown, SafeDepositEntryResponse[]>('/safe/deposit/deposit_entries', { chain_id }),

pendingDeposits: (params: SafePendingDepositRequest): Promise<SafePendingDepositResponse[]> =>
axiosInstance.get<unknown, SafePendingDepositResponse[]>(`/safe/deposits`, { params }),
Expand Down

0 comments on commit f2b5bb3

Please sign in to comment.