You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs.go
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -425,6 +425,16 @@ const docTemplate = `{
425
425
"description": "Filter by signature validity (0=invalid only, 1=valid only, 2=all)",
426
426
"name": "with_valid",
427
427
"in": "query"
428
+
},
429
+
{
430
+
"type": "array",
431
+
"items": {
432
+
"type": "integer"
433
+
},
434
+
"collectionFormat": "multi",
435
+
"description": "Filter by withdrawal credential type prefix byte (0-3). Repeat the parameter to include multiple types, e.g. cred_type=1\u0026cred_type=2.",
Copy file name to clipboardExpand all lines: docs/swagger.json
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -422,6 +422,16 @@
422
422
"description": "Filter by signature validity (0=invalid only, 1=valid only, 2=all)",
423
423
"name": "with_valid",
424
424
"in": "query"
425
+
},
426
+
{
427
+
"type": "array",
428
+
"items": {
429
+
"type": "integer"
430
+
},
431
+
"collectionFormat": "multi",
432
+
"description": "Filter by withdrawal credential type prefix byte (0-3). Repeat the parameter to include multiple types, e.g. cred_type=1\u0026cred_type=2.",
Copy file name to clipboardExpand all lines: handlers/api/deposits_included_v1.go
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,7 @@ type APIDepositIncludedInfo struct {
64
64
// @Param with_orphaned query int false "Include orphaned deposits (0=canonical only, 1=include all, 2=orphaned only)"
65
65
// @Param address query string false "Filter by depositor address"
66
66
// @Param with_valid query int false "Filter by signature validity (0=invalid only, 1=valid only, 2=all)"
67
+
// @Param cred_type query []int false "Filter by withdrawal credential type prefix byte (0-3). Repeat the parameter to include multiple types, e.g. cred_type=1&cred_type=2." collectionFormat(multi)
0 commit comments