tapimo 0.3.0 → 0.4.0
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/README.md +5 -5
- package/dist/App.d.ts +31 -9
- package/dist/App.d.ts.map +1 -1
- package/dist/App.js +3 -3
- package/dist/App.js.map +1 -1
- package/dist/admin/App.d.ts +116 -116
- package/dist/apps/data/App.d.ts +30 -5
- package/dist/apps/data/App.d.ts.map +1 -1
- package/dist/apps/data/App.js +1 -1
- package/dist/apps/data/App.js.map +1 -1
- package/dist/apps/data/FundingRouteProviders.d.ts +54 -0
- package/dist/apps/data/FundingRouteProviders.d.ts.map +1 -0
- package/dist/apps/data/FundingRouteProviders.js +355 -0
- package/dist/apps/data/FundingRouteProviders.js.map +1 -0
- package/dist/apps/data/index.d.ts +1 -0
- package/dist/apps/data/index.d.ts.map +1 -1
- package/dist/apps/data/index.js +1 -0
- package/dist/apps/data/index.js.map +1 -1
- package/dist/apps/data/routes/funding.d.ts +79 -1
- package/dist/apps/data/routes/funding.d.ts.map +1 -1
- package/dist/apps/data/routes/funding.js +68 -8
- package/dist/apps/data/routes/funding.js.map +1 -1
- package/dist/apps/data/routes/indexer.d.ts +5 -5
- package/dist/apps/docs/App.d.ts +1 -1
- package/dist/apps/docs/App.js +1 -1
- package/dist/apps/index.d.ts +2 -2
- package/dist/apps/index.d.ts.map +1 -1
- package/dist/apps/index.js +2 -2
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/{platform → management}/App.d.ts +11 -11
- package/dist/apps/{platform → management}/App.d.ts.map +1 -1
- package/dist/apps/{platform → management}/App.js +7 -7
- package/dist/apps/management/App.js.map +1 -0
- package/dist/apps/management/Billing.d.ts.map +1 -0
- package/dist/apps/management/Billing.js.map +1 -0
- package/dist/apps/management/index.d.ts +3 -0
- package/dist/apps/management/index.d.ts.map +1 -0
- package/dist/apps/management/index.js +3 -0
- package/dist/apps/management/index.js.map +1 -0
- package/dist/apps/management/routes/api-keys.d.ts.map +1 -0
- package/dist/apps/{platform → management}/routes/api-keys.js +1 -1
- package/dist/apps/management/routes/api-keys.js.map +1 -0
- package/dist/apps/{platform → management}/routes/billing.d.ts.map +1 -1
- package/dist/apps/management/routes/billing.js.map +1 -0
- package/dist/apps/{platform → management}/routes/invitations.d.ts +1 -1
- package/dist/apps/management/routes/invitations.d.ts.map +1 -0
- package/dist/apps/{platform → management}/routes/invitations.js +1 -1
- package/dist/apps/management/routes/invitations.js.map +1 -0
- package/dist/apps/management/routes/me.d.ts.map +1 -0
- package/dist/apps/management/routes/me.js.map +1 -0
- package/dist/apps/management/routes/members.d.ts.map +1 -0
- package/dist/apps/management/routes/members.js.map +1 -0
- package/dist/apps/management/routes/orgs.d.ts.map +1 -0
- package/dist/apps/management/routes/orgs.js.map +1 -0
- package/dist/apps/{platform → management}/routes/projects.d.ts.map +1 -1
- package/dist/apps/management/routes/projects.js.map +1 -0
- package/dist/apps/management/routes/scopes.d.ts.map +1 -0
- package/dist/apps/management/routes/scopes.js.map +1 -0
- package/dist/apps/management/routes/usage.d.ts.map +1 -0
- package/dist/apps/management/routes/usage.js.map +1 -0
- package/dist/apps/mcp.js +1 -1
- package/dist/apps/relay/App.js +1 -1
- package/dist/apps/relay/App.js.map +1 -1
- package/dist/internal/Auth.js +1 -1
- package/dist/internal/Auth.js.map +1 -1
- package/dist/internal/EdgeCache.js +1 -1
- package/dist/internal/EdgeCache.js.map +1 -1
- package/dist/internal/FundingRoutes.d.ts +748 -16
- package/dist/internal/FundingRoutes.d.ts.map +1 -1
- package/dist/internal/FundingRoutes.js +166 -31
- package/dist/internal/FundingRoutes.js.map +1 -1
- package/package.json +5 -5
- package/src/App.ts +10 -10
- package/src/Client.test-d.ts +4 -4
- package/src/apps/composition.test.ts +26 -13
- package/src/apps/data/App.ts +3 -1
- package/src/apps/data/FundingRouteProviders.test.ts +281 -0
- package/src/apps/data/FundingRouteProviders.ts +459 -0
- package/src/apps/data/index.ts +1 -0
- package/src/apps/data/routes/funding.test.ts +102 -2
- package/src/apps/data/routes/funding.ts +122 -8
- package/src/apps/docs/App.ts +1 -1
- package/src/apps/index.ts +2 -2
- package/src/apps/{platform → management}/App.ts +14 -14
- package/src/apps/{platform → management}/index.ts +1 -1
- package/src/apps/{platform → management}/routes/api-keys.ts +1 -1
- package/src/apps/{platform → management}/routes/invitations.ts +1 -1
- package/src/apps/mcp.test.ts +1 -1
- package/src/apps/mcp.ts +1 -1
- package/src/apps/relay/App.test.ts +1 -1
- package/src/apps/relay/App.ts +1 -1
- package/src/internal/Auth.ts +1 -1
- package/src/internal/EdgeCache.ts +1 -1
- package/src/internal/FundingRoutes.test.ts +213 -0
- package/src/internal/FundingRoutes.ts +347 -32
- package/dist/apps/platform/App.js.map +0 -1
- package/dist/apps/platform/Billing.d.ts.map +0 -1
- package/dist/apps/platform/Billing.js.map +0 -1
- package/dist/apps/platform/index.d.ts +0 -3
- package/dist/apps/platform/index.d.ts.map +0 -1
- package/dist/apps/platform/index.js +0 -3
- package/dist/apps/platform/index.js.map +0 -1
- package/dist/apps/platform/routes/api-keys.d.ts.map +0 -1
- package/dist/apps/platform/routes/api-keys.js.map +0 -1
- package/dist/apps/platform/routes/billing.js.map +0 -1
- package/dist/apps/platform/routes/invitations.d.ts.map +0 -1
- package/dist/apps/platform/routes/invitations.js.map +0 -1
- package/dist/apps/platform/routes/me.d.ts.map +0 -1
- package/dist/apps/platform/routes/me.js.map +0 -1
- package/dist/apps/platform/routes/members.d.ts.map +0 -1
- package/dist/apps/platform/routes/members.js.map +0 -1
- package/dist/apps/platform/routes/orgs.d.ts.map +0 -1
- package/dist/apps/platform/routes/orgs.js.map +0 -1
- package/dist/apps/platform/routes/projects.js.map +0 -1
- package/dist/apps/platform/routes/scopes.d.ts.map +0 -1
- package/dist/apps/platform/routes/scopes.js.map +0 -1
- package/dist/apps/platform/routes/usage.d.ts.map +0 -1
- package/dist/apps/platform/routes/usage.js.map +0 -1
- /package/dist/apps/{platform → management}/Billing.d.ts +0 -0
- /package/dist/apps/{platform → management}/Billing.js +0 -0
- /package/dist/apps/{platform → management}/routes/api-keys.d.ts +0 -0
- /package/dist/apps/{platform → management}/routes/billing.d.ts +0 -0
- /package/dist/apps/{platform → management}/routes/billing.js +0 -0
- /package/dist/apps/{platform → management}/routes/me.d.ts +0 -0
- /package/dist/apps/{platform → management}/routes/me.js +0 -0
- /package/dist/apps/{platform → management}/routes/members.d.ts +0 -0
- /package/dist/apps/{platform → management}/routes/members.js +0 -0
- /package/dist/apps/{platform → management}/routes/orgs.d.ts +0 -0
- /package/dist/apps/{platform → management}/routes/orgs.js +0 -0
- /package/dist/apps/{platform → management}/routes/projects.d.ts +0 -0
- /package/dist/apps/{platform → management}/routes/projects.js +0 -0
- /package/dist/apps/{platform → management}/routes/scopes.d.ts +0 -0
- /package/dist/apps/{platform → management}/routes/scopes.js +0 -0
- /package/dist/apps/{platform → management}/routes/usage.d.ts +0 -0
- /package/dist/apps/{platform → management}/routes/usage.js +0 -0
- /package/src/apps/{platform → management}/Billing.test.ts +0 -0
- /package/src/apps/{platform → management}/Billing.ts +0 -0
- /package/src/apps/{platform → management}/routes/api-keys.test.ts +0 -0
- /package/src/apps/{platform → management}/routes/billing.test.ts +0 -0
- /package/src/apps/{platform → management}/routes/billing.ts +0 -0
- /package/src/apps/{platform → management}/routes/invitations.test.ts +0 -0
- /package/src/apps/{platform → management}/routes/me.test.ts +0 -0
- /package/src/apps/{platform → management}/routes/me.ts +0 -0
- /package/src/apps/{platform → management}/routes/members.test.ts +0 -0
- /package/src/apps/{platform → management}/routes/members.ts +0 -0
- /package/src/apps/{platform → management}/routes/orgs.test.ts +0 -0
- /package/src/apps/{platform → management}/routes/orgs.ts +0 -0
- /package/src/apps/{platform → management}/routes/projects.test.ts +0 -0
- /package/src/apps/{platform → management}/routes/projects.ts +0 -0
- /package/src/apps/{platform → management}/routes/scopes.test.ts +0 -0
- /package/src/apps/{platform → management}/routes/scopes.ts +0 -0
- /package/src/apps/{platform → management}/routes/usage.test.ts +0 -0
- /package/src/apps/{platform → management}/routes/usage.ts +0 -0
package/dist/admin/App.d.ts
CHANGED
|
@@ -261,14 +261,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
261
261
|
$post: {
|
|
262
262
|
output: {
|
|
263
263
|
error: {
|
|
264
|
-
code: "
|
|
264
|
+
code: "upstream_error";
|
|
265
265
|
details?: readonly Response.error.Detail[] | undefined;
|
|
266
266
|
message: string;
|
|
267
267
|
};
|
|
268
268
|
requestId: string;
|
|
269
269
|
};
|
|
270
270
|
outputFormat: "json";
|
|
271
|
-
status:
|
|
271
|
+
status: 502;
|
|
272
272
|
input: {
|
|
273
273
|
json: {
|
|
274
274
|
address: `0x${string}`;
|
|
@@ -307,14 +307,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
307
307
|
} | {
|
|
308
308
|
output: {
|
|
309
309
|
error: {
|
|
310
|
-
code: "
|
|
310
|
+
code: "assets_not_enabled";
|
|
311
311
|
details?: readonly Response.error.Detail[] | undefined;
|
|
312
312
|
message: string;
|
|
313
313
|
};
|
|
314
314
|
requestId: string;
|
|
315
315
|
};
|
|
316
316
|
outputFormat: "json";
|
|
317
|
-
status:
|
|
317
|
+
status: 404;
|
|
318
318
|
input: {
|
|
319
319
|
json: {
|
|
320
320
|
address: `0x${string}`;
|
|
@@ -329,15 +329,19 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
329
329
|
};
|
|
330
330
|
} | {
|
|
331
331
|
output: {
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
332
|
+
data: {
|
|
333
|
+
address: `0x${string}`;
|
|
334
|
+
currency: string;
|
|
335
|
+
decimals: number;
|
|
336
|
+
logoUri?: string | undefined;
|
|
337
|
+
name: string;
|
|
338
|
+
symbol: string;
|
|
339
|
+
id: string;
|
|
336
340
|
};
|
|
337
|
-
|
|
341
|
+
version: string;
|
|
338
342
|
};
|
|
339
343
|
outputFormat: "json";
|
|
340
|
-
status:
|
|
344
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
341
345
|
input: {
|
|
342
346
|
json: {
|
|
343
347
|
address: `0x${string}`;
|
|
@@ -353,14 +357,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
353
357
|
} | {
|
|
354
358
|
output: {
|
|
355
359
|
error: {
|
|
356
|
-
code:
|
|
360
|
+
code: string;
|
|
357
361
|
details?: readonly Response.error.Detail[] | undefined;
|
|
358
362
|
message: string;
|
|
359
363
|
};
|
|
360
364
|
requestId: string;
|
|
361
365
|
};
|
|
362
366
|
outputFormat: "json";
|
|
363
|
-
status:
|
|
367
|
+
status: 400 | 413 | 415;
|
|
364
368
|
input: {
|
|
365
369
|
json: {
|
|
366
370
|
address: `0x${string}`;
|
|
@@ -376,14 +380,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
376
380
|
} | {
|
|
377
381
|
output: {
|
|
378
382
|
error: {
|
|
379
|
-
code: "
|
|
383
|
+
code: "duplicate_address";
|
|
380
384
|
details?: readonly Response.error.Detail[] | undefined;
|
|
381
385
|
message: string;
|
|
382
386
|
};
|
|
383
387
|
requestId: string;
|
|
384
388
|
};
|
|
385
389
|
outputFormat: "json";
|
|
386
|
-
status:
|
|
390
|
+
status: 409;
|
|
387
391
|
input: {
|
|
388
392
|
json: {
|
|
389
393
|
address: `0x${string}`;
|
|
@@ -398,19 +402,15 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
398
402
|
};
|
|
399
403
|
} | {
|
|
400
404
|
output: {
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
logoUri?: string | undefined;
|
|
406
|
-
name: string;
|
|
407
|
-
symbol: string;
|
|
408
|
-
id: string;
|
|
405
|
+
error: {
|
|
406
|
+
code: "duplicate_symbol";
|
|
407
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
408
|
+
message: string;
|
|
409
409
|
};
|
|
410
|
-
|
|
410
|
+
requestId: string;
|
|
411
411
|
};
|
|
412
412
|
outputFormat: "json";
|
|
413
|
-
status:
|
|
413
|
+
status: 409;
|
|
414
414
|
input: {
|
|
415
415
|
json: {
|
|
416
416
|
address: `0x${string}`;
|
|
@@ -426,14 +426,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
426
426
|
} | {
|
|
427
427
|
output: {
|
|
428
428
|
error: {
|
|
429
|
-
code:
|
|
429
|
+
code: "version_mismatch";
|
|
430
430
|
details?: readonly Response.error.Detail[] | undefined;
|
|
431
431
|
message: string;
|
|
432
432
|
};
|
|
433
433
|
requestId: string;
|
|
434
434
|
};
|
|
435
435
|
outputFormat: "json";
|
|
436
|
-
status:
|
|
436
|
+
status: 412;
|
|
437
437
|
input: {
|
|
438
438
|
json: {
|
|
439
439
|
address: `0x${string}`;
|
|
@@ -453,14 +453,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
453
453
|
$put: {
|
|
454
454
|
output: {
|
|
455
455
|
error: {
|
|
456
|
-
code: "
|
|
456
|
+
code: "upstream_error";
|
|
457
457
|
details?: readonly Response.error.Detail[] | undefined;
|
|
458
458
|
message: string;
|
|
459
459
|
};
|
|
460
460
|
requestId: string;
|
|
461
461
|
};
|
|
462
462
|
outputFormat: "json";
|
|
463
|
-
status:
|
|
463
|
+
status: 502;
|
|
464
464
|
input: {
|
|
465
465
|
query: {
|
|
466
466
|
chainId: string | string[];
|
|
@@ -480,14 +480,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
480
480
|
} | {
|
|
481
481
|
output: {
|
|
482
482
|
error: {
|
|
483
|
-
code: "
|
|
483
|
+
code: "verified_token_not_found";
|
|
484
484
|
details?: readonly Response.error.Detail[] | undefined;
|
|
485
485
|
message: string;
|
|
486
486
|
};
|
|
487
487
|
requestId: string;
|
|
488
488
|
};
|
|
489
489
|
outputFormat: "json";
|
|
490
|
-
status:
|
|
490
|
+
status: 404;
|
|
491
491
|
input: {
|
|
492
492
|
query: {
|
|
493
493
|
chainId: string | string[];
|
|
@@ -507,14 +507,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
507
507
|
} | {
|
|
508
508
|
output: {
|
|
509
509
|
error: {
|
|
510
|
-
code:
|
|
510
|
+
code: string;
|
|
511
511
|
details?: readonly Response.error.Detail[] | undefined;
|
|
512
512
|
message: string;
|
|
513
513
|
};
|
|
514
514
|
requestId: string;
|
|
515
515
|
};
|
|
516
516
|
outputFormat: "json";
|
|
517
|
-
status:
|
|
517
|
+
status: 400 | 413 | 415;
|
|
518
518
|
input: {
|
|
519
519
|
query: {
|
|
520
520
|
chainId: string | string[];
|
|
@@ -534,14 +534,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
534
534
|
} | {
|
|
535
535
|
output: {
|
|
536
536
|
error: {
|
|
537
|
-
code: "
|
|
537
|
+
code: "duplicate_address";
|
|
538
538
|
details?: readonly Response.error.Detail[] | undefined;
|
|
539
539
|
message: string;
|
|
540
540
|
};
|
|
541
541
|
requestId: string;
|
|
542
542
|
};
|
|
543
543
|
outputFormat: "json";
|
|
544
|
-
status:
|
|
544
|
+
status: 409;
|
|
545
545
|
input: {
|
|
546
546
|
query: {
|
|
547
547
|
chainId: string | string[];
|
|
@@ -561,14 +561,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
561
561
|
} | {
|
|
562
562
|
output: {
|
|
563
563
|
error: {
|
|
564
|
-
code: "
|
|
564
|
+
code: "duplicate_symbol";
|
|
565
565
|
details?: readonly Response.error.Detail[] | undefined;
|
|
566
566
|
message: string;
|
|
567
567
|
};
|
|
568
568
|
requestId: string;
|
|
569
569
|
};
|
|
570
570
|
outputFormat: "json";
|
|
571
|
-
status:
|
|
571
|
+
status: 409;
|
|
572
572
|
input: {
|
|
573
573
|
query: {
|
|
574
574
|
chainId: string | string[];
|
|
@@ -587,19 +587,15 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
587
587
|
};
|
|
588
588
|
} | {
|
|
589
589
|
output: {
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
symbol: string;
|
|
597
|
-
id: string;
|
|
598
|
-
}[];
|
|
599
|
-
version: string;
|
|
590
|
+
error: {
|
|
591
|
+
code: "version_mismatch";
|
|
592
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
593
|
+
message: string;
|
|
594
|
+
};
|
|
595
|
+
requestId: string;
|
|
600
596
|
};
|
|
601
597
|
outputFormat: "json";
|
|
602
|
-
status:
|
|
598
|
+
status: 412;
|
|
603
599
|
input: {
|
|
604
600
|
query: {
|
|
605
601
|
chainId: string | string[];
|
|
@@ -618,15 +614,19 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
618
614
|
};
|
|
619
615
|
} | {
|
|
620
616
|
output: {
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
617
|
+
data: {
|
|
618
|
+
address: `0x${string}`;
|
|
619
|
+
currency: string;
|
|
620
|
+
decimals: number;
|
|
621
|
+
logoUri?: string | undefined;
|
|
622
|
+
name: string;
|
|
623
|
+
symbol: string;
|
|
624
|
+
id: string;
|
|
625
|
+
}[];
|
|
626
|
+
version: string;
|
|
627
627
|
};
|
|
628
628
|
outputFormat: "json";
|
|
629
|
-
status:
|
|
629
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
630
630
|
input: {
|
|
631
631
|
query: {
|
|
632
632
|
chainId: string | string[];
|
|
@@ -650,14 +650,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
650
650
|
$patch: {
|
|
651
651
|
output: {
|
|
652
652
|
error: {
|
|
653
|
-
code: "
|
|
653
|
+
code: "upstream_error";
|
|
654
654
|
details?: readonly Response.error.Detail[] | undefined;
|
|
655
655
|
message: string;
|
|
656
656
|
};
|
|
657
657
|
requestId: string;
|
|
658
658
|
};
|
|
659
659
|
outputFormat: "json";
|
|
660
|
-
status:
|
|
660
|
+
status: 502;
|
|
661
661
|
input: {
|
|
662
662
|
param: {
|
|
663
663
|
address: `0x${string}`;
|
|
@@ -678,14 +678,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
678
678
|
} | {
|
|
679
679
|
output: {
|
|
680
680
|
error: {
|
|
681
|
-
code: "
|
|
681
|
+
code: "verified_token_not_found";
|
|
682
682
|
details?: readonly Response.error.Detail[] | undefined;
|
|
683
683
|
message: string;
|
|
684
684
|
};
|
|
685
685
|
requestId: string;
|
|
686
686
|
};
|
|
687
687
|
outputFormat: "json";
|
|
688
|
-
status:
|
|
688
|
+
status: 404;
|
|
689
689
|
input: {
|
|
690
690
|
param: {
|
|
691
691
|
address: `0x${string}`;
|
|
@@ -705,15 +705,19 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
705
705
|
};
|
|
706
706
|
} | {
|
|
707
707
|
output: {
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
708
|
+
data: {
|
|
709
|
+
address: `0x${string}`;
|
|
710
|
+
currency: string;
|
|
711
|
+
decimals: number;
|
|
712
|
+
logoUri?: string | undefined;
|
|
713
|
+
name: string;
|
|
714
|
+
symbol: string;
|
|
715
|
+
id: string;
|
|
712
716
|
};
|
|
713
|
-
|
|
717
|
+
version: string;
|
|
714
718
|
};
|
|
715
719
|
outputFormat: "json";
|
|
716
|
-
status:
|
|
720
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
717
721
|
input: {
|
|
718
722
|
param: {
|
|
719
723
|
address: `0x${string}`;
|
|
@@ -734,14 +738,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
734
738
|
} | {
|
|
735
739
|
output: {
|
|
736
740
|
error: {
|
|
737
|
-
code:
|
|
741
|
+
code: string;
|
|
738
742
|
details?: readonly Response.error.Detail[] | undefined;
|
|
739
743
|
message: string;
|
|
740
744
|
};
|
|
741
745
|
requestId: string;
|
|
742
746
|
};
|
|
743
747
|
outputFormat: "json";
|
|
744
|
-
status:
|
|
748
|
+
status: 400 | 413 | 415;
|
|
745
749
|
input: {
|
|
746
750
|
param: {
|
|
747
751
|
address: `0x${string}`;
|
|
@@ -762,14 +766,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
762
766
|
} | {
|
|
763
767
|
output: {
|
|
764
768
|
error: {
|
|
765
|
-
code: "
|
|
769
|
+
code: "duplicate_address";
|
|
766
770
|
details?: readonly Response.error.Detail[] | undefined;
|
|
767
771
|
message: string;
|
|
768
772
|
};
|
|
769
773
|
requestId: string;
|
|
770
774
|
};
|
|
771
775
|
outputFormat: "json";
|
|
772
|
-
status:
|
|
776
|
+
status: 409;
|
|
773
777
|
input: {
|
|
774
778
|
param: {
|
|
775
779
|
address: `0x${string}`;
|
|
@@ -789,19 +793,15 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
789
793
|
};
|
|
790
794
|
} | {
|
|
791
795
|
output: {
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
logoUri?: string | undefined;
|
|
797
|
-
name: string;
|
|
798
|
-
symbol: string;
|
|
799
|
-
id: string;
|
|
796
|
+
error: {
|
|
797
|
+
code: "duplicate_symbol";
|
|
798
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
799
|
+
message: string;
|
|
800
800
|
};
|
|
801
|
-
|
|
801
|
+
requestId: string;
|
|
802
802
|
};
|
|
803
803
|
outputFormat: "json";
|
|
804
|
-
status:
|
|
804
|
+
status: 409;
|
|
805
805
|
input: {
|
|
806
806
|
param: {
|
|
807
807
|
address: `0x${string}`;
|
|
@@ -822,14 +822,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
822
822
|
} | {
|
|
823
823
|
output: {
|
|
824
824
|
error: {
|
|
825
|
-
code:
|
|
825
|
+
code: "version_mismatch";
|
|
826
826
|
details?: readonly Response.error.Detail[] | undefined;
|
|
827
827
|
message: string;
|
|
828
828
|
};
|
|
829
829
|
requestId: string;
|
|
830
830
|
};
|
|
831
831
|
outputFormat: "json";
|
|
832
|
-
status:
|
|
832
|
+
status: 412;
|
|
833
833
|
input: {
|
|
834
834
|
param: {
|
|
835
835
|
address: `0x${string}`;
|
|
@@ -854,14 +854,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
854
854
|
$delete: {
|
|
855
855
|
output: {
|
|
856
856
|
error: {
|
|
857
|
-
code: "
|
|
857
|
+
code: "upstream_error";
|
|
858
858
|
details?: readonly Response.error.Detail[] | undefined;
|
|
859
859
|
message: string;
|
|
860
860
|
};
|
|
861
861
|
requestId: string;
|
|
862
862
|
};
|
|
863
863
|
outputFormat: "json";
|
|
864
|
-
status:
|
|
864
|
+
status: 502;
|
|
865
865
|
input: {
|
|
866
866
|
param: {
|
|
867
867
|
address: `0x${string}`;
|
|
@@ -874,14 +874,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
874
874
|
} | {
|
|
875
875
|
output: {
|
|
876
876
|
error: {
|
|
877
|
-
code: "
|
|
877
|
+
code: "verified_token_not_found";
|
|
878
878
|
details?: readonly Response.error.Detail[] | undefined;
|
|
879
879
|
message: string;
|
|
880
880
|
};
|
|
881
881
|
requestId: string;
|
|
882
882
|
};
|
|
883
883
|
outputFormat: "json";
|
|
884
|
-
status:
|
|
884
|
+
status: 404;
|
|
885
885
|
input: {
|
|
886
886
|
param: {
|
|
887
887
|
address: `0x${string}`;
|
|
@@ -894,14 +894,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
894
894
|
} | {
|
|
895
895
|
output: {
|
|
896
896
|
error: {
|
|
897
|
-
code:
|
|
897
|
+
code: string;
|
|
898
898
|
details?: readonly Response.error.Detail[] | undefined;
|
|
899
899
|
message: string;
|
|
900
900
|
};
|
|
901
901
|
requestId: string;
|
|
902
902
|
};
|
|
903
903
|
outputFormat: "json";
|
|
904
|
-
status:
|
|
904
|
+
status: 400 | 413 | 415;
|
|
905
905
|
input: {
|
|
906
906
|
param: {
|
|
907
907
|
address: `0x${string}`;
|
|
@@ -914,14 +914,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
914
914
|
} | {
|
|
915
915
|
output: {
|
|
916
916
|
error: {
|
|
917
|
-
code: "
|
|
917
|
+
code: "duplicate_address";
|
|
918
918
|
details?: readonly Response.error.Detail[] | undefined;
|
|
919
919
|
message: string;
|
|
920
920
|
};
|
|
921
921
|
requestId: string;
|
|
922
922
|
};
|
|
923
923
|
outputFormat: "json";
|
|
924
|
-
status:
|
|
924
|
+
status: 409;
|
|
925
925
|
input: {
|
|
926
926
|
param: {
|
|
927
927
|
address: `0x${string}`;
|
|
@@ -934,14 +934,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
934
934
|
} | {
|
|
935
935
|
output: {
|
|
936
936
|
error: {
|
|
937
|
-
code: "
|
|
937
|
+
code: "duplicate_symbol";
|
|
938
938
|
details?: readonly Response.error.Detail[] | undefined;
|
|
939
939
|
message: string;
|
|
940
940
|
};
|
|
941
941
|
requestId: string;
|
|
942
942
|
};
|
|
943
943
|
outputFormat: "json";
|
|
944
|
-
status:
|
|
944
|
+
status: 409;
|
|
945
945
|
input: {
|
|
946
946
|
param: {
|
|
947
947
|
address: `0x${string}`;
|
|
@@ -953,10 +953,15 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
953
953
|
};
|
|
954
954
|
} | {
|
|
955
955
|
output: {
|
|
956
|
-
|
|
956
|
+
error: {
|
|
957
|
+
code: "version_mismatch";
|
|
958
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
959
|
+
message: string;
|
|
960
|
+
};
|
|
961
|
+
requestId: string;
|
|
957
962
|
};
|
|
958
963
|
outputFormat: "json";
|
|
959
|
-
status:
|
|
964
|
+
status: 412;
|
|
960
965
|
input: {
|
|
961
966
|
param: {
|
|
962
967
|
address: `0x${string}`;
|
|
@@ -968,15 +973,10 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
968
973
|
};
|
|
969
974
|
} | {
|
|
970
975
|
output: {
|
|
971
|
-
|
|
972
|
-
code: string;
|
|
973
|
-
details?: readonly Response.error.Detail[] | undefined;
|
|
974
|
-
message: string;
|
|
975
|
-
};
|
|
976
|
-
requestId: string;
|
|
976
|
+
version: string;
|
|
977
977
|
};
|
|
978
978
|
outputFormat: "json";
|
|
979
|
-
status:
|
|
979
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
980
980
|
input: {
|
|
981
981
|
param: {
|
|
982
982
|
address: `0x${string}`;
|
|
@@ -991,16 +991,9 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
991
991
|
} & {
|
|
992
992
|
"/:address/logo": {
|
|
993
993
|
$get: {
|
|
994
|
-
output:
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
details?: readonly Response.error.Detail[] | undefined;
|
|
998
|
-
message: string;
|
|
999
|
-
};
|
|
1000
|
-
requestId: string;
|
|
1001
|
-
};
|
|
1002
|
-
outputFormat: "json";
|
|
1003
|
-
status: 404;
|
|
994
|
+
output: ArrayBuffer;
|
|
995
|
+
outputFormat: "body";
|
|
996
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
1004
997
|
input: {
|
|
1005
998
|
param: {
|
|
1006
999
|
address: `0x${string}`;
|
|
@@ -1011,9 +1004,16 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
1011
1004
|
};
|
|
1012
1005
|
};
|
|
1013
1006
|
} | {
|
|
1014
|
-
output:
|
|
1015
|
-
|
|
1016
|
-
|
|
1007
|
+
output: {
|
|
1008
|
+
error: {
|
|
1009
|
+
code: "logo_not_found";
|
|
1010
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
1011
|
+
message: string;
|
|
1012
|
+
};
|
|
1013
|
+
requestId: string;
|
|
1014
|
+
};
|
|
1015
|
+
outputFormat: "json";
|
|
1016
|
+
status: 404;
|
|
1017
1017
|
input: {
|
|
1018
1018
|
param: {
|
|
1019
1019
|
address: `0x${string}`;
|
|
@@ -1070,14 +1070,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
1070
1070
|
} | {
|
|
1071
1071
|
output: {
|
|
1072
1072
|
error: {
|
|
1073
|
-
code: "
|
|
1073
|
+
code: "unsupported_media_type";
|
|
1074
1074
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1075
1075
|
message: string;
|
|
1076
1076
|
};
|
|
1077
1077
|
requestId: string;
|
|
1078
1078
|
};
|
|
1079
1079
|
outputFormat: "json";
|
|
1080
|
-
status:
|
|
1080
|
+
status: 415;
|
|
1081
1081
|
input: {
|
|
1082
1082
|
param: {
|
|
1083
1083
|
address: `0x${string}`;
|
|
@@ -1090,14 +1090,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
1090
1090
|
} | {
|
|
1091
1091
|
output: {
|
|
1092
1092
|
error: {
|
|
1093
|
-
code: "
|
|
1093
|
+
code: "payload_too_large";
|
|
1094
1094
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1095
1095
|
message: string;
|
|
1096
1096
|
};
|
|
1097
1097
|
requestId: string;
|
|
1098
1098
|
};
|
|
1099
1099
|
outputFormat: "json";
|
|
1100
|
-
status:
|
|
1100
|
+
status: 413;
|
|
1101
1101
|
input: {
|
|
1102
1102
|
param: {
|
|
1103
1103
|
address: `0x${string}`;
|