fix(api): align list defaults with backend page limits
This commit is contained in:
@@ -18,7 +18,7 @@ export type ListWalletTransactionsOptions = {
|
||||
|
||||
function withOffsetLimit(path: string, options?: ListWalletTransactionsOptions): string {
|
||||
const offset = options?.offset ?? 0
|
||||
const limit = options?.limit ?? 1000
|
||||
const limit = options?.limit ?? 100
|
||||
const searchParams = new URLSearchParams({
|
||||
offset: String(offset),
|
||||
limit: String(limit),
|
||||
|
||||
Reference in New Issue
Block a user