tapimo 0.15.0 → 0.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/App.d.ts +26 -26
- package/dist/admin/App.d.ts +3 -0
- package/dist/admin/App.d.ts.map +1 -1
- package/dist/admin/apps/api-keys.d.ts +41 -41
- package/dist/admin/apps/routes.d.ts +64 -64
- package/dist/admin/apps/verified-tokens.d.ts +161 -155
- package/dist/admin/apps/verified-tokens.d.ts.map +1 -1
- package/dist/admin/apps/verified-tokens.js +24 -4
- package/dist/admin/apps/verified-tokens.js.map +1 -1
- package/dist/admin/ui.generated.d.ts +1 -1
- package/dist/admin/ui.generated.d.ts.map +1 -1
- package/dist/admin/ui.generated.js +201 -209
- package/dist/admin/ui.generated.js.map +1 -1
- package/dist/apps/data/routes/activities.d.ts +357 -357
- package/dist/apps/data/routes/blocks.d.ts +125 -125
- package/dist/apps/data/routes/fee-amm.d.ts +108 -108
- package/dist/apps/data/routes/fee-amm.d.ts.map +1 -1
- package/dist/apps/data/routes/fee-amm.js +10 -2
- package/dist/apps/data/routes/fee-amm.js.map +1 -1
- package/dist/apps/data/routes/indexer.d.ts +43 -43
- package/dist/apps/data/routes/receipts.d.ts +235 -235
- package/dist/apps/data/routes/rpc.js +45 -11
- package/dist/apps/data/routes/rpc.js.map +1 -1
- package/dist/apps/data/routes/transfers.d.ts +81 -81
- package/dist/apps/data/routes/valuation.d.ts +32 -32
- package/dist/apps/data/routes/verified-tokens.d.ts +86 -86
- package/dist/apps/data/routes/webhooks.d.ts +1 -1
- package/dist/apps/data/routes/webhooks.d.ts.map +1 -1
- package/dist/apps/data/routes/webhooks.js +17 -10
- package/dist/apps/data/routes/webhooks.js.map +1 -1
- package/dist/apps/data/routes/zones.d.ts +31 -31
- package/dist/apps/management/App.d.ts +26 -26
- package/dist/apps/management/routes/api-keys.d.ts +246 -246
- package/dist/apps/management/routes/invitations.d.ts +138 -138
- package/dist/apps/management/routes/invite-links.d.ts +168 -168
- package/dist/apps/management/routes/orgs.d.ts +98 -98
- package/dist/apps/management/routes/projects.d.ts +125 -125
- package/dist/apps/management/routes/verified-token-requests.d.ts +95 -95
- package/dist/apps/management/routes/verified-token-requests.d.ts.map +1 -1
- package/dist/apps/management/routes/verified-token-requests.js +7 -9
- package/dist/apps/management/routes/verified-token-requests.js.map +1 -1
- package/dist/apps/management/routes/webhooks.d.ts +423 -423
- package/dist/apps/mcp.d.ts.map +1 -1
- package/dist/apps/mcp.js +16 -3
- package/dist/apps/mcp.js.map +1 -1
- package/dist/apps/mpp/App.d.ts +44 -44
- package/dist/apps/routes/routes/chains.d.ts +25 -25
- package/dist/apps/routes/routes/quotes.d.ts +87 -87
- package/dist/apps/routes/routes/transfers.d.ts +438 -438
- package/dist/db/Db.d.ts.map +1 -1
- package/dist/db/Db.js +5 -0
- package/dist/db/Db.js.map +1 -1
- package/dist/db/tables/verifiedTokenRequests.d.ts +21 -4
- package/dist/db/tables/verifiedTokenRequests.d.ts.map +1 -1
- package/dist/db/tables/verifiedTokenRequests.js +65 -44
- package/dist/db/tables/verifiedTokenRequests.js.map +1 -1
- package/dist/internal/Auth.d.ts +16 -0
- package/dist/internal/Auth.d.ts.map +1 -1
- package/dist/internal/Auth.js +31 -8
- package/dist/internal/Auth.js.map +1 -1
- package/dist/internal/routes/providers/relay.d.ts +1 -1
- package/dist/internal/routes/providers/relay.js +1 -1
- package/dist/internal/routes/providers/relay.js.map +1 -1
- package/package.json +1 -1
- package/src/admin/apps/verified-tokens.test.ts +32 -0
- package/src/admin/apps/verified-tokens.ts +30 -4
- package/src/admin/ui/src/lib/verified-tokens.ts +24 -9
- package/src/admin/ui/src/routes/__root.tsx +1 -1
- package/src/admin/ui/src/routes/organizations.tsx +34 -4
- package/src/admin/ui/src/routes/verified-tokens.tsx +64 -20
- package/src/admin/ui.generated.ts +202 -263
- package/src/apps/data/App.test.ts +26 -0
- package/src/apps/data/routes/fee-amm.test.ts +19 -0
- package/src/apps/data/routes/fee-amm.ts +10 -2
- package/src/apps/data/routes/rpc.test.ts +32 -0
- package/src/apps/data/routes/rpc.ts +47 -10
- package/src/apps/data/routes/webhooks.scan.test.ts +29 -0
- package/src/apps/data/routes/webhooks.test.ts +6 -0
- package/src/apps/data/routes/webhooks.ts +25 -12
- package/src/apps/management/routes/verified-token-requests.test.ts +16 -2
- package/src/apps/management/routes/verified-token-requests.ts +7 -10
- package/src/apps/mcp.test.ts +108 -25
- package/src/apps/mcp.ts +15 -3
- package/src/db/Db.ts +9 -0
- package/src/db/tables/routesDeposits.test.ts +72 -0
- package/src/db/tables/verifiedTokenRequests.test.ts +39 -20
- package/src/db/tables/verifiedTokenRequests.ts +80 -44
- package/src/internal/Auth.test.ts +92 -0
- package/src/internal/Auth.ts +51 -9
- package/src/internal/routes/providers/relay.test.ts +59 -0
- package/src/internal/routes/providers/relay.ts +1 -1
|
@@ -186,6 +186,8 @@ export declare namespace schema {
|
|
|
186
186
|
namespace listVerifiedTokenRequests {
|
|
187
187
|
/** Query parameters for the request queue. */
|
|
188
188
|
const Query: z.ZodMiniObject<{
|
|
189
|
+
cursor: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
190
|
+
limit: z.ZodMiniPipe<z.ZodMiniDefault<z.ZodMiniPipe<z.ZodMiniNumber<unknown>, z.ZodMiniTransform<number, number>>>, z.ZodMiniTransform<number, number>>;
|
|
189
191
|
status: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
190
192
|
approved: "approved";
|
|
191
193
|
denied: "denied";
|
|
@@ -219,6 +221,7 @@ export declare namespace schema {
|
|
|
219
221
|
orgName: z.ZodMiniNullable<z.ZodMiniString<string>>;
|
|
220
222
|
reviewedBy: z.ZodMiniNullable<z.ZodMiniString<string>>;
|
|
221
223
|
}, z.core.$strip>>;
|
|
224
|
+
nextCursor: z.ZodMiniNullable<z.ZodMiniString<string>>;
|
|
222
225
|
}, z.core.$strip>;
|
|
223
226
|
}
|
|
224
227
|
/** Schemas for the denyVerifiedTokenRequest operation. */
|
|
@@ -336,14 +339,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
336
339
|
$post: {
|
|
337
340
|
output: {
|
|
338
341
|
error: {
|
|
339
|
-
code: "
|
|
342
|
+
code: "verified_token_not_found";
|
|
340
343
|
details?: readonly Response.error.Detail[] | undefined;
|
|
341
344
|
message: string;
|
|
342
345
|
};
|
|
343
346
|
requestId: string;
|
|
344
347
|
};
|
|
345
348
|
outputFormat: "json";
|
|
346
|
-
status:
|
|
349
|
+
status: 404;
|
|
347
350
|
input: {
|
|
348
351
|
json: {
|
|
349
352
|
address: `0x${string}`;
|
|
@@ -359,7 +362,7 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
359
362
|
} | {
|
|
360
363
|
output: {
|
|
361
364
|
error: {
|
|
362
|
-
code: "
|
|
365
|
+
code: "assets_not_enabled";
|
|
363
366
|
details?: readonly Response.error.Detail[] | undefined;
|
|
364
367
|
message: string;
|
|
365
368
|
};
|
|
@@ -382,14 +385,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
382
385
|
} | {
|
|
383
386
|
output: {
|
|
384
387
|
error: {
|
|
385
|
-
code: "
|
|
388
|
+
code: "duplicate_address";
|
|
386
389
|
details?: readonly Response.error.Detail[] | undefined;
|
|
387
390
|
message: string;
|
|
388
391
|
};
|
|
389
392
|
requestId: string;
|
|
390
393
|
};
|
|
391
394
|
outputFormat: "json";
|
|
392
|
-
status:
|
|
395
|
+
status: 409;
|
|
393
396
|
input: {
|
|
394
397
|
json: {
|
|
395
398
|
address: `0x${string}`;
|
|
@@ -404,19 +407,15 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
404
407
|
};
|
|
405
408
|
} | {
|
|
406
409
|
output: {
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
logoUri?: string | undefined;
|
|
412
|
-
name: string;
|
|
413
|
-
symbol: string;
|
|
414
|
-
id: `0x${string}`;
|
|
410
|
+
error: {
|
|
411
|
+
code: "duplicate_symbol";
|
|
412
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
413
|
+
message: string;
|
|
415
414
|
};
|
|
416
|
-
|
|
415
|
+
requestId: string;
|
|
417
416
|
};
|
|
418
417
|
outputFormat: "json";
|
|
419
|
-
status:
|
|
418
|
+
status: 409;
|
|
420
419
|
input: {
|
|
421
420
|
json: {
|
|
422
421
|
address: `0x${string}`;
|
|
@@ -432,14 +431,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
432
431
|
} | {
|
|
433
432
|
output: {
|
|
434
433
|
error: {
|
|
435
|
-
code:
|
|
434
|
+
code: "version_mismatch";
|
|
436
435
|
details?: readonly Response.error.Detail[] | undefined;
|
|
437
436
|
message: string;
|
|
438
437
|
};
|
|
439
438
|
requestId: string;
|
|
440
439
|
};
|
|
441
440
|
outputFormat: "json";
|
|
442
|
-
status:
|
|
441
|
+
status: 412;
|
|
443
442
|
input: {
|
|
444
443
|
json: {
|
|
445
444
|
address: `0x${string}`;
|
|
@@ -455,14 +454,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
455
454
|
} | {
|
|
456
455
|
output: {
|
|
457
456
|
error: {
|
|
458
|
-
code: "
|
|
457
|
+
code: "upstream_error";
|
|
459
458
|
details?: readonly Response.error.Detail[] | undefined;
|
|
460
459
|
message: string;
|
|
461
460
|
};
|
|
462
461
|
requestId: string;
|
|
463
462
|
};
|
|
464
463
|
outputFormat: "json";
|
|
465
|
-
status:
|
|
464
|
+
status: 502;
|
|
466
465
|
input: {
|
|
467
466
|
json: {
|
|
468
467
|
address: `0x${string}`;
|
|
@@ -477,15 +476,19 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
477
476
|
};
|
|
478
477
|
} | {
|
|
479
478
|
output: {
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
479
|
+
data: {
|
|
480
|
+
address: `0x${string}`;
|
|
481
|
+
currency: string;
|
|
482
|
+
decimals: number;
|
|
483
|
+
logoUri?: string | undefined;
|
|
484
|
+
name: string;
|
|
485
|
+
symbol: string;
|
|
486
|
+
id: `0x${string}`;
|
|
484
487
|
};
|
|
485
|
-
|
|
488
|
+
version: string;
|
|
486
489
|
};
|
|
487
490
|
outputFormat: "json";
|
|
488
|
-
status:
|
|
491
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
489
492
|
input: {
|
|
490
493
|
json: {
|
|
491
494
|
address: `0x${string}`;
|
|
@@ -501,14 +504,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
501
504
|
} | {
|
|
502
505
|
output: {
|
|
503
506
|
error: {
|
|
504
|
-
code:
|
|
507
|
+
code: string;
|
|
505
508
|
details?: readonly Response.error.Detail[] | undefined;
|
|
506
509
|
message: string;
|
|
507
510
|
};
|
|
508
511
|
requestId: string;
|
|
509
512
|
};
|
|
510
513
|
outputFormat: "json";
|
|
511
|
-
status:
|
|
514
|
+
status: 400 | 413 | 415;
|
|
512
515
|
input: {
|
|
513
516
|
json: {
|
|
514
517
|
address: `0x${string}`;
|
|
@@ -528,14 +531,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
528
531
|
$put: {
|
|
529
532
|
output: {
|
|
530
533
|
error: {
|
|
531
|
-
code: "
|
|
534
|
+
code: "verified_token_not_found";
|
|
532
535
|
details?: readonly Response.error.Detail[] | undefined;
|
|
533
536
|
message: string;
|
|
534
537
|
};
|
|
535
538
|
requestId: string;
|
|
536
539
|
};
|
|
537
540
|
outputFormat: "json";
|
|
538
|
-
status:
|
|
541
|
+
status: 404;
|
|
539
542
|
input: {
|
|
540
543
|
query: {
|
|
541
544
|
chainId: string | string[];
|
|
@@ -555,14 +558,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
555
558
|
} | {
|
|
556
559
|
output: {
|
|
557
560
|
error: {
|
|
558
|
-
code: "
|
|
561
|
+
code: "duplicate_address";
|
|
559
562
|
details?: readonly Response.error.Detail[] | undefined;
|
|
560
563
|
message: string;
|
|
561
564
|
};
|
|
562
565
|
requestId: string;
|
|
563
566
|
};
|
|
564
567
|
outputFormat: "json";
|
|
565
|
-
status:
|
|
568
|
+
status: 409;
|
|
566
569
|
input: {
|
|
567
570
|
query: {
|
|
568
571
|
chainId: string | string[];
|
|
@@ -582,14 +585,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
582
585
|
} | {
|
|
583
586
|
output: {
|
|
584
587
|
error: {
|
|
585
|
-
code:
|
|
588
|
+
code: "duplicate_symbol";
|
|
586
589
|
details?: readonly Response.error.Detail[] | undefined;
|
|
587
590
|
message: string;
|
|
588
591
|
};
|
|
589
592
|
requestId: string;
|
|
590
593
|
};
|
|
591
594
|
outputFormat: "json";
|
|
592
|
-
status:
|
|
595
|
+
status: 409;
|
|
593
596
|
input: {
|
|
594
597
|
query: {
|
|
595
598
|
chainId: string | string[];
|
|
@@ -609,14 +612,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
609
612
|
} | {
|
|
610
613
|
output: {
|
|
611
614
|
error: {
|
|
612
|
-
code: "
|
|
615
|
+
code: "version_mismatch";
|
|
613
616
|
details?: readonly Response.error.Detail[] | undefined;
|
|
614
617
|
message: string;
|
|
615
618
|
};
|
|
616
619
|
requestId: string;
|
|
617
620
|
};
|
|
618
621
|
outputFormat: "json";
|
|
619
|
-
status:
|
|
622
|
+
status: 412;
|
|
620
623
|
input: {
|
|
621
624
|
query: {
|
|
622
625
|
chainId: string | string[];
|
|
@@ -636,14 +639,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
636
639
|
} | {
|
|
637
640
|
output: {
|
|
638
641
|
error: {
|
|
639
|
-
code: "
|
|
642
|
+
code: "upstream_error";
|
|
640
643
|
details?: readonly Response.error.Detail[] | undefined;
|
|
641
644
|
message: string;
|
|
642
645
|
};
|
|
643
646
|
requestId: string;
|
|
644
647
|
};
|
|
645
648
|
outputFormat: "json";
|
|
646
|
-
status:
|
|
649
|
+
status: 502;
|
|
647
650
|
input: {
|
|
648
651
|
query: {
|
|
649
652
|
chainId: string | string[];
|
|
@@ -662,15 +665,19 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
662
665
|
};
|
|
663
666
|
} | {
|
|
664
667
|
output: {
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
668
|
+
data: {
|
|
669
|
+
address: `0x${string}`;
|
|
670
|
+
currency: string;
|
|
671
|
+
decimals: number;
|
|
672
|
+
logoUri?: string | undefined;
|
|
673
|
+
name: string;
|
|
674
|
+
symbol: string;
|
|
675
|
+
id: `0x${string}`;
|
|
676
|
+
}[];
|
|
677
|
+
version: string;
|
|
671
678
|
};
|
|
672
679
|
outputFormat: "json";
|
|
673
|
-
status:
|
|
680
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
674
681
|
input: {
|
|
675
682
|
query: {
|
|
676
683
|
chainId: string | string[];
|
|
@@ -689,19 +696,15 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
689
696
|
};
|
|
690
697
|
} | {
|
|
691
698
|
output: {
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
symbol: string;
|
|
699
|
-
id: `0x${string}`;
|
|
700
|
-
}[];
|
|
701
|
-
version: string;
|
|
699
|
+
error: {
|
|
700
|
+
code: string;
|
|
701
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
702
|
+
message: string;
|
|
703
|
+
};
|
|
704
|
+
requestId: string;
|
|
702
705
|
};
|
|
703
706
|
outputFormat: "json";
|
|
704
|
-
status:
|
|
707
|
+
status: 400 | 413 | 415;
|
|
705
708
|
input: {
|
|
706
709
|
query: {
|
|
707
710
|
chainId: string | string[];
|
|
@@ -725,14 +728,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
725
728
|
$patch: {
|
|
726
729
|
output: {
|
|
727
730
|
error: {
|
|
728
|
-
code: "
|
|
731
|
+
code: "verified_token_not_found";
|
|
729
732
|
details?: readonly Response.error.Detail[] | undefined;
|
|
730
733
|
message: string;
|
|
731
734
|
};
|
|
732
735
|
requestId: string;
|
|
733
736
|
};
|
|
734
737
|
outputFormat: "json";
|
|
735
|
-
status:
|
|
738
|
+
status: 404;
|
|
736
739
|
input: {
|
|
737
740
|
param: {
|
|
738
741
|
address: `0x${string}`;
|
|
@@ -753,14 +756,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
753
756
|
} | {
|
|
754
757
|
output: {
|
|
755
758
|
error: {
|
|
756
|
-
code: "
|
|
759
|
+
code: "duplicate_address";
|
|
757
760
|
details?: readonly Response.error.Detail[] | undefined;
|
|
758
761
|
message: string;
|
|
759
762
|
};
|
|
760
763
|
requestId: string;
|
|
761
764
|
};
|
|
762
765
|
outputFormat: "json";
|
|
763
|
-
status:
|
|
766
|
+
status: 409;
|
|
764
767
|
input: {
|
|
765
768
|
param: {
|
|
766
769
|
address: `0x${string}`;
|
|
@@ -780,19 +783,15 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
780
783
|
};
|
|
781
784
|
} | {
|
|
782
785
|
output: {
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
logoUri?: string | undefined;
|
|
788
|
-
name: string;
|
|
789
|
-
symbol: string;
|
|
790
|
-
id: `0x${string}`;
|
|
786
|
+
error: {
|
|
787
|
+
code: "duplicate_symbol";
|
|
788
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
789
|
+
message: string;
|
|
791
790
|
};
|
|
792
|
-
|
|
791
|
+
requestId: string;
|
|
793
792
|
};
|
|
794
793
|
outputFormat: "json";
|
|
795
|
-
status:
|
|
794
|
+
status: 409;
|
|
796
795
|
input: {
|
|
797
796
|
param: {
|
|
798
797
|
address: `0x${string}`;
|
|
@@ -813,14 +812,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
813
812
|
} | {
|
|
814
813
|
output: {
|
|
815
814
|
error: {
|
|
816
|
-
code:
|
|
815
|
+
code: "version_mismatch";
|
|
817
816
|
details?: readonly Response.error.Detail[] | undefined;
|
|
818
817
|
message: string;
|
|
819
818
|
};
|
|
820
819
|
requestId: string;
|
|
821
820
|
};
|
|
822
821
|
outputFormat: "json";
|
|
823
|
-
status:
|
|
822
|
+
status: 412;
|
|
824
823
|
input: {
|
|
825
824
|
param: {
|
|
826
825
|
address: `0x${string}`;
|
|
@@ -841,14 +840,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
841
840
|
} | {
|
|
842
841
|
output: {
|
|
843
842
|
error: {
|
|
844
|
-
code: "
|
|
843
|
+
code: "upstream_error";
|
|
845
844
|
details?: readonly Response.error.Detail[] | undefined;
|
|
846
845
|
message: string;
|
|
847
846
|
};
|
|
848
847
|
requestId: string;
|
|
849
848
|
};
|
|
850
849
|
outputFormat: "json";
|
|
851
|
-
status:
|
|
850
|
+
status: 502;
|
|
852
851
|
input: {
|
|
853
852
|
param: {
|
|
854
853
|
address: `0x${string}`;
|
|
@@ -868,15 +867,19 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
868
867
|
};
|
|
869
868
|
} | {
|
|
870
869
|
output: {
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
870
|
+
data: {
|
|
871
|
+
address: `0x${string}`;
|
|
872
|
+
currency: string;
|
|
873
|
+
decimals: number;
|
|
874
|
+
logoUri?: string | undefined;
|
|
875
|
+
name: string;
|
|
876
|
+
symbol: string;
|
|
877
|
+
id: `0x${string}`;
|
|
875
878
|
};
|
|
876
|
-
|
|
879
|
+
version: string;
|
|
877
880
|
};
|
|
878
881
|
outputFormat: "json";
|
|
879
|
-
status:
|
|
882
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
880
883
|
input: {
|
|
881
884
|
param: {
|
|
882
885
|
address: `0x${string}`;
|
|
@@ -897,14 +900,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
897
900
|
} | {
|
|
898
901
|
output: {
|
|
899
902
|
error: {
|
|
900
|
-
code:
|
|
903
|
+
code: string;
|
|
901
904
|
details?: readonly Response.error.Detail[] | undefined;
|
|
902
905
|
message: string;
|
|
903
906
|
};
|
|
904
907
|
requestId: string;
|
|
905
908
|
};
|
|
906
909
|
outputFormat: "json";
|
|
907
|
-
status:
|
|
910
|
+
status: 400 | 413 | 415;
|
|
908
911
|
input: {
|
|
909
912
|
param: {
|
|
910
913
|
address: `0x${string}`;
|
|
@@ -929,14 +932,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
929
932
|
$delete: {
|
|
930
933
|
output: {
|
|
931
934
|
error: {
|
|
932
|
-
code: "
|
|
935
|
+
code: "verified_token_not_found";
|
|
933
936
|
details?: readonly Response.error.Detail[] | undefined;
|
|
934
937
|
message: string;
|
|
935
938
|
};
|
|
936
939
|
requestId: string;
|
|
937
940
|
};
|
|
938
941
|
outputFormat: "json";
|
|
939
|
-
status:
|
|
942
|
+
status: 404;
|
|
940
943
|
input: {
|
|
941
944
|
param: {
|
|
942
945
|
address: `0x${string}`;
|
|
@@ -949,14 +952,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
949
952
|
} | {
|
|
950
953
|
output: {
|
|
951
954
|
error: {
|
|
952
|
-
code: "
|
|
955
|
+
code: "duplicate_address";
|
|
953
956
|
details?: readonly Response.error.Detail[] | undefined;
|
|
954
957
|
message: string;
|
|
955
958
|
};
|
|
956
959
|
requestId: string;
|
|
957
960
|
};
|
|
958
961
|
outputFormat: "json";
|
|
959
|
-
status:
|
|
962
|
+
status: 409;
|
|
960
963
|
input: {
|
|
961
964
|
param: {
|
|
962
965
|
address: `0x${string}`;
|
|
@@ -969,14 +972,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
969
972
|
} | {
|
|
970
973
|
output: {
|
|
971
974
|
error: {
|
|
972
|
-
code:
|
|
975
|
+
code: "duplicate_symbol";
|
|
973
976
|
details?: readonly Response.error.Detail[] | undefined;
|
|
974
977
|
message: string;
|
|
975
978
|
};
|
|
976
979
|
requestId: string;
|
|
977
980
|
};
|
|
978
981
|
outputFormat: "json";
|
|
979
|
-
status:
|
|
982
|
+
status: 409;
|
|
980
983
|
input: {
|
|
981
984
|
param: {
|
|
982
985
|
address: `0x${string}`;
|
|
@@ -989,14 +992,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
989
992
|
} | {
|
|
990
993
|
output: {
|
|
991
994
|
error: {
|
|
992
|
-
code: "
|
|
995
|
+
code: "version_mismatch";
|
|
993
996
|
details?: readonly Response.error.Detail[] | undefined;
|
|
994
997
|
message: string;
|
|
995
998
|
};
|
|
996
999
|
requestId: string;
|
|
997
1000
|
};
|
|
998
1001
|
outputFormat: "json";
|
|
999
|
-
status:
|
|
1002
|
+
status: 412;
|
|
1000
1003
|
input: {
|
|
1001
1004
|
param: {
|
|
1002
1005
|
address: `0x${string}`;
|
|
@@ -1009,14 +1012,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1009
1012
|
} | {
|
|
1010
1013
|
output: {
|
|
1011
1014
|
error: {
|
|
1012
|
-
code: "
|
|
1015
|
+
code: "upstream_error";
|
|
1013
1016
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1014
1017
|
message: string;
|
|
1015
1018
|
};
|
|
1016
1019
|
requestId: string;
|
|
1017
1020
|
};
|
|
1018
1021
|
outputFormat: "json";
|
|
1019
|
-
status:
|
|
1022
|
+
status: 502;
|
|
1020
1023
|
input: {
|
|
1021
1024
|
param: {
|
|
1022
1025
|
address: `0x${string}`;
|
|
@@ -1028,15 +1031,10 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1028
1031
|
};
|
|
1029
1032
|
} | {
|
|
1030
1033
|
output: {
|
|
1031
|
-
|
|
1032
|
-
code: "version_mismatch";
|
|
1033
|
-
details?: readonly Response.error.Detail[] | undefined;
|
|
1034
|
-
message: string;
|
|
1035
|
-
};
|
|
1036
|
-
requestId: string;
|
|
1034
|
+
version: string;
|
|
1037
1035
|
};
|
|
1038
1036
|
outputFormat: "json";
|
|
1039
|
-
status:
|
|
1037
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
1040
1038
|
input: {
|
|
1041
1039
|
param: {
|
|
1042
1040
|
address: `0x${string}`;
|
|
@@ -1048,10 +1046,15 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1048
1046
|
};
|
|
1049
1047
|
} | {
|
|
1050
1048
|
output: {
|
|
1051
|
-
|
|
1049
|
+
error: {
|
|
1050
|
+
code: string;
|
|
1051
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
1052
|
+
message: string;
|
|
1053
|
+
};
|
|
1054
|
+
requestId: string;
|
|
1052
1055
|
};
|
|
1053
1056
|
outputFormat: "json";
|
|
1054
|
-
status:
|
|
1057
|
+
status: 400 | 413 | 415;
|
|
1055
1058
|
input: {
|
|
1056
1059
|
param: {
|
|
1057
1060
|
address: `0x${string}`;
|
|
@@ -1125,14 +1128,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1125
1128
|
} | {
|
|
1126
1129
|
output: {
|
|
1127
1130
|
error: {
|
|
1128
|
-
code: "
|
|
1131
|
+
code: "assets_not_enabled";
|
|
1129
1132
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1130
1133
|
message: string;
|
|
1131
1134
|
};
|
|
1132
1135
|
requestId: string;
|
|
1133
1136
|
};
|
|
1134
1137
|
outputFormat: "json";
|
|
1135
|
-
status:
|
|
1138
|
+
status: 404;
|
|
1136
1139
|
input: {
|
|
1137
1140
|
param: {
|
|
1138
1141
|
address: `0x${string}`;
|
|
@@ -1145,14 +1148,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1145
1148
|
} | {
|
|
1146
1149
|
output: {
|
|
1147
1150
|
error: {
|
|
1148
|
-
code: "
|
|
1151
|
+
code: "payload_too_large";
|
|
1149
1152
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1150
1153
|
message: string;
|
|
1151
1154
|
};
|
|
1152
1155
|
requestId: string;
|
|
1153
1156
|
};
|
|
1154
1157
|
outputFormat: "json";
|
|
1155
|
-
status:
|
|
1158
|
+
status: 413;
|
|
1156
1159
|
input: {
|
|
1157
1160
|
param: {
|
|
1158
1161
|
address: `0x${string}`;
|
|
@@ -1225,11 +1228,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1225
1228
|
orgName: string | null;
|
|
1226
1229
|
reviewedBy: string | null;
|
|
1227
1230
|
}[];
|
|
1231
|
+
nextCursor: string | null;
|
|
1228
1232
|
};
|
|
1229
1233
|
outputFormat: "json";
|
|
1230
1234
|
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
1231
1235
|
input: {
|
|
1232
1236
|
query?: {
|
|
1237
|
+
cursor?: string | string[];
|
|
1238
|
+
limit?: string | string[];
|
|
1233
1239
|
status?: string | string[];
|
|
1234
1240
|
} | undefined;
|
|
1235
1241
|
};
|
|
@@ -1238,22 +1244,6 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1238
1244
|
} & {
|
|
1239
1245
|
"/requests/:requestId/approve": {
|
|
1240
1246
|
$post: {
|
|
1241
|
-
output: {
|
|
1242
|
-
error: {
|
|
1243
|
-
code: "upstream_error";
|
|
1244
|
-
details?: readonly Response.error.Detail[] | undefined;
|
|
1245
|
-
message: string;
|
|
1246
|
-
};
|
|
1247
|
-
requestId: string;
|
|
1248
|
-
};
|
|
1249
|
-
outputFormat: "json";
|
|
1250
|
-
status: 502;
|
|
1251
|
-
input: {
|
|
1252
|
-
param: {
|
|
1253
|
-
requestId: string;
|
|
1254
|
-
};
|
|
1255
|
-
};
|
|
1256
|
-
} | {
|
|
1257
1247
|
output: {
|
|
1258
1248
|
error: {
|
|
1259
1249
|
code: "verified_token_not_found";
|
|
@@ -1272,14 +1262,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1272
1262
|
} | {
|
|
1273
1263
|
output: {
|
|
1274
1264
|
error: {
|
|
1275
|
-
code: "
|
|
1265
|
+
code: "verified_token_request_not_found";
|
|
1276
1266
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1277
1267
|
message: string;
|
|
1278
1268
|
};
|
|
1279
1269
|
requestId: string;
|
|
1280
1270
|
};
|
|
1281
1271
|
outputFormat: "json";
|
|
1282
|
-
status:
|
|
1272
|
+
status: 404;
|
|
1283
1273
|
input: {
|
|
1284
1274
|
param: {
|
|
1285
1275
|
requestId: string;
|
|
@@ -1288,7 +1278,7 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1288
1278
|
} | {
|
|
1289
1279
|
output: {
|
|
1290
1280
|
error: {
|
|
1291
|
-
code: "
|
|
1281
|
+
code: "assets_not_enabled";
|
|
1292
1282
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1293
1283
|
message: string;
|
|
1294
1284
|
};
|
|
@@ -1304,14 +1294,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1304
1294
|
} | {
|
|
1305
1295
|
output: {
|
|
1306
1296
|
error: {
|
|
1307
|
-
code: "
|
|
1297
|
+
code: "request_not_pending";
|
|
1308
1298
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1309
1299
|
message: string;
|
|
1310
1300
|
};
|
|
1311
1301
|
requestId: string;
|
|
1312
1302
|
};
|
|
1313
1303
|
outputFormat: "json";
|
|
1314
|
-
status:
|
|
1304
|
+
status: 409;
|
|
1315
1305
|
input: {
|
|
1316
1306
|
param: {
|
|
1317
1307
|
requestId: string;
|
|
@@ -1320,14 +1310,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1320
1310
|
} | {
|
|
1321
1311
|
output: {
|
|
1322
1312
|
error: {
|
|
1323
|
-
code:
|
|
1313
|
+
code: "duplicate_address";
|
|
1324
1314
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1325
1315
|
message: string;
|
|
1326
1316
|
};
|
|
1327
1317
|
requestId: string;
|
|
1328
1318
|
};
|
|
1329
1319
|
outputFormat: "json";
|
|
1330
|
-
status:
|
|
1320
|
+
status: 409;
|
|
1331
1321
|
input: {
|
|
1332
1322
|
param: {
|
|
1333
1323
|
requestId: string;
|
|
@@ -1336,7 +1326,7 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1336
1326
|
} | {
|
|
1337
1327
|
output: {
|
|
1338
1328
|
error: {
|
|
1339
|
-
code: "
|
|
1329
|
+
code: "duplicate_symbol";
|
|
1340
1330
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1341
1331
|
message: string;
|
|
1342
1332
|
};
|
|
@@ -1352,14 +1342,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1352
1342
|
} | {
|
|
1353
1343
|
output: {
|
|
1354
1344
|
error: {
|
|
1355
|
-
code: "
|
|
1345
|
+
code: "version_mismatch";
|
|
1356
1346
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1357
1347
|
message: string;
|
|
1358
1348
|
};
|
|
1359
1349
|
requestId: string;
|
|
1360
1350
|
};
|
|
1361
1351
|
outputFormat: "json";
|
|
1362
|
-
status:
|
|
1352
|
+
status: 412;
|
|
1363
1353
|
input: {
|
|
1364
1354
|
param: {
|
|
1365
1355
|
requestId: string;
|
|
@@ -1368,14 +1358,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1368
1358
|
} | {
|
|
1369
1359
|
output: {
|
|
1370
1360
|
error: {
|
|
1371
|
-
code: "
|
|
1361
|
+
code: "upstream_error";
|
|
1372
1362
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1373
1363
|
message: string;
|
|
1374
1364
|
};
|
|
1375
1365
|
requestId: string;
|
|
1376
1366
|
};
|
|
1377
1367
|
outputFormat: "json";
|
|
1378
|
-
status:
|
|
1368
|
+
status: 502;
|
|
1379
1369
|
input: {
|
|
1380
1370
|
param: {
|
|
1381
1371
|
requestId: string;
|
|
@@ -1412,31 +1402,27 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1412
1402
|
requestId: string;
|
|
1413
1403
|
};
|
|
1414
1404
|
};
|
|
1415
|
-
}
|
|
1416
|
-
};
|
|
1417
|
-
} & {
|
|
1418
|
-
"/requests/:requestId/deny": {
|
|
1419
|
-
$post: {
|
|
1405
|
+
} | {
|
|
1420
1406
|
output: {
|
|
1421
1407
|
error: {
|
|
1422
|
-
code:
|
|
1408
|
+
code: string;
|
|
1423
1409
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1424
1410
|
message: string;
|
|
1425
1411
|
};
|
|
1426
1412
|
requestId: string;
|
|
1427
1413
|
};
|
|
1428
1414
|
outputFormat: "json";
|
|
1429
|
-
status:
|
|
1415
|
+
status: 400 | 413 | 415;
|
|
1430
1416
|
input: {
|
|
1431
1417
|
param: {
|
|
1432
1418
|
requestId: string;
|
|
1433
1419
|
};
|
|
1434
|
-
} & {
|
|
1435
|
-
json: {
|
|
1436
|
-
reviewNote?: string | undefined;
|
|
1437
|
-
};
|
|
1438
1420
|
};
|
|
1439
|
-
}
|
|
1421
|
+
};
|
|
1422
|
+
};
|
|
1423
|
+
} & {
|
|
1424
|
+
"/requests/:requestId/deny": {
|
|
1425
|
+
$post: {
|
|
1440
1426
|
output: {
|
|
1441
1427
|
error: {
|
|
1442
1428
|
code: "verified_token_not_found";
|
|
@@ -1459,14 +1445,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1459
1445
|
} | {
|
|
1460
1446
|
output: {
|
|
1461
1447
|
error: {
|
|
1462
|
-
code: "
|
|
1448
|
+
code: "verified_token_request_not_found";
|
|
1463
1449
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1464
1450
|
message: string;
|
|
1465
1451
|
};
|
|
1466
1452
|
requestId: string;
|
|
1467
1453
|
};
|
|
1468
1454
|
outputFormat: "json";
|
|
1469
|
-
status:
|
|
1455
|
+
status: 404;
|
|
1470
1456
|
input: {
|
|
1471
1457
|
param: {
|
|
1472
1458
|
requestId: string;
|
|
@@ -1479,14 +1465,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1479
1465
|
} | {
|
|
1480
1466
|
output: {
|
|
1481
1467
|
error: {
|
|
1482
|
-
code: "
|
|
1468
|
+
code: "request_not_pending";
|
|
1483
1469
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1484
1470
|
message: string;
|
|
1485
1471
|
};
|
|
1486
1472
|
requestId: string;
|
|
1487
1473
|
};
|
|
1488
1474
|
outputFormat: "json";
|
|
1489
|
-
status:
|
|
1475
|
+
status: 409;
|
|
1490
1476
|
input: {
|
|
1491
1477
|
param: {
|
|
1492
1478
|
requestId: string;
|
|
@@ -1499,14 +1485,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1499
1485
|
} | {
|
|
1500
1486
|
output: {
|
|
1501
1487
|
error: {
|
|
1502
|
-
code:
|
|
1488
|
+
code: "duplicate_address";
|
|
1503
1489
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1504
1490
|
message: string;
|
|
1505
1491
|
};
|
|
1506
1492
|
requestId: string;
|
|
1507
1493
|
};
|
|
1508
1494
|
outputFormat: "json";
|
|
1509
|
-
status:
|
|
1495
|
+
status: 409;
|
|
1510
1496
|
input: {
|
|
1511
1497
|
param: {
|
|
1512
1498
|
requestId: string;
|
|
@@ -1519,7 +1505,7 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1519
1505
|
} | {
|
|
1520
1506
|
output: {
|
|
1521
1507
|
error: {
|
|
1522
|
-
code: "
|
|
1508
|
+
code: "duplicate_symbol";
|
|
1523
1509
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1524
1510
|
message: string;
|
|
1525
1511
|
};
|
|
@@ -1539,14 +1525,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1539
1525
|
} | {
|
|
1540
1526
|
output: {
|
|
1541
1527
|
error: {
|
|
1542
|
-
code: "
|
|
1528
|
+
code: "version_mismatch";
|
|
1543
1529
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1544
1530
|
message: string;
|
|
1545
1531
|
};
|
|
1546
1532
|
requestId: string;
|
|
1547
1533
|
};
|
|
1548
1534
|
outputFormat: "json";
|
|
1549
|
-
status:
|
|
1535
|
+
status: 412;
|
|
1550
1536
|
input: {
|
|
1551
1537
|
param: {
|
|
1552
1538
|
requestId: string;
|
|
@@ -1559,14 +1545,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1559
1545
|
} | {
|
|
1560
1546
|
output: {
|
|
1561
1547
|
error: {
|
|
1562
|
-
code: "
|
|
1548
|
+
code: "upstream_error";
|
|
1563
1549
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1564
1550
|
message: string;
|
|
1565
1551
|
};
|
|
1566
1552
|
requestId: string;
|
|
1567
1553
|
};
|
|
1568
1554
|
outputFormat: "json";
|
|
1569
|
-
status:
|
|
1555
|
+
status: 502;
|
|
1570
1556
|
input: {
|
|
1571
1557
|
param: {
|
|
1572
1558
|
requestId: string;
|
|
@@ -1611,6 +1597,26 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1611
1597
|
reviewNote?: string | undefined;
|
|
1612
1598
|
};
|
|
1613
1599
|
};
|
|
1600
|
+
} | {
|
|
1601
|
+
output: {
|
|
1602
|
+
error: {
|
|
1603
|
+
code: string;
|
|
1604
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
1605
|
+
message: string;
|
|
1606
|
+
};
|
|
1607
|
+
requestId: string;
|
|
1608
|
+
};
|
|
1609
|
+
outputFormat: "json";
|
|
1610
|
+
status: 400 | 413 | 415;
|
|
1611
|
+
input: {
|
|
1612
|
+
param: {
|
|
1613
|
+
requestId: string;
|
|
1614
|
+
};
|
|
1615
|
+
} & {
|
|
1616
|
+
json: {
|
|
1617
|
+
reviewNote?: string | undefined;
|
|
1618
|
+
};
|
|
1619
|
+
};
|
|
1614
1620
|
};
|
|
1615
1621
|
};
|
|
1616
1622
|
}, "/", "/requests/:requestId/deny">;
|