-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathadmin-api.yaml
More file actions
1611 lines (1561 loc) · 44.6 KB
/
admin-api.yaml
File metadata and controls
1611 lines (1561 loc) · 44.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
title: OIF Solver Admin API
description: |
Administrative endpoints for modifying solver configuration.
All admin write actions require an EIP-712 signed request payload. If JWT auth
is enabled, these endpoints also require the `admin-all` scope.
version: 1.0.0
servers:
- url: http://localhost:3000/api/v1
description: Local development server
- url: https://api.solver.example.com/api/v1
description: Production server (replace with actual URL)
paths:
/admin/nonce:
get:
summary: Get admin nonce
description: |
Generates a nonce used to sign subsequent admin actions.
The nonce must be included in the signed request contents.
operationId: getAdminNonce
tags:
- Admin
security:
- bearerAuth: []
responses:
"200":
description: Nonce generated
content:
application/json:
schema:
$ref: "#/components/schemas/NonceResponse"
example:
nonce: "12345678901234567890"
expiresIn: 300
domain: "solver.example.com"
chainId: 1
"400":
description: Invalid request or nonce generation error
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"401":
description: Unauthorized (signature or JWT failure)
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"403":
description: Not authorized
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
post:
summary: Create admin nonce
description: |
Generates a nonce used to sign subsequent admin actions.
This endpoint is equivalent to `GET /admin/nonce`.
operationId: createAdminNonce
tags:
- Admin
security:
- bearerAuth: []
responses:
"200":
description: Nonce generated
content:
application/json:
schema:
$ref: "#/components/schemas/NonceResponse"
example:
nonce: "12345678901234567890"
expiresIn: 300
domain: "solver.example.com"
chainId: 1
"400":
description: Invalid request or nonce generation error
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"401":
description: Unauthorized (signature or JWT failure)
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"403":
description: Not authorized
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
/admin/types:
get:
summary: Get EIP-712 type definitions
description: |
Returns the EIP-712 domain and type definitions required for client-side
signing of admin actions.
operationId: getAdminTypes
tags:
- Admin
security:
- bearerAuth: []
responses:
"200":
description: EIP-712 domain and types
content:
application/json:
schema:
$ref: "#/components/schemas/Eip712TypeInfo"
/admin/balances:
get:
summary: Get solver balances
description: |
Returns solver token balances per configured network, including native balance.
operationId: getAdminBalances
tags:
- Admin
security:
- bearerAuth: []
responses:
"200":
description: Solver balances
content:
application/json:
schema:
$ref: "#/components/schemas/BalancesResponse"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
/admin/config:
get:
summary: Get operator configuration (redacted)
description: |
Returns a redacted view of the current operator configuration.
operationId: getAdminConfig
tags:
- Admin
security: []
responses:
"200":
description: Current operator configuration
content:
application/json:
schema:
$ref: "#/components/schemas/AdminConfigResponse"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
/admin/whitelist:
post:
summary: Add an admin
description: |
Adds a new admin address to the authorized list.
Requires an EIP-712 signed request body.
operationId: addAdmin
tags:
- Admin
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/SignedAdminRequestAddAdmin"
example:
signature: "0x..."
contents:
newAdmin: "0x1234567890abcdef1234567890abcdef12345678"
nonce: "12345678901234"
deadline: "1706184000"
responses:
"200":
description: Admin added
content:
application/json:
schema:
$ref: "#/components/schemas/AdminActionResponse"
"400":
description: Invalid request or message
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"401":
description: Unauthorized (signature or JWT failure)
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"403":
description: Not authorized
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
delete:
summary: Remove an admin
description: |
Removes an admin address from the authorized list.
Requires an EIP-712 signed request body.
operationId: removeAdmin
tags:
- Admin
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/SignedAdminRequestRemoveAdmin"
example:
signature: "0x..."
contents:
adminToRemove: "0x1234567890abcdef1234567890abcdef12345678"
nonce: "12345678901234"
deadline: "1706184000"
responses:
"200":
description: Admin removed
content:
application/json:
schema:
$ref: "#/components/schemas/AdminActionResponse"
"400":
description: Invalid request or message
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"401":
description: Unauthorized (signature or JWT failure)
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"403":
description: Not authorized
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
/admin/tokens:
post:
summary: Add a token to a network
description: |
Adds a new token to the specified network's configuration.
Requires an EIP-712 signed request body.
operationId: addAdminToken
tags:
- Admin
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/SignedAdminRequestAddToken"
example:
signature: "0x..."
contents:
chainId: 10
symbol: "USDC"
name: "USD Coin"
tokenAddress: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
decimals: 6
nonce: "12345678901234"
deadline: "1706184000"
responses:
"200":
description: Token added
content:
application/json:
schema:
$ref: "#/components/schemas/AdminActionResponse"
"400":
description: Invalid request or message
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"401":
description: Unauthorized (signature or JWT failure)
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"403":
description: Not authorized
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
/admin/tokens/batch:
post:
summary: Add multiple tokens to networks
description: |
Adds 2 or more tokens to network configurations in a single signed request.
Requires an EIP-712 signed request body.
operationId: addAdminTokensBatch
tags:
- Admin
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/SignedAdminRequestAddTokens"
example:
signature: "0x..."
contents:
tokens:
- chainId: 10
symbol: "USDC"
name: "USD Coin"
tokenAddress: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
decimals: 6
- chainId: 10
symbol: "USDT"
name: "Tether USD"
tokenAddress: "0xdAC17F958D2ee523a2206206994597C13D831ec7"
decimals: 6
nonce: "12345678901234"
deadline: "1706184000"
responses:
"200":
description: Tokens added
content:
application/json:
schema:
$ref: "#/components/schemas/AdminActionResponse"
"400":
description: Invalid request or message
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"401":
description: Unauthorized (signature or JWT failure)
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"403":
description: Not authorized
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
delete:
summary: Remove a token from a network
description: |
Removes a token from the specified network's configuration.
Requires an EIP-712 signed request body.
operationId: removeAdminToken
tags:
- Admin
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/SignedAdminRequestRemoveToken"
example:
signature: "0x..."
contents:
chainId: 10
tokenAddress: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
nonce: "12345678901234"
deadline: "1706184000"
responses:
"200":
description: Token removed
content:
application/json:
schema:
$ref: "#/components/schemas/AdminActionResponse"
"400":
description: Invalid request or message
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"401":
description: Unauthorized (signature or JWT failure)
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"403":
description: Not authorized
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
/admin/tokens/approve:
post:
summary: Approve tokens for a spender
description: |
Triggers ERC-20 approvals for tokens to a specified spender.
Uses chainId=0 for all chains and tokenAddress=0x0 for all tokens.
Requires an EIP-712 signed request body.
operationId: approveAdminTokens
tags:
- Admin
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/SignedAdminRequestApproveTokens"
example:
signature: "0x..."
contents:
chainId: 0
tokenAddress: "0x0000000000000000000000000000000000000000"
spender: "0x1234567890abcdef1234567890abcdef12345678"
amount: "1000000000000000000"
nonce: "12345678901234"
deadline: "1706184000"
responses:
"200":
description: Approvals processed
content:
application/json:
schema:
$ref: "#/components/schemas/ApproveTokensResponse"
"400":
description: Invalid request or message
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"401":
description: Unauthorized (signature or JWT failure)
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"403":
description: Not authorized
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
/admin/fees:
get:
summary: Get fee configuration
description: |
Returns current fee configuration (gas buffer, minimum profitability, commission, rate buffer).
operationId: getAdminFees
tags:
- Admin
security:
- bearerAuth: []
responses:
"200":
description: Current fee configuration
content:
application/json:
schema:
$ref: "#/components/schemas/FeeConfigResponse"
"401":
description: Unauthorized (JWT failure)
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"403":
description: Not authorized
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
put:
summary: Update fee configuration
description: |
Updates gas buffer, minimum profitability, commission, and rate buffer settings.
Requires an EIP-712 signed request body.
operationId: updateAdminFees
tags:
- Admin
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/SignedAdminRequestUpdateFees"
example:
signature: "0x..."
contents:
gasBufferBps: 1500
minProfitabilityPct: "2.5"
commissionBps: 20
rateBufferBps: 14
nonce: "12345678901234"
deadline: "1706184000"
responses:
"200":
description: Fee configuration updated
content:
application/json:
schema:
$ref: "#/components/schemas/AdminActionResponse"
"400":
description: Invalid request or message
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"401":
description: Unauthorized (signature or JWT failure)
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"403":
description: Not authorized
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
/admin/gas:
get:
summary: Get gas configuration
description: |
Returns current gas unit configuration for all flows.
operationId: getAdminGas
tags:
- Admin
security:
- bearerAuth: []
responses:
"200":
description: Current gas configuration
content:
application/json:
schema:
$ref: "#/components/schemas/GasConfigResponse"
"401":
description: Unauthorized (JWT failure)
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"403":
description: Not authorized
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
put:
summary: Update gas configuration
description: |
Updates gas unit overrides for all flows.
Requires an EIP-712 signed request body.
operationId: updateAdminGas
tags:
- Admin
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/SignedAdminRequestUpdateGas"
example:
signature: "0x..."
contents:
resourceLockOpen: 50000
resourceLockFill: 150000
resourceLockClaim: 80000
permit2EscrowOpen: 60000
permit2EscrowFill: 160000
permit2EscrowClaim: 90000
eip3009EscrowOpen: 55000
eip3009EscrowFill: 155000
eip3009EscrowClaim: 85000
nonce: "12345678901234"
deadline: "1706184000"
responses:
"200":
description: Gas configuration updated
content:
application/json:
schema:
$ref: "#/components/schemas/AdminActionResponse"
"400":
description: Invalid request or message
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"401":
description: Unauthorized (signature or JWT failure)
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"403":
description: Not authorized
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
/admin/withdrawals:
post:
summary: Withdraw tokens
description: |
Submit a withdrawal transaction from the solver-managed account.
Supports native token withdrawal when token is 0x0.
Requires an EIP-712 signed request body.
operationId: withdrawAdminTokens
tags:
- Admin
security:
- bearerAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/SignedAdminRequestWithdraw"
example:
signature: "0x..."
contents:
chainId: 10
token: "0x0000000000000000000000000000000000000000"
amount: "1000000000000000000"
recipient: "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266"
nonce: "12345678901234"
deadline: "1706184000"
responses:
"200":
description: Withdrawal submitted
content:
application/json:
schema:
$ref: "#/components/schemas/WithdrawalResponse"
"400":
description: Invalid request or message
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"401":
description: Unauthorized (signature or JWT failure)
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"403":
description: Not authorized
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
"500":
description: Internal error
content:
application/json:
schema:
$ref: "#/components/schemas/AdminAuthErrorResponse"
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
schemas:
NonceResponse:
type: object
required:
- nonce
- expiresIn
- domain
- chainId
properties:
nonce:
type: string
description: Nonce as a string to preserve precision
example: "12345678901234567890"
expiresIn:
type: integer
format: int64
description: Nonce time-to-live in seconds
example: 300
domain:
type: string
description: EIP-712 domain name
example: "solver.example.com"
chainId:
type: integer
format: int64
description: EIP-712 domain chain ID
example: 1
AdminActionResponse:
type: object
required:
- success
- message
- admin
properties:
success:
type: boolean
example: true
message:
type: string
example: "Token USDC added to chain 10"
admin:
type: string
description: Admin address
example: "0x1234567890abcdef1234567890abcdef12345678"
SignedAdminRequestAddToken:
type: object
required:
- signature
- contents
properties:
signature:
type: string
description: Hex-encoded EIP-712 signature (65 bytes)
pattern: "^0x[a-fA-F0-9]+$"
contents:
$ref: "#/components/schemas/AddTokenContents"
SignedAdminRequestAddTokens:
type: object
required:
- signature
- contents
properties:
signature:
type: string
description: Hex-encoded EIP-712 signature (65 bytes)
pattern: "^0x[a-fA-F0-9]+$"
contents:
$ref: "#/components/schemas/AddTokensContents"
SignedAdminRequestAddAdmin:
type: object
required:
- signature
- contents
properties:
signature:
type: string
description: Hex-encoded EIP-712 signature (65 bytes)
pattern: "^0x[a-fA-F0-9]+$"
contents:
$ref: "#/components/schemas/AddAdminContents"
AddAdminContents:
type: object
required:
- newAdmin
- nonce
- deadline
properties:
newAdmin:
type: string
pattern: "^0x[a-fA-F0-9]{40}$"
example: "0x1234567890abcdef1234567890abcdef12345678"
nonce:
type: string
description: Nonce as a string (number also accepted by server)
example: "12345678901234"
deadline:
type: string
description: Unix timestamp (seconds) as a string (number also accepted)
example: "1706184000"
AddTokenContents:
type: object
required:
- chainId
- symbol
- tokenAddress
- decimals
- nonce
- deadline
properties:
chainId:
type: integer
format: int64
example: 10
symbol:
type: string
example: "USDC"
name:
type: string
nullable: true
description: Optional token display name metadata
example: "USD Coin"
tokenAddress:
type: string
pattern: "^0x[a-fA-F0-9]{40}$"
example: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
decimals:
type: integer
minimum: 0
maximum: 255
example: 6
nonce:
type: string
description: Nonce as a string (number also accepted by server)
example: "12345678901234"
deadline:
type: string
description: Unix timestamp (seconds) as a string (number also accepted)
example: "1706184000"
AddTokenItemContents:
type: object
required:
- chainId
- symbol
- tokenAddress
- decimals
properties:
chainId:
type: integer
format: int64
example: 10
symbol:
type: string
example: "USDC"
name:
type: string
nullable: true
description: Optional token display name metadata
example: "USD Coin"
tokenAddress:
type: string
pattern: "^0x[a-fA-F0-9]{40}$"
example: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
decimals:
type: integer
minimum: 0
maximum: 255
example: 6
AddTokensContents:
type: object
required:
- tokens
- nonce
- deadline
properties:
tokens:
type: array
minItems: 2
maxItems: 50
items:
$ref: "#/components/schemas/AddTokenItemContents"
nonce:
type: string
description: Nonce as a string (number also accepted by server)
example: "12345678901234"
deadline:
type: string
description: Unix timestamp (seconds) as a string (number also accepted)
example: "1706184000"
SignedAdminRequestRemoveToken:
type: object
required:
- signature
- contents
properties:
signature:
type: string
description: Hex-encoded EIP-712 signature (65 bytes)
pattern: "^0x[a-fA-F0-9]+$"
contents:
$ref: "#/components/schemas/RemoveTokenContents"
SignedAdminRequestRemoveAdmin:
type: object
required:
- signature
- contents
properties:
signature:
type: string
description: Hex-encoded EIP-712 signature (65 bytes)
pattern: "^0x[a-fA-F0-9]+$"
contents:
$ref: "#/components/schemas/RemoveAdminContents"
RemoveAdminContents:
type: object
required:
- adminToRemove
- nonce
- deadline
properties:
adminToRemove:
type: string
pattern: "^0x[a-fA-F0-9]{40}$"
example: "0x1234567890abcdef1234567890abcdef12345678"
nonce:
type: string
description: Nonce as a string (number also accepted by server)