@@ -43,9 +43,9 @@ use crate::server::{
43
43
( "from_block" = Option <BlockHeight >, Query , description = "Filter from specific block height" ) ,
44
44
( "after" = Option <Cursor >, Query , description = "Return transactions after this cursor" ) ,
45
45
( "before" = Option <Cursor >, Query , description = "Return transactions before this cursor" ) ,
46
- ( "first" = Option <i32 >, Query , description = "Limit results, sorted by ascending order" , minimum = 1 , maximum = 100 ) ,
47
- ( "last" = Option <i32 >, Query , description = "Limit results, sorted by descending order" , minimum = 1 , maximum = 100 ) ,
48
- ( "limit" = Option <i32 >, Query , description = "Maximum number of results to return" , minimum = 1 , maximum = 1000 ) ,
46
+ ( "first" = Option <i32 >, Query , description = "Limit results, sorted by ascending order" , minimum = 1 , maximum = 50 ) ,
47
+ ( "last" = Option <i32 >, Query , description = "Limit results, sorted by descending order" , minimum = 1 , maximum = 50 ) ,
48
+ ( "limit" = Option <i32 >, Query , description = "Maximum number of results to return" , minimum = 1 , maximum = 50 ) ,
49
49
( "offset" = Option <i32 >, Query , description = "Number of results to skip" , minimum = 0 ) ,
50
50
( "order_by" = Option <OrderBy >, Query , description = "Sort order (ASC or DESC)" )
51
51
) ,
@@ -97,9 +97,9 @@ pub async fn get_accounts_transactions(
97
97
( "from_block" = Option <BlockHeight >, Query , description = "Filter from specific block height" ) ,
98
98
( "after" = Option <Cursor >, Query , description = "Return inputs after this cursor" ) ,
99
99
( "before" = Option <Cursor >, Query , description = "Return inputs before this cursor" ) ,
100
- ( "first" = Option <i32 >, Query , description = "Limit results, sorted by ascending order" , minimum = 1 , maximum = 100 ) ,
101
- ( "last" = Option <i32 >, Query , description = "Limit results, sorted by descending order" , minimum = 1 , maximum = 100 ) ,
102
- ( "limit" = Option <i32 >, Query , description = "Maximum number of results to return" , minimum = 1 , maximum = 1000 ) ,
100
+ ( "first" = Option <i32 >, Query , description = "Limit results, sorted by ascending order" , minimum = 1 , maximum = 50 ) ,
101
+ ( "last" = Option <i32 >, Query , description = "Limit results, sorted by descending order" , minimum = 1 , maximum = 50 ) ,
102
+ ( "limit" = Option <i32 >, Query , description = "Maximum number of results to return" , minimum = 1 , maximum = 50 ) ,
103
103
( "offset" = Option <i32 >, Query , description = "Number of results to skip" , minimum = 0 ) ,
104
104
( "order_by" = Option <OrderBy >, Query , description = "Sort order (ASC or DESC)" )
105
105
) ,
@@ -146,9 +146,9 @@ pub async fn get_accounts_inputs(
146
146
( "from_block" = Option <BlockHeight >, Query , description = "Filter from specific block height" ) ,
147
147
( "after" = Option <Cursor >, Query , description = "Return outputs after this cursor" ) ,
148
148
( "before" = Option <Cursor >, Query , description = "Return outputs before this cursor" ) ,
149
- ( "first" = Option <i32 >, Query , description = "Limit results, sorted by ascending order" , minimum = 1 , maximum = 100 ) ,
150
- ( "last" = Option <i32 >, Query , description = "Limit results, sorted by descending order" , minimum = 1 , maximum = 100 ) ,
151
- ( "limit" = Option <i32 >, Query , description = "Maximum number of results to return" , minimum = 1 , maximum = 1000 ) ,
149
+ ( "first" = Option <i32 >, Query , description = "Limit results, sorted by ascending order" , minimum = 1 , maximum = 50 ) ,
150
+ ( "last" = Option <i32 >, Query , description = "Limit results, sorted by descending order" , minimum = 1 , maximum = 50 ) ,
151
+ ( "limit" = Option <i32 >, Query , description = "Maximum number of results to return" , minimum = 1 , maximum = 50 ) ,
152
152
( "offset" = Option <i32 >, Query , description = "Number of results to skip" , minimum = 0 ) ,
153
153
( "order_by" = Option <OrderBy >, Query , description = "Sort order (ASC or DESC)" )
154
154
) ,
@@ -200,9 +200,9 @@ pub async fn get_accounts_outputs(
200
200
( "from_block" = Option <BlockHeight >, Query , description = "Filter from specific block height" ) ,
201
201
( "after" = Option <Cursor >, Query , description = "Return UTXOs after this cursor" ) ,
202
202
( "before" = Option <Cursor >, Query , description = "Return UTXOs before this cursor" ) ,
203
- ( "first" = Option <i32 >, Query , description = "Limit results, sorted by ascending order" , minimum = 1 , maximum = 100 ) ,
204
- ( "last" = Option <i32 >, Query , description = "Limit results, sorted by descending order" , minimum = 1 , maximum = 100 ) ,
205
- ( "limit" = Option <i32 >, Query , description = "Maximum number of results to return" , minimum = 1 , maximum = 1000 ) ,
203
+ ( "first" = Option <i32 >, Query , description = "Limit results, sorted by ascending order" , minimum = 1 , maximum = 50 ) ,
204
+ ( "last" = Option <i32 >, Query , description = "Limit results, sorted by descending order" , minimum = 1 , maximum = 50 ) ,
205
+ ( "limit" = Option <i32 >, Query , description = "Maximum number of results to return" , minimum = 1 , maximum = 50 ) ,
206
206
( "offset" = Option <i32 >, Query , description = "Number of results to skip" , minimum = 0 ) ,
207
207
( "order_by" = Option <OrderBy >, Query , description = "Sort order (ASC or DESC)" )
208
208
) ,
@@ -253,9 +253,9 @@ pub async fn get_accounts_utxos(
253
253
( "from_block" = Option <BlockHeight >, Query , description = "Filter from specific block height" ) ,
254
254
( "after" = Option <Cursor >, Query , description = "Return receipts after this cursor" ) ,
255
255
( "before" = Option <Cursor >, Query , description = "Return receipts before this cursor" ) ,
256
- ( "first" = Option <i32 >, Query , description = "Limit results, sorted by ascending order" , minimum = 1 , maximum = 100 ) ,
257
- ( "last" = Option <i32 >, Query , description = "Limit results, sorted by descending order" , minimum = 1 , maximum = 100 ) ,
258
- ( "limit" = Option <i32 >, Query , description = "Maximum number of results to return" , minimum = 1 , maximum = 1000 ) ,
256
+ ( "first" = Option <i32 >, Query , description = "Limit results, sorted by ascending order" , minimum = 1 , maximum = 50 ) ,
257
+ ( "last" = Option <i32 >, Query , description = "Limit results, sorted by descending order" , minimum = 1 , maximum = 50 ) ,
258
+ ( "limit" = Option <i32 >, Query , description = "Maximum number of results to return" , minimum = 1 , maximum = 50 ) ,
259
259
( "offset" = Option <i32 >, Query , description = "Number of results to skip" , minimum = 0 ) ,
260
260
( "order_by" = Option <OrderBy >, Query , description = "Sort order (ASC or DESC)" )
261
261
) ,
0 commit comments