@@ -398,7 +398,7 @@ export const TxRoutes: FastifyPluginAsync<
398
398
address : Type . Optional ( PrincipalSchema ) ,
399
399
type : Type . Optional ( Type . Array ( TransactionEventTypeSchema ) ) ,
400
400
offset : OffsetParam ( ) ,
401
- limit : LimitParam ( ResourceType . Event ) ,
401
+ limit : LimitParam ( ResourceType . Event , undefined , undefined , 100 ) ,
402
402
} ) ,
403
403
response : {
404
404
200 : TransactionEventsResponseSchema ,
@@ -478,7 +478,7 @@ export const TxRoutes: FastifyPluginAsync<
478
478
tx_id : TransactionIdParamSchema ,
479
479
} ) ,
480
480
querystring : Type . Object ( {
481
- event_limit : LimitParam ( ResourceType . Event ) ,
481
+ event_limit : LimitParam ( ResourceType . Event , undefined , undefined , 100 ) ,
482
482
event_offset : OffsetParam ( ) ,
483
483
unanchored : UnanchoredParamSchema ,
484
484
} ) ,
@@ -572,7 +572,7 @@ export const TxRoutes: FastifyPluginAsync<
572
572
} ) ,
573
573
querystring : Type . Object ( {
574
574
offset : OffsetParam ( ) ,
575
- limit : LimitParam ( ResourceType . Tx ) ,
575
+ limit : LimitParam ( ResourceType . Tx , undefined , undefined , 200 ) ,
576
576
} ) ,
577
577
response : {
578
578
200 : PaginatedResponse ( TransactionSchema , { description : 'List of transactions' } ) ,
0 commit comments