@relayprotocol/relay-sdk 7.0.3 → 8.0.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/_cjs/src/routes/index.js +2 -3
- package/_cjs/src/routes/index.js.map +1 -1
- package/_cjs/src/types/Execute.js.map +1 -1
- package/_cjs/src/types/RelayChain.js.map +1 -1
- package/_cjs/src/types/api.js.map +1 -1
- package/_cjs/src/version.js +1 -1
- package/_cjs/src/version.js.map +1 -1
- package/_cjs/tsconfig.build.tsbuildinfo +1 -1
- package/_esm/src/routes/index.js +2 -3
- package/_esm/src/routes/index.js.map +1 -1
- package/_esm/src/types/Execute.js.map +1 -1
- package/_esm/src/types/RelayChain.js.map +1 -1
- package/_esm/src/types/api.js.map +1 -1
- package/_esm/src/version.js +1 -1
- package/_esm/src/version.js.map +1 -1
- package/_esm/tsconfig.build.tsbuildinfo +1 -1
- package/_types/src/client.d.ts +5 -5
- package/_types/src/routes/index.d.ts.map +1 -1
- package/_types/src/types/Execute.d.ts +4 -1
- package/_types/src/types/Execute.d.ts.map +1 -1
- package/_types/src/types/RelayChain.d.ts +1 -1
- package/_types/src/types/RelayChain.d.ts.map +1 -1
- package/_types/src/types/api.d.ts +552 -849
- package/_types/src/types/api.d.ts.map +1 -1
- package/_types/src/utils/getCurrentStepData.d.ts +2 -2
- package/_types/src/utils/prepareBatchTransaction.d.ts +1 -1
- package/_types/src/version.d.ts +1 -1
- package/_types/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -215,7 +215,7 @@ export interface paths {
|
|
|
215
215
|
/** @description Restrict to one currency (use chainId for non-EVM) */
|
|
216
216
|
currency?: string | null;
|
|
217
217
|
/** @description Restrict to one balance update context */
|
|
218
|
-
context?: "set-pending-amount" | "unset-pending-amount" | "reset-pending-amount" | "pay-fees" | "claim" | "fast-fill-reduce-balance" | "fast-fill-increase-balance" | "balance-topup" | "execute-transaction-request" | "fixed-rate-accounting" | "integrator-fixed-bps-accounting" | null;
|
|
218
|
+
context?: "set-pending-amount" | "unset-pending-amount" | "reset-pending-amount" | "pay-fees" | "claim" | "fast-fill-reduce-balance" | "fast-fill-increase-balance" | "balance-topup" | "execute-transaction-request" | "fixed-rate-accounting" | "integrator-fixed-bps-accounting" | "admin-manual-adjustment" | null;
|
|
219
219
|
/** @description Restrict to a specific request id */
|
|
220
220
|
requestId?: string | null;
|
|
221
221
|
/** @description Page size for events (max 250, default 50) */
|
|
@@ -392,7 +392,7 @@ export interface paths {
|
|
|
392
392
|
* @description The type of VM the chain runs on
|
|
393
393
|
* @enum {string}
|
|
394
394
|
*/
|
|
395
|
-
vmType?: "bvm" | "evm" | "svm" | "tvm" | "tonvm" | "hypevm" | "lvm" | "xrpvm";
|
|
395
|
+
vmType?: "bvm" | "evm" | "svm" | "tvm" | "tonvm" | "hypevm" | "lvm" | "xrpvm" | "hederavm";
|
|
396
396
|
explorerQueryParams?: {
|
|
397
397
|
[key: string]: unknown;
|
|
398
398
|
} | null;
|
|
@@ -433,7 +433,7 @@ export interface paths {
|
|
|
433
433
|
200: {
|
|
434
434
|
content: {
|
|
435
435
|
"application/json": {
|
|
436
|
-
/** @description
|
|
436
|
+
/** @description Available solver balances per configured currency on the requested chain. */
|
|
437
437
|
liquidity?: {
|
|
438
438
|
chainId?: number;
|
|
439
439
|
currencyId?: string;
|
|
@@ -528,7 +528,7 @@ export interface paths {
|
|
|
528
528
|
/** @description User address, when supplied returns user balance and max bridge amount */
|
|
529
529
|
user?: string;
|
|
530
530
|
/** @description Restricts the user balance and capacity to a particular currency when supplied with a currency id. Defaults to the native currency of the destination chain. */
|
|
531
|
-
currency?: "anime" | "btc" | "cgt" | "dai" | "
|
|
531
|
+
currency?: "anime" | "btc" | "cgt" | "dai" | "eth" | "omi" | "pop" | "tg7" | "tia" | "usdc" | "usdc.e" | "usdt" | "sol" | "weth" | "ape" | "g7" | "pengu" | "plume" | "plumeusd" | "gun" | "somi" | "synd" | "xpl" | "usde" | "mon" | "musd" | "usdm" | "pyusd" | "cash" | "eusd" | "pusd" | "bnb" | "usdg" | "pathusd" | "ausd" | "usdc.e-cronos";
|
|
532
532
|
};
|
|
533
533
|
};
|
|
534
534
|
responses: {
|
|
@@ -627,6 +627,226 @@ export interface paths {
|
|
|
627
627
|
};
|
|
628
628
|
};
|
|
629
629
|
};
|
|
630
|
+
"/deposit-addresses/v2": {
|
|
631
|
+
get: {
|
|
632
|
+
parameters: {
|
|
633
|
+
query?: {
|
|
634
|
+
address?: string;
|
|
635
|
+
depositAddressId?: string;
|
|
636
|
+
pageSize?: number;
|
|
637
|
+
pageToken?: string;
|
|
638
|
+
};
|
|
639
|
+
header?: {
|
|
640
|
+
/** @description API key for authentication. */
|
|
641
|
+
"x-api-key"?: string;
|
|
642
|
+
/** @description Developer portal key for authentication. */
|
|
643
|
+
"x-dev-portal-key"?: string;
|
|
644
|
+
};
|
|
645
|
+
};
|
|
646
|
+
responses: {
|
|
647
|
+
/** @description Default Response */
|
|
648
|
+
200: {
|
|
649
|
+
content: {
|
|
650
|
+
"application/json": {
|
|
651
|
+
data: {
|
|
652
|
+
depositAddress: {
|
|
653
|
+
id: string;
|
|
654
|
+
address: string;
|
|
655
|
+
originChainId: number;
|
|
656
|
+
originCurrency: string;
|
|
657
|
+
destinationChainId: number;
|
|
658
|
+
destinationCurrency: string;
|
|
659
|
+
destinationRecipient: string;
|
|
660
|
+
refundTo: string;
|
|
661
|
+
oneTimeUse: boolean;
|
|
662
|
+
isEnabled: boolean;
|
|
663
|
+
createdAt: string;
|
|
664
|
+
};
|
|
665
|
+
deposits: ({
|
|
666
|
+
id: string;
|
|
667
|
+
chainId: number;
|
|
668
|
+
transactionHash: string;
|
|
669
|
+
eventIndex: string;
|
|
670
|
+
sender: string | null;
|
|
671
|
+
currency: string;
|
|
672
|
+
amount: string;
|
|
673
|
+
amountFormatted: string | null;
|
|
674
|
+
amountUsd: string | null;
|
|
675
|
+
detectedAt: string;
|
|
676
|
+
})[];
|
|
677
|
+
sweeps: ({
|
|
678
|
+
id: string;
|
|
679
|
+
depositId: string;
|
|
680
|
+
/** @enum {string} */
|
|
681
|
+
purpose: "fill" | "refund";
|
|
682
|
+
/** @enum {string} */
|
|
683
|
+
status: "pending" | "submitted" | "confirmed" | "failed";
|
|
684
|
+
chainId: number;
|
|
685
|
+
recipient: string;
|
|
686
|
+
currency: string;
|
|
687
|
+
amount: string;
|
|
688
|
+
amountFormatted: string | null;
|
|
689
|
+
amountUsd: string | null;
|
|
690
|
+
transactionHash: string | null;
|
|
691
|
+
createdAt: string;
|
|
692
|
+
updatedAt: string;
|
|
693
|
+
})[];
|
|
694
|
+
fills: ({
|
|
695
|
+
sweepId: string;
|
|
696
|
+
requestId: string | null;
|
|
697
|
+
orderId: string | null;
|
|
698
|
+
chainId: number | null;
|
|
699
|
+
recipient: string | null;
|
|
700
|
+
currency: string | null;
|
|
701
|
+
amount: string | null;
|
|
702
|
+
amountFormatted: string | null;
|
|
703
|
+
amountUsd: string | null;
|
|
704
|
+
transactions: {
|
|
705
|
+
chainId: number;
|
|
706
|
+
hash: string;
|
|
707
|
+
}[];
|
|
708
|
+
updatedAt: string;
|
|
709
|
+
/** @enum {string} */
|
|
710
|
+
status: "submitted" | "success" | "failure";
|
|
711
|
+
/** @enum {string|null} */
|
|
712
|
+
failureReason: "fill_failed" | null;
|
|
713
|
+
})[];
|
|
714
|
+
refunds: ({
|
|
715
|
+
sweepId: string;
|
|
716
|
+
requestId: string | null;
|
|
717
|
+
orderId: string | null;
|
|
718
|
+
chainId: number | null;
|
|
719
|
+
recipient: string | null;
|
|
720
|
+
currency: string | null;
|
|
721
|
+
amount: string | null;
|
|
722
|
+
amountFormatted: string | null;
|
|
723
|
+
amountUsd: string | null;
|
|
724
|
+
transactions: {
|
|
725
|
+
chainId: number;
|
|
726
|
+
hash: string;
|
|
727
|
+
}[];
|
|
728
|
+
updatedAt: string;
|
|
729
|
+
/** @enum {string} */
|
|
730
|
+
status: "pending" | "success" | "failure";
|
|
731
|
+
/** @enum {string|null} */
|
|
732
|
+
failureReason: "refund_failed" | null;
|
|
733
|
+
})[];
|
|
734
|
+
nextPageToken: string | null;
|
|
735
|
+
};
|
|
736
|
+
timestamp: string;
|
|
737
|
+
};
|
|
738
|
+
};
|
|
739
|
+
};
|
|
740
|
+
/** @description Default Response */
|
|
741
|
+
400: {
|
|
742
|
+
content: {
|
|
743
|
+
"application/json": {
|
|
744
|
+
message: string;
|
|
745
|
+
errorCode?: string;
|
|
746
|
+
};
|
|
747
|
+
};
|
|
748
|
+
};
|
|
749
|
+
/** @description Default Response */
|
|
750
|
+
401: {
|
|
751
|
+
content: {
|
|
752
|
+
"application/json": {
|
|
753
|
+
message: string;
|
|
754
|
+
errorCode?: string;
|
|
755
|
+
};
|
|
756
|
+
};
|
|
757
|
+
};
|
|
758
|
+
/** @description Default Response */
|
|
759
|
+
404: {
|
|
760
|
+
content: {
|
|
761
|
+
"application/json": {
|
|
762
|
+
message: string;
|
|
763
|
+
errorCode?: string;
|
|
764
|
+
};
|
|
765
|
+
};
|
|
766
|
+
};
|
|
767
|
+
/** @description Default Response */
|
|
768
|
+
500: {
|
|
769
|
+
content: {
|
|
770
|
+
"application/json": {
|
|
771
|
+
message: string;
|
|
772
|
+
errorCode?: string;
|
|
773
|
+
};
|
|
774
|
+
};
|
|
775
|
+
};
|
|
776
|
+
/** @description Default Response */
|
|
777
|
+
503: {
|
|
778
|
+
content: {
|
|
779
|
+
"application/json": {
|
|
780
|
+
message: string;
|
|
781
|
+
errorCode?: string;
|
|
782
|
+
};
|
|
783
|
+
};
|
|
784
|
+
};
|
|
785
|
+
};
|
|
786
|
+
};
|
|
787
|
+
};
|
|
788
|
+
"/deposit-addresses/{depositAddressId}/disable/v2": {
|
|
789
|
+
post: {
|
|
790
|
+
parameters: {
|
|
791
|
+
header?: {
|
|
792
|
+
/** @description API key for authentication. */
|
|
793
|
+
"x-api-key"?: string;
|
|
794
|
+
/** @description Developer portal key for authentication. */
|
|
795
|
+
"x-dev-portal-key"?: string;
|
|
796
|
+
};
|
|
797
|
+
path: {
|
|
798
|
+
depositAddressId: string;
|
|
799
|
+
};
|
|
800
|
+
};
|
|
801
|
+
responses: {
|
|
802
|
+
/** @description Default Response */
|
|
803
|
+
400: {
|
|
804
|
+
content: {
|
|
805
|
+
"application/json": {
|
|
806
|
+
message: string;
|
|
807
|
+
errorCode?: string;
|
|
808
|
+
};
|
|
809
|
+
};
|
|
810
|
+
};
|
|
811
|
+
/** @description Default Response */
|
|
812
|
+
401: {
|
|
813
|
+
content: {
|
|
814
|
+
"application/json": {
|
|
815
|
+
message: string;
|
|
816
|
+
errorCode?: string;
|
|
817
|
+
};
|
|
818
|
+
};
|
|
819
|
+
};
|
|
820
|
+
/** @description Default Response */
|
|
821
|
+
404: {
|
|
822
|
+
content: {
|
|
823
|
+
"application/json": {
|
|
824
|
+
message: string;
|
|
825
|
+
errorCode?: string;
|
|
826
|
+
};
|
|
827
|
+
};
|
|
828
|
+
};
|
|
829
|
+
/** @description Default Response */
|
|
830
|
+
500: {
|
|
831
|
+
content: {
|
|
832
|
+
"application/json": {
|
|
833
|
+
message: string;
|
|
834
|
+
errorCode?: string;
|
|
835
|
+
};
|
|
836
|
+
};
|
|
837
|
+
};
|
|
838
|
+
/** @description Default Response */
|
|
839
|
+
503: {
|
|
840
|
+
content: {
|
|
841
|
+
"application/json": {
|
|
842
|
+
message: string;
|
|
843
|
+
errorCode?: string;
|
|
844
|
+
};
|
|
845
|
+
};
|
|
846
|
+
};
|
|
847
|
+
};
|
|
848
|
+
};
|
|
849
|
+
};
|
|
630
850
|
"/execute/permits": {
|
|
631
851
|
post: {
|
|
632
852
|
parameters: {
|
|
@@ -791,9 +1011,9 @@ export interface paths {
|
|
|
791
1011
|
permitExpiry?: number;
|
|
792
1012
|
/** @description Return protocol data for on-chain intent validation. This includes protocol.v2.orderSignature and may increase quote latency. */
|
|
793
1013
|
includeProtocolData?: boolean;
|
|
794
|
-
/** @description
|
|
1014
|
+
/** @description Use a deposit address when calldata cannot be sent with the origin transaction. In /quote/v2, creation follows the requested trade type. */
|
|
795
1015
|
useDepositAddress?: boolean;
|
|
796
|
-
/** @description
|
|
1016
|
+
/** @description Deprecated and ignored by /quote/v2. Deprecated quote endpoints retain their existing strict behavior. */
|
|
797
1017
|
strict?: boolean;
|
|
798
1018
|
/** @description Slippage tolerance for the swap, if not specified then the slippage tolerance is automatically calculated to avoid front-running. This value is in basis points (1/100th of a percent), e.g. 50 for 0.5% slippage. Must be 0–10000 bps. */
|
|
799
1019
|
slippageTolerance?: string;
|
|
@@ -815,6 +1035,8 @@ export interface paths {
|
|
|
815
1035
|
sponsoredFeeComponents?: ("execution" | "swap" | "relay" | "app" | "rent")[];
|
|
816
1036
|
/** @description The max subsidization amount in USDC decimal format, e.g 1000000 = $1. subsidizeFees must be enabled. The sponsor will cover fees up to this cap and the user pays any remainder. */
|
|
817
1037
|
maxSubsidizationAmount?: string;
|
|
1038
|
+
/** @description The share of each sponsored fee component the sponsor covers, in bps, e.g 10000 = 100% and 2500 = 25%. subsidizeFees must be enabled. Defaults to full coverage when omitted; the user pays the remainder. Applied before maxSubsidizationAmount, which still caps the sponsor's total. */
|
|
1039
|
+
subsidizationBps?: number;
|
|
818
1040
|
/**
|
|
819
1041
|
* @deprecated
|
|
820
1042
|
* @description Deprecated compatibility alias that adds "rent" to sponsoredFeeComponents.
|
|
@@ -844,8 +1066,16 @@ export interface paths {
|
|
|
844
1066
|
disableSwapProviderPreference?: boolean;
|
|
845
1067
|
/** @description Whether to disable origin swaps. */
|
|
846
1068
|
disableOriginSwaps?: boolean;
|
|
1069
|
+
/** @description Whether to return an inexecutable quote meant to be used as a preview. */
|
|
1070
|
+
indicativeQuote?: boolean;
|
|
847
1071
|
/** @description The rate to charge for fixed spread quotes. */
|
|
848
1072
|
fixedRate?: string;
|
|
1073
|
+
/** @description Requester-provided price (destination-leg output units per input unit) to compare router quotes against when fastestInPriceRange is enabled for the API key. Quotes more than 20% below it are skipped; quotes above it are always accepted. */
|
|
1074
|
+
referencePrice?: string;
|
|
1075
|
+
/** @description Whether to use route racing for this quote (executing multiple candidate routes on-chain and keeping the best), when the API key is authorized for it. */
|
|
1076
|
+
useRouteRacing?: boolean;
|
|
1077
|
+
/** @description Minimum fill size in USD eligible for route racing. Defaults to 100. Route racing has no maximum fill size. */
|
|
1078
|
+
routeRacingMinUsdSize?: number;
|
|
849
1079
|
/** @description Time-to-live for the quote, in seconds, measured from when the quote was generated. If the request is not filled within this window it is refunded instead of filled. */
|
|
850
1080
|
ttl?: number;
|
|
851
1081
|
};
|
|
@@ -856,6 +1086,8 @@ export interface paths {
|
|
|
856
1086
|
200: {
|
|
857
1087
|
content: {
|
|
858
1088
|
"application/json": {
|
|
1089
|
+
/** @description A unique identifier for the quote */
|
|
1090
|
+
requestId?: string;
|
|
859
1091
|
/**
|
|
860
1092
|
* @description An array of steps detailing what needs to be done to bridge, steps includes multiple items of the same kind (signature, transaction, etc)
|
|
861
1093
|
* @example [
|
|
@@ -902,6 +1134,8 @@ export interface paths {
|
|
|
902
1134
|
requestId?: string;
|
|
903
1135
|
/** @description The deposit address for the bridge request */
|
|
904
1136
|
depositAddress?: string;
|
|
1137
|
+
/** @description The Deposit Address service resource identifier */
|
|
1138
|
+
depositAddressId?: string;
|
|
905
1139
|
/** @description While uncommon it is possible for steps to contain multiple items of the same kind (transaction/signature) grouped together that can be executed simultaneously. */
|
|
906
1140
|
items: {
|
|
907
1141
|
/** @description Can either be complete or incomplete, this can be locally controlled once the step item is completed (depending on the kind) and the check object (if returned) has been verified. Once all step items are complete, the bridge is complete */
|
|
@@ -1160,6 +1394,8 @@ export interface paths {
|
|
|
1160
1394
|
selectedComponents: ("execution" | "swap" | "relay" | "app" | "rent")[];
|
|
1161
1395
|
/** @description The requested sponsorship cap in USD micro-units, when one was configured for the request. */
|
|
1162
1396
|
maxSubsidizationAmount?: string;
|
|
1397
|
+
/** @description The requested share of each selected fee bucket the sponsor covers, in bps (10000 = 100%), when one was configured for the request. */
|
|
1398
|
+
subsidizationBps?: number;
|
|
1163
1399
|
/** @description Whether the configured sponsorship cap limited the selected fee buckets for this phase. */
|
|
1164
1400
|
capHit: boolean;
|
|
1165
1401
|
/** @description Per-bucket sponsorship details for the sponsorable fee components. */
|
|
@@ -1860,6 +2096,8 @@ export interface paths {
|
|
|
1860
2096
|
selectedComponents: ("execution" | "swap" | "relay" | "app" | "rent")[];
|
|
1861
2097
|
/** @description The requested sponsorship cap in USD micro-units, when one was configured for the request. */
|
|
1862
2098
|
maxSubsidizationAmount?: string;
|
|
2099
|
+
/** @description The requested share of each selected fee bucket the sponsor covers, in bps (10000 = 100%), when one was configured for the request. */
|
|
2100
|
+
subsidizationBps?: number;
|
|
1863
2101
|
/** @description Whether the configured sponsorship cap limited the selected fee buckets for this phase. */
|
|
1864
2102
|
capHit: boolean;
|
|
1865
2103
|
/** @description Per-bucket sponsorship details for the sponsorable fee components. */
|
|
@@ -3123,9 +3361,9 @@ export interface paths {
|
|
|
3123
3361
|
permitExpiry?: number;
|
|
3124
3362
|
/** @description Return protocol data for on-chain intent validation. This includes protocol.v2.orderSignature and may increase quote latency. */
|
|
3125
3363
|
includeProtocolData?: boolean;
|
|
3126
|
-
/** @description
|
|
3364
|
+
/** @description Use a deposit address when calldata cannot be sent with the origin transaction. In /quote/v2, creation follows the requested trade type. */
|
|
3127
3365
|
useDepositAddress?: boolean;
|
|
3128
|
-
/** @description
|
|
3366
|
+
/** @description Deprecated and ignored by /quote/v2. Deprecated quote endpoints retain their existing strict behavior. */
|
|
3129
3367
|
strict?: boolean;
|
|
3130
3368
|
/** @description Slippage tolerance for the swap, if not specified then the slippage tolerance is automatically calculated to avoid front-running. This value is in basis points (1/100th of a percent), e.g. 50 for 0.5% slippage. Must be 0–10000 bps. */
|
|
3131
3369
|
slippageTolerance?: string;
|
|
@@ -3147,6 +3385,8 @@ export interface paths {
|
|
|
3147
3385
|
sponsoredFeeComponents?: ("execution" | "swap" | "relay" | "app" | "rent")[];
|
|
3148
3386
|
/** @description The max subsidization amount in USDC decimal format, e.g 1000000 = $1. subsidizeFees must be enabled. The sponsor will cover fees up to this cap and the user pays any remainder. */
|
|
3149
3387
|
maxSubsidizationAmount?: string;
|
|
3388
|
+
/** @description The share of each sponsored fee component the sponsor covers, in bps, e.g 10000 = 100% and 2500 = 25%. subsidizeFees must be enabled. Defaults to full coverage when omitted; the user pays the remainder. Applied before maxSubsidizationAmount, which still caps the sponsor's total. */
|
|
3389
|
+
subsidizationBps?: number;
|
|
3150
3390
|
/**
|
|
3151
3391
|
* @deprecated
|
|
3152
3392
|
* @description Deprecated compatibility alias that adds "rent" to sponsoredFeeComponents.
|
|
@@ -3176,8 +3416,16 @@ export interface paths {
|
|
|
3176
3416
|
disableSwapProviderPreference?: boolean;
|
|
3177
3417
|
/** @description Whether to disable origin swaps. */
|
|
3178
3418
|
disableOriginSwaps?: boolean;
|
|
3419
|
+
/** @description Whether to return an inexecutable quote meant to be used as a preview. */
|
|
3420
|
+
indicativeQuote?: boolean;
|
|
3179
3421
|
/** @description The rate to charge for fixed spread quotes. */
|
|
3180
3422
|
fixedRate?: string;
|
|
3423
|
+
/** @description Requester-provided price (destination-leg output units per input unit) to compare router quotes against when fastestInPriceRange is enabled for the API key. Quotes more than 20% below it are skipped; quotes above it are always accepted. */
|
|
3424
|
+
referencePrice?: string;
|
|
3425
|
+
/** @description Whether to use route racing for this quote (executing multiple candidate routes on-chain and keeping the best), when the API key is authorized for it. */
|
|
3426
|
+
useRouteRacing?: boolean;
|
|
3427
|
+
/** @description Minimum fill size in USD eligible for route racing. Defaults to 100. Route racing has no maximum fill size. */
|
|
3428
|
+
routeRacingMinUsdSize?: number;
|
|
3181
3429
|
/** @description Time-to-live for the quote, in seconds, measured from when the quote was generated. If the request is not filled within this window it is refunded instead of filled. */
|
|
3182
3430
|
ttl?: number;
|
|
3183
3431
|
};
|
|
@@ -3188,6 +3436,8 @@ export interface paths {
|
|
|
3188
3436
|
200: {
|
|
3189
3437
|
content: {
|
|
3190
3438
|
"application/json": {
|
|
3439
|
+
/** @description A unique identifier for the quote */
|
|
3440
|
+
requestId?: string;
|
|
3191
3441
|
/**
|
|
3192
3442
|
* @description An array of steps detailing what needs to be done to bridge, steps includes multiple items of the same kind (signature, transaction, etc)
|
|
3193
3443
|
* @example [
|
|
@@ -3234,6 +3484,8 @@ export interface paths {
|
|
|
3234
3484
|
requestId?: string;
|
|
3235
3485
|
/** @description The deposit address for the bridge request */
|
|
3236
3486
|
depositAddress?: string;
|
|
3487
|
+
/** @description The Deposit Address service resource identifier */
|
|
3488
|
+
depositAddressId?: string;
|
|
3237
3489
|
/** @description While uncommon it is possible for steps to contain multiple items of the same kind (transaction/signature) grouped together that can be executed simultaneously. */
|
|
3238
3490
|
items: {
|
|
3239
3491
|
/** @description Can either be complete or incomplete, this can be locally controlled once the step item is completed (depending on the kind) and the check object (if returned) has been verified. Once all step items are complete, the bridge is complete */
|
|
@@ -3492,6 +3744,8 @@ export interface paths {
|
|
|
3492
3744
|
selectedComponents: ("execution" | "swap" | "relay" | "app" | "rent")[];
|
|
3493
3745
|
/** @description The requested sponsorship cap in USD micro-units, when one was configured for the request. */
|
|
3494
3746
|
maxSubsidizationAmount?: string;
|
|
3747
|
+
/** @description The requested share of each selected fee bucket the sponsor covers, in bps (10000 = 100%), when one was configured for the request. */
|
|
3748
|
+
subsidizationBps?: number;
|
|
3495
3749
|
/** @description Whether the configured sponsorship cap limited the selected fee buckets for this phase. */
|
|
3496
3750
|
capHit: boolean;
|
|
3497
3751
|
/** @description Per-bucket sponsorship details for the sponsorable fee components. */
|
|
@@ -4192,6 +4446,8 @@ export interface paths {
|
|
|
4192
4446
|
selectedComponents: ("execution" | "swap" | "relay" | "app" | "rent")[];
|
|
4193
4447
|
/** @description The requested sponsorship cap in USD micro-units, when one was configured for the request. */
|
|
4194
4448
|
maxSubsidizationAmount?: string;
|
|
4449
|
+
/** @description The requested share of each selected fee bucket the sponsor covers, in bps (10000 = 100%), when one was configured for the request. */
|
|
4450
|
+
subsidizationBps?: number;
|
|
4195
4451
|
/** @description Whether the configured sponsorship cap limited the selected fee buckets for this phase. */
|
|
4196
4452
|
capHit: boolean;
|
|
4197
4453
|
/** @description Per-bucket sponsorship details for the sponsorable fee components. */
|
|
@@ -5805,580 +6061,74 @@ export interface paths {
|
|
|
5805
6061
|
};
|
|
5806
6062
|
};
|
|
5807
6063
|
};
|
|
5808
|
-
"/execute
|
|
6064
|
+
"/execute": {
|
|
5809
6065
|
post: {
|
|
6066
|
+
parameters: {
|
|
6067
|
+
header: {
|
|
6068
|
+
/** @description Required API key for authentication. Contact the team for getting an API Key */
|
|
6069
|
+
"x-api-key": string;
|
|
6070
|
+
};
|
|
6071
|
+
};
|
|
5810
6072
|
requestBody: {
|
|
5811
6073
|
content: {
|
|
5812
6074
|
"application/json": {
|
|
5813
|
-
/** @description Address that is depositing funds on the origin chain and submitting transactions or signatures */
|
|
5814
|
-
user: string;
|
|
5815
|
-
/** @description Address that is receiving the funds on the destination chain, if not specified then this will default to the user address */
|
|
5816
|
-
recipient?: string;
|
|
5817
|
-
originChainId: number;
|
|
5818
|
-
destinationChainId: number;
|
|
5819
|
-
originCurrency: string;
|
|
5820
|
-
destinationCurrency: string;
|
|
5821
|
-
/** @description Amount to swap as the base amount (can be switched to exact input/output using the dedicated flag), denoted in the smallest unit of the specified currency (e.g., wei for ETH) */
|
|
5822
|
-
amount: string;
|
|
5823
6075
|
/**
|
|
5824
|
-
* @description
|
|
6076
|
+
* @description The kind of gasless transaction to execute. Currently supported: rawCalls
|
|
5825
6077
|
* @enum {string}
|
|
5826
6078
|
*/
|
|
5827
|
-
|
|
5828
|
-
|
|
5829
|
-
|
|
5830
|
-
|
|
5831
|
-
|
|
5832
|
-
|
|
5833
|
-
|
|
5834
|
-
|
|
5835
|
-
|
|
5836
|
-
|
|
5837
|
-
|
|
5838
|
-
|
|
5839
|
-
|
|
5840
|
-
|
|
5841
|
-
|
|
5842
|
-
|
|
5843
|
-
|
|
5844
|
-
|
|
5845
|
-
|
|
5846
|
-
|
|
5847
|
-
|
|
5848
|
-
|
|
5849
|
-
|
|
5850
|
-
/** @description
|
|
5851
|
-
|
|
5852
|
-
/** @description
|
|
5853
|
-
|
|
5854
|
-
|
|
6079
|
+
executionKind: "rawCalls";
|
|
6080
|
+
/** @description Raw call parameters for the gasless transaction */
|
|
6081
|
+
data: {
|
|
6082
|
+
/** @description Chain ID of the EVM network */
|
|
6083
|
+
chainId: number;
|
|
6084
|
+
/** @description Address of the contract to call */
|
|
6085
|
+
to: string;
|
|
6086
|
+
/** @description Encoded function call data */
|
|
6087
|
+
data: string;
|
|
6088
|
+
/** @description ETH value to send with the call (in wei) */
|
|
6089
|
+
value: string;
|
|
6090
|
+
/** @description Authorization list for EIP-7702 transactions to be executed on destination chain */
|
|
6091
|
+
authorizationList?: {
|
|
6092
|
+
chainId: number;
|
|
6093
|
+
address: string;
|
|
6094
|
+
nonce: number;
|
|
6095
|
+
yParity: number;
|
|
6096
|
+
r: string;
|
|
6097
|
+
s: string;
|
|
6098
|
+
}[];
|
|
6099
|
+
};
|
|
6100
|
+
/** @description Options related to gas fee sponsorship, app referrer and destination calls */
|
|
6101
|
+
executionOptions: {
|
|
6102
|
+
/** @description The referrer of the app which is executing the gasless transaction */
|
|
6103
|
+
referrer?: string;
|
|
6104
|
+
/** @description If the app should pay for the fees associated with the request */
|
|
6105
|
+
subsidizeFees: boolean;
|
|
6106
|
+
/** @description Destination execution data for the gasless transaction */
|
|
6107
|
+
destinationChainExecutionData?: {
|
|
6108
|
+
/** @description Calls to be executed on the destination chain */
|
|
6109
|
+
calls: {
|
|
6110
|
+
to?: string;
|
|
6111
|
+
value?: string;
|
|
6112
|
+
data?: string;
|
|
6113
|
+
}[];
|
|
6114
|
+
/** @description Authorization list for EIP-7702 transactions to be executed on destination chain */
|
|
6115
|
+
authorizationList?: {
|
|
6116
|
+
chainId: number;
|
|
6117
|
+
address: string;
|
|
6118
|
+
nonce: number;
|
|
6119
|
+
yParity: number;
|
|
6120
|
+
r: string;
|
|
6121
|
+
s: string;
|
|
6122
|
+
}[];
|
|
6123
|
+
};
|
|
6124
|
+
};
|
|
6125
|
+
/** @description The request ID of the gasless transaction to execute */
|
|
6126
|
+
requestId?: string;
|
|
5855
6127
|
};
|
|
5856
6128
|
};
|
|
5857
6129
|
};
|
|
5858
6130
|
responses: {
|
|
5859
|
-
/** @description
|
|
5860
|
-
200: {
|
|
5861
|
-
content: {
|
|
5862
|
-
"application/json": {
|
|
5863
|
-
/**
|
|
5864
|
-
* @description An array of steps detailing what needs to be done to bridge, steps includes multiple items of the same kind (signature, transaction, etc)
|
|
5865
|
-
* @example [
|
|
5866
|
-
* {
|
|
5867
|
-
* "id": "deposit",
|
|
5868
|
-
* "action": "Confirm transaction in your wallet",
|
|
5869
|
-
* "description": "Depositing funds to the relayer to execute the swap for USDC",
|
|
5870
|
-
* "kind": "transaction",
|
|
5871
|
-
* "requestId": "0x92b99e6e1ee1deeb9531b5ad7f87091b3d71254b3176de9e8b5f6c6d0bd3a331",
|
|
5872
|
-
* "items": [
|
|
5873
|
-
* {
|
|
5874
|
-
* "status": "incomplete",
|
|
5875
|
-
* "data": {
|
|
5876
|
-
* "from": "0x0CccD55A5Ac261Ea29136831eeaA93bfE07f5Db6",
|
|
5877
|
-
* "to": "0xf70da97812cb96acdf810712aa562db8dfa3dbef",
|
|
5878
|
-
* "data": "0x00fad611",
|
|
5879
|
-
* "value": "1000000000000000000",
|
|
5880
|
-
* "maxFeePerGas": "12205661344",
|
|
5881
|
-
* "maxPriorityFeePerGas": "2037863396",
|
|
5882
|
-
* "chainId": 1
|
|
5883
|
-
* },
|
|
5884
|
-
* "check": {
|
|
5885
|
-
* "endpoint": "/intents/status?requestId=0x92b99e6e1ee1deeb9531b5ad7f87091b3d71254b3176de9e8b5f6c6d0bd3a331",
|
|
5886
|
-
* "method": "GET"
|
|
5887
|
-
* }
|
|
5888
|
-
* }
|
|
5889
|
-
* ]
|
|
5890
|
-
* }
|
|
5891
|
-
* ]
|
|
5892
|
-
*/
|
|
5893
|
-
steps?: {
|
|
5894
|
-
/** @description Unique identifier tied to the step */
|
|
5895
|
-
id?: string;
|
|
5896
|
-
/** @description A call to action for the step */
|
|
5897
|
-
action?: string;
|
|
5898
|
-
/** @description A short description of the step and what it entails */
|
|
5899
|
-
description?: string;
|
|
5900
|
-
/** @description The kind of step, can either be a transaction or a signature. Transaction steps require submitting a transaction while signature steps require submitting a signature */
|
|
5901
|
-
kind?: string;
|
|
5902
|
-
/** @description A unique identifier for this step, tying all related transactions together */
|
|
5903
|
-
requestId?: string;
|
|
5904
|
-
/** @description While uncommon it is possible for steps to contain multiple items of the same kind (transaction/signature) grouped together that can be executed simultaneously. */
|
|
5905
|
-
items?: {
|
|
5906
|
-
/** @description Can either be complete or incomplete, this can be locally controlled once the step item is completed (depending on the kind) and the check object (if returned) has been verified. Once all step items are complete, the bridge is complete */
|
|
5907
|
-
status?: string;
|
|
5908
|
-
data?: unknown;
|
|
5909
|
-
/** @description Details an endpoint and a method you should poll to get confirmation, the endpoint should return a boolean success flag which can be used to determine if the step item is complete */
|
|
5910
|
-
check?: {
|
|
5911
|
-
/** @description The endpoint to confirm that the step item was successfully completed */
|
|
5912
|
-
endpoint?: string;
|
|
5913
|
-
/** @description The REST method to access the endpoint */
|
|
5914
|
-
method?: string;
|
|
5915
|
-
};
|
|
5916
|
-
}[];
|
|
5917
|
-
}[];
|
|
5918
|
-
fees?: {
|
|
5919
|
-
/**
|
|
5920
|
-
* @description Origin chain gas fee
|
|
5921
|
-
* @example {
|
|
5922
|
-
* "currency": {
|
|
5923
|
-
* "chainId": 8453,
|
|
5924
|
-
* "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
|
|
5925
|
-
* "symbol": "USDC",
|
|
5926
|
-
* "name": "USD Coin",
|
|
5927
|
-
* "decimals": 6,
|
|
5928
|
-
* "metadata": {
|
|
5929
|
-
* "logoURI": "https://ethereum-optimism.github.io/data/USDC/logo.png",
|
|
5930
|
-
* "verified": false,
|
|
5931
|
-
* "isNative": false
|
|
5932
|
-
* }
|
|
5933
|
-
* },
|
|
5934
|
-
* "amount": "30754920",
|
|
5935
|
-
* "amountFormatted": "30.75492",
|
|
5936
|
-
* "amountUsd": "30.901612",
|
|
5937
|
-
* "minimumAmount": "30454920"
|
|
5938
|
-
* }
|
|
5939
|
-
*/
|
|
5940
|
-
gas?: {
|
|
5941
|
-
currency?: {
|
|
5942
|
-
chainId?: number;
|
|
5943
|
-
address?: string;
|
|
5944
|
-
symbol?: string;
|
|
5945
|
-
name?: string;
|
|
5946
|
-
decimals?: number;
|
|
5947
|
-
metadata?: {
|
|
5948
|
-
logoURI?: string;
|
|
5949
|
-
verified?: boolean;
|
|
5950
|
-
isNative?: boolean;
|
|
5951
|
-
};
|
|
5952
|
-
};
|
|
5953
|
-
amount?: string;
|
|
5954
|
-
amountFormatted?: string;
|
|
5955
|
-
amountUsd?: string;
|
|
5956
|
-
minimumAmount?: string;
|
|
5957
|
-
};
|
|
5958
|
-
/**
|
|
5959
|
-
* @description Combination of the relayerGas and relayerService to give you the full relayer fee
|
|
5960
|
-
* @example {
|
|
5961
|
-
* "currency": {
|
|
5962
|
-
* "chainId": 8453,
|
|
5963
|
-
* "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
|
|
5964
|
-
* "symbol": "USDC",
|
|
5965
|
-
* "name": "USD Coin",
|
|
5966
|
-
* "decimals": 6,
|
|
5967
|
-
* "metadata": {
|
|
5968
|
-
* "logoURI": "https://ethereum-optimism.github.io/data/USDC/logo.png",
|
|
5969
|
-
* "verified": false,
|
|
5970
|
-
* "isNative": false
|
|
5971
|
-
* }
|
|
5972
|
-
* },
|
|
5973
|
-
* "amount": "30754920",
|
|
5974
|
-
* "amountFormatted": "30.75492",
|
|
5975
|
-
* "amountUsd": "30.901612",
|
|
5976
|
-
* "minimumAmount": "30454920"
|
|
5977
|
-
* }
|
|
5978
|
-
*/
|
|
5979
|
-
relayer?: {
|
|
5980
|
-
currency?: {
|
|
5981
|
-
chainId?: number;
|
|
5982
|
-
address?: string;
|
|
5983
|
-
symbol?: string;
|
|
5984
|
-
name?: string;
|
|
5985
|
-
decimals?: number;
|
|
5986
|
-
metadata?: {
|
|
5987
|
-
logoURI?: string;
|
|
5988
|
-
verified?: boolean;
|
|
5989
|
-
isNative?: boolean;
|
|
5990
|
-
};
|
|
5991
|
-
};
|
|
5992
|
-
amount?: string;
|
|
5993
|
-
amountFormatted?: string;
|
|
5994
|
-
amountUsd?: string;
|
|
5995
|
-
minimumAmount?: string;
|
|
5996
|
-
};
|
|
5997
|
-
/**
|
|
5998
|
-
* @description Destination chain gas fee
|
|
5999
|
-
* @example {
|
|
6000
|
-
* "currency": {
|
|
6001
|
-
* "chainId": 8453,
|
|
6002
|
-
* "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
|
|
6003
|
-
* "symbol": "USDC",
|
|
6004
|
-
* "name": "USD Coin",
|
|
6005
|
-
* "decimals": 6,
|
|
6006
|
-
* "metadata": {
|
|
6007
|
-
* "logoURI": "https://ethereum-optimism.github.io/data/USDC/logo.png",
|
|
6008
|
-
* "verified": false,
|
|
6009
|
-
* "isNative": false
|
|
6010
|
-
* }
|
|
6011
|
-
* },
|
|
6012
|
-
* "amount": "30754920",
|
|
6013
|
-
* "amountFormatted": "30.75492",
|
|
6014
|
-
* "amountUsd": "30.901612",
|
|
6015
|
-
* "minimumAmount": "30454920"
|
|
6016
|
-
* }
|
|
6017
|
-
*/
|
|
6018
|
-
relayerGas?: {
|
|
6019
|
-
currency?: {
|
|
6020
|
-
chainId?: number;
|
|
6021
|
-
address?: string;
|
|
6022
|
-
symbol?: string;
|
|
6023
|
-
name?: string;
|
|
6024
|
-
decimals?: number;
|
|
6025
|
-
metadata?: {
|
|
6026
|
-
logoURI?: string;
|
|
6027
|
-
verified?: boolean;
|
|
6028
|
-
isNative?: boolean;
|
|
6029
|
-
};
|
|
6030
|
-
};
|
|
6031
|
-
amount?: string;
|
|
6032
|
-
amountFormatted?: string;
|
|
6033
|
-
amountUsd?: string;
|
|
6034
|
-
minimumAmount?: string;
|
|
6035
|
-
};
|
|
6036
|
-
/**
|
|
6037
|
-
* @description Fees paid to the relay solver, note that this value can be negative (which represents network rewards for moving in a direction that optimizes liquidity distribution)
|
|
6038
|
-
* @example {
|
|
6039
|
-
* "currency": {
|
|
6040
|
-
* "chainId": 8453,
|
|
6041
|
-
* "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
|
|
6042
|
-
* "symbol": "USDC",
|
|
6043
|
-
* "name": "USD Coin",
|
|
6044
|
-
* "decimals": 6,
|
|
6045
|
-
* "metadata": {
|
|
6046
|
-
* "logoURI": "https://ethereum-optimism.github.io/data/USDC/logo.png",
|
|
6047
|
-
* "verified": false,
|
|
6048
|
-
* "isNative": false
|
|
6049
|
-
* }
|
|
6050
|
-
* },
|
|
6051
|
-
* "amount": "30754920",
|
|
6052
|
-
* "amountFormatted": "30.75492",
|
|
6053
|
-
* "amountUsd": "30.901612",
|
|
6054
|
-
* "minimumAmount": "30454920"
|
|
6055
|
-
* }
|
|
6056
|
-
*/
|
|
6057
|
-
relayerService?: {
|
|
6058
|
-
currency?: {
|
|
6059
|
-
chainId?: number;
|
|
6060
|
-
address?: string;
|
|
6061
|
-
symbol?: string;
|
|
6062
|
-
name?: string;
|
|
6063
|
-
decimals?: number;
|
|
6064
|
-
metadata?: {
|
|
6065
|
-
logoURI?: string;
|
|
6066
|
-
verified?: boolean;
|
|
6067
|
-
isNative?: boolean;
|
|
6068
|
-
};
|
|
6069
|
-
};
|
|
6070
|
-
amount?: string;
|
|
6071
|
-
amountFormatted?: string;
|
|
6072
|
-
amountUsd?: string;
|
|
6073
|
-
minimumAmount?: string;
|
|
6074
|
-
};
|
|
6075
|
-
/**
|
|
6076
|
-
* @description Fees paid to the app. Currency will be the same as the relayer fee currency. This needs to be claimed later by the app owner and is not immediately distributed to the app
|
|
6077
|
-
* @example {
|
|
6078
|
-
* "currency": {
|
|
6079
|
-
* "chainId": 8453,
|
|
6080
|
-
* "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
|
|
6081
|
-
* "symbol": "USDC",
|
|
6082
|
-
* "name": "USD Coin",
|
|
6083
|
-
* "decimals": 6,
|
|
6084
|
-
* "metadata": {
|
|
6085
|
-
* "logoURI": "https://ethereum-optimism.github.io/data/USDC/logo.png",
|
|
6086
|
-
* "verified": false,
|
|
6087
|
-
* "isNative": false
|
|
6088
|
-
* }
|
|
6089
|
-
* },
|
|
6090
|
-
* "amount": "30754920",
|
|
6091
|
-
* "amountFormatted": "30.75492",
|
|
6092
|
-
* "amountUsd": "30.901612",
|
|
6093
|
-
* "minimumAmount": "30454920"
|
|
6094
|
-
* }
|
|
6095
|
-
*/
|
|
6096
|
-
app?: {
|
|
6097
|
-
currency?: {
|
|
6098
|
-
chainId?: number;
|
|
6099
|
-
address?: string;
|
|
6100
|
-
symbol?: string;
|
|
6101
|
-
name?: string;
|
|
6102
|
-
decimals?: number;
|
|
6103
|
-
metadata?: {
|
|
6104
|
-
logoURI?: string;
|
|
6105
|
-
verified?: boolean;
|
|
6106
|
-
isNative?: boolean;
|
|
6107
|
-
};
|
|
6108
|
-
};
|
|
6109
|
-
amount?: string;
|
|
6110
|
-
amountFormatted?: string;
|
|
6111
|
-
amountUsd?: string;
|
|
6112
|
-
minimumAmount?: string;
|
|
6113
|
-
};
|
|
6114
|
-
/**
|
|
6115
|
-
* @description The amount of fees for the request that are subsidized by the request sponsor. Does not include deposit origin gas unless it is a permit based deposit.
|
|
6116
|
-
* @example {
|
|
6117
|
-
* "currency": {
|
|
6118
|
-
* "chainId": 8453,
|
|
6119
|
-
* "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
|
|
6120
|
-
* "symbol": "USDC",
|
|
6121
|
-
* "name": "USD Coin",
|
|
6122
|
-
* "decimals": 6,
|
|
6123
|
-
* "metadata": {
|
|
6124
|
-
* "logoURI": "https://ethereum-optimism.github.io/data/USDC/logo.png",
|
|
6125
|
-
* "verified": false,
|
|
6126
|
-
* "isNative": false
|
|
6127
|
-
* }
|
|
6128
|
-
* },
|
|
6129
|
-
* "amount": "30754920",
|
|
6130
|
-
* "amountFormatted": "30.75492",
|
|
6131
|
-
* "amountUsd": "30.901612",
|
|
6132
|
-
* "minimumAmount": "30454920"
|
|
6133
|
-
* }
|
|
6134
|
-
*/
|
|
6135
|
-
subsidized?: {
|
|
6136
|
-
currency?: {
|
|
6137
|
-
chainId?: number;
|
|
6138
|
-
address?: string;
|
|
6139
|
-
symbol?: string;
|
|
6140
|
-
name?: string;
|
|
6141
|
-
decimals?: number;
|
|
6142
|
-
metadata?: {
|
|
6143
|
-
logoURI?: string;
|
|
6144
|
-
verified?: boolean;
|
|
6145
|
-
isNative?: boolean;
|
|
6146
|
-
};
|
|
6147
|
-
};
|
|
6148
|
-
amount?: string;
|
|
6149
|
-
amountFormatted?: string;
|
|
6150
|
-
amountUsd?: string;
|
|
6151
|
-
minimumAmount?: string;
|
|
6152
|
-
};
|
|
6153
|
-
};
|
|
6154
|
-
breakdown?: {
|
|
6155
|
-
/** @description Amount that will be swapped in the estimated time */
|
|
6156
|
-
value?: string;
|
|
6157
|
-
/** @description Estimated swap time in seconds */
|
|
6158
|
-
timeEstimate?: number;
|
|
6159
|
-
}[];
|
|
6160
|
-
balances?: {
|
|
6161
|
-
/** @description The user's balance in the given currency on the origin chain */
|
|
6162
|
-
userBalance?: string;
|
|
6163
|
-
/** @description The minimum balance the user needs to have to swap */
|
|
6164
|
-
requiredToSolve?: string;
|
|
6165
|
-
};
|
|
6166
|
-
/** @description A summary of the swap and what the user should expect to happen given an input */
|
|
6167
|
-
details?: {
|
|
6168
|
-
/** @description The operation that will be performed, possible options are send, swap, wrap, unwrap, bridge */
|
|
6169
|
-
operation?: string;
|
|
6170
|
-
/** @description Estimated swap time in seconds */
|
|
6171
|
-
timeEstimate?: number;
|
|
6172
|
-
/** @description The user's balance in the given currency on the origin chain */
|
|
6173
|
-
userBalance?: string;
|
|
6174
|
-
/** @description The address that deposited the funds */
|
|
6175
|
-
sender?: string;
|
|
6176
|
-
/** @description The address that will be receiving the swap output */
|
|
6177
|
-
recipient?: string;
|
|
6178
|
-
/**
|
|
6179
|
-
* @example {
|
|
6180
|
-
* "currency": {
|
|
6181
|
-
* "chainId": 8453,
|
|
6182
|
-
* "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
|
|
6183
|
-
* "symbol": "USDC",
|
|
6184
|
-
* "name": "USD Coin",
|
|
6185
|
-
* "decimals": 6,
|
|
6186
|
-
* "metadata": {
|
|
6187
|
-
* "logoURI": "https://ethereum-optimism.github.io/data/USDC/logo.png",
|
|
6188
|
-
* "verified": false,
|
|
6189
|
-
* "isNative": false
|
|
6190
|
-
* }
|
|
6191
|
-
* },
|
|
6192
|
-
* "amount": "30754920",
|
|
6193
|
-
* "amountFormatted": "30.75492",
|
|
6194
|
-
* "amountUsd": "30.901612",
|
|
6195
|
-
* "minimumAmount": "30454920"
|
|
6196
|
-
* }
|
|
6197
|
-
*/
|
|
6198
|
-
currencyIn?: {
|
|
6199
|
-
currency?: {
|
|
6200
|
-
chainId?: number;
|
|
6201
|
-
address?: string;
|
|
6202
|
-
symbol?: string;
|
|
6203
|
-
name?: string;
|
|
6204
|
-
decimals?: number;
|
|
6205
|
-
metadata?: {
|
|
6206
|
-
logoURI?: string;
|
|
6207
|
-
verified?: boolean;
|
|
6208
|
-
isNative?: boolean;
|
|
6209
|
-
};
|
|
6210
|
-
};
|
|
6211
|
-
amount?: string;
|
|
6212
|
-
amountFormatted?: string;
|
|
6213
|
-
amountUsd?: string;
|
|
6214
|
-
minimumAmount?: string;
|
|
6215
|
-
};
|
|
6216
|
-
/**
|
|
6217
|
-
* @example {
|
|
6218
|
-
* "currency": {
|
|
6219
|
-
* "chainId": 8453,
|
|
6220
|
-
* "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
|
|
6221
|
-
* "symbol": "USDC",
|
|
6222
|
-
* "name": "USD Coin",
|
|
6223
|
-
* "decimals": 6,
|
|
6224
|
-
* "metadata": {
|
|
6225
|
-
* "logoURI": "https://ethereum-optimism.github.io/data/USDC/logo.png",
|
|
6226
|
-
* "verified": false,
|
|
6227
|
-
* "isNative": false
|
|
6228
|
-
* }
|
|
6229
|
-
* },
|
|
6230
|
-
* "amount": "30754920",
|
|
6231
|
-
* "amountFormatted": "30.75492",
|
|
6232
|
-
* "amountUsd": "30.901612",
|
|
6233
|
-
* "minimumAmount": "30454920"
|
|
6234
|
-
* }
|
|
6235
|
-
*/
|
|
6236
|
-
currencyOut?: {
|
|
6237
|
-
currency?: {
|
|
6238
|
-
chainId?: number;
|
|
6239
|
-
address?: string;
|
|
6240
|
-
symbol?: string;
|
|
6241
|
-
name?: string;
|
|
6242
|
-
decimals?: number;
|
|
6243
|
-
metadata?: {
|
|
6244
|
-
logoURI?: string;
|
|
6245
|
-
verified?: boolean;
|
|
6246
|
-
isNative?: boolean;
|
|
6247
|
-
};
|
|
6248
|
-
};
|
|
6249
|
-
amount?: string;
|
|
6250
|
-
amountFormatted?: string;
|
|
6251
|
-
amountUsd?: string;
|
|
6252
|
-
minimumAmount?: string;
|
|
6253
|
-
};
|
|
6254
|
-
/** @description The difference between the input and output values, including fees */
|
|
6255
|
-
totalImpact?: {
|
|
6256
|
-
usd?: string;
|
|
6257
|
-
percent?: string;
|
|
6258
|
-
};
|
|
6259
|
-
/** @description The impact of the swap, not factoring in fees */
|
|
6260
|
-
swapImpact?: {
|
|
6261
|
-
usd?: string;
|
|
6262
|
-
percent?: string;
|
|
6263
|
-
};
|
|
6264
|
-
/** @description The swap rate which is equal to 1 input unit in the output unit, e.g. 1 USDC -> x ETH. This value can fluctuate based on gas and fees. */
|
|
6265
|
-
rate?: string;
|
|
6266
|
-
slippageTolerance?: {
|
|
6267
|
-
/** @description The total slippage tolerance applied to the order, in basis points (1/100th of a percent), e.g. 50 for 0.5% slippage. The origin and destination breakdowns are alternative allocations of this budget and are not additive. */
|
|
6268
|
-
total?: string;
|
|
6269
|
-
/** @description The slippage tolerance on the origin chain swap */
|
|
6270
|
-
origin?: {
|
|
6271
|
-
usd?: string;
|
|
6272
|
-
value?: string;
|
|
6273
|
-
percent?: string;
|
|
6274
|
-
};
|
|
6275
|
-
/** @description The slippage tolerance on the destination chain swap */
|
|
6276
|
-
destination?: {
|
|
6277
|
-
usd?: string;
|
|
6278
|
-
value?: string;
|
|
6279
|
-
percent?: string;
|
|
6280
|
-
};
|
|
6281
|
-
};
|
|
6282
|
-
};
|
|
6283
|
-
};
|
|
6284
|
-
};
|
|
6285
|
-
};
|
|
6286
|
-
/** @description Default Response */
|
|
6287
|
-
400: {
|
|
6288
|
-
content: {
|
|
6289
|
-
"application/json": {
|
|
6290
|
-
message?: string;
|
|
6291
|
-
errorCode?: string;
|
|
6292
|
-
};
|
|
6293
|
-
};
|
|
6294
|
-
};
|
|
6295
|
-
/** @description Default Response */
|
|
6296
|
-
401: {
|
|
6297
|
-
content: {
|
|
6298
|
-
"application/json": {
|
|
6299
|
-
message?: string;
|
|
6300
|
-
};
|
|
6301
|
-
};
|
|
6302
|
-
};
|
|
6303
|
-
/** @description Default Response */
|
|
6304
|
-
500: {
|
|
6305
|
-
content: {
|
|
6306
|
-
"application/json": {
|
|
6307
|
-
message?: string;
|
|
6308
|
-
};
|
|
6309
|
-
};
|
|
6310
|
-
};
|
|
6311
|
-
};
|
|
6312
|
-
};
|
|
6313
|
-
};
|
|
6314
|
-
"/execute": {
|
|
6315
|
-
post: {
|
|
6316
|
-
parameters: {
|
|
6317
|
-
header: {
|
|
6318
|
-
/** @description Required API key for authentication. Contact the team for getting an API Key */
|
|
6319
|
-
"x-api-key": string;
|
|
6320
|
-
};
|
|
6321
|
-
};
|
|
6322
|
-
requestBody: {
|
|
6323
|
-
content: {
|
|
6324
|
-
"application/json": {
|
|
6325
|
-
/**
|
|
6326
|
-
* @description The kind of gasless transaction to execute. Currently supported: rawCalls
|
|
6327
|
-
* @enum {string}
|
|
6328
|
-
*/
|
|
6329
|
-
executionKind: "rawCalls";
|
|
6330
|
-
/** @description Raw call parameters for the gasless transaction */
|
|
6331
|
-
data: {
|
|
6332
|
-
/** @description Chain ID of the EVM network */
|
|
6333
|
-
chainId: number;
|
|
6334
|
-
/** @description Address of the contract to call */
|
|
6335
|
-
to: string;
|
|
6336
|
-
/** @description Encoded function call data */
|
|
6337
|
-
data: string;
|
|
6338
|
-
/** @description ETH value to send with the call (in wei) */
|
|
6339
|
-
value: string;
|
|
6340
|
-
/** @description Authorization list for EIP-7702 transactions to be executed on destination chain */
|
|
6341
|
-
authorizationList?: {
|
|
6342
|
-
chainId: number;
|
|
6343
|
-
address: string;
|
|
6344
|
-
nonce: number;
|
|
6345
|
-
yParity: number;
|
|
6346
|
-
r: string;
|
|
6347
|
-
s: string;
|
|
6348
|
-
}[];
|
|
6349
|
-
};
|
|
6350
|
-
/** @description Options related to gas fee sponsorship, app referrer and destination calls */
|
|
6351
|
-
executionOptions: {
|
|
6352
|
-
/** @description The referrer of the app which is executing the gasless transaction */
|
|
6353
|
-
referrer: string;
|
|
6354
|
-
/** @description If the app should pay for the fees associated with the request */
|
|
6355
|
-
subsidizeFees: boolean;
|
|
6356
|
-
/** @description Destination execution data for the gasless transaction */
|
|
6357
|
-
destinationChainExecutionData?: {
|
|
6358
|
-
/** @description Calls to be executed on the destination chain */
|
|
6359
|
-
calls: {
|
|
6360
|
-
to?: string;
|
|
6361
|
-
value?: string;
|
|
6362
|
-
data?: string;
|
|
6363
|
-
}[];
|
|
6364
|
-
/** @description Authorization list for EIP-7702 transactions to be executed on destination chain */
|
|
6365
|
-
authorizationList?: {
|
|
6366
|
-
chainId: number;
|
|
6367
|
-
address: string;
|
|
6368
|
-
nonce: number;
|
|
6369
|
-
yParity: number;
|
|
6370
|
-
r: string;
|
|
6371
|
-
s: string;
|
|
6372
|
-
}[];
|
|
6373
|
-
};
|
|
6374
|
-
};
|
|
6375
|
-
/** @description The request ID of the gasless transaction to execute */
|
|
6376
|
-
requestId?: string;
|
|
6377
|
-
};
|
|
6378
|
-
};
|
|
6379
|
-
};
|
|
6380
|
-
responses: {
|
|
6381
|
-
/** @description Transaction successfully queued for execution */
|
|
6131
|
+
/** @description Transaction successfully queued for execution */
|
|
6382
6132
|
200: {
|
|
6383
6133
|
content: {
|
|
6384
6134
|
"application/json": {
|
|
@@ -6465,7 +6215,7 @@ export interface paths {
|
|
|
6465
6215
|
});
|
|
6466
6216
|
};
|
|
6467
6217
|
};
|
|
6468
|
-
/** @description Unauthorized - Missing or invalid API key
|
|
6218
|
+
/** @description Unauthorized - Missing or invalid API key */
|
|
6469
6219
|
401: {
|
|
6470
6220
|
content: {
|
|
6471
6221
|
"application/json": {
|
|
@@ -6719,79 +6469,10 @@ export interface paths {
|
|
|
6719
6469
|
destinationChainId?: number;
|
|
6720
6470
|
/** @description The timestamp when the quote request was created */
|
|
6721
6471
|
quoteCreatedAt?: number;
|
|
6722
|
-
|
|
6723
|
-
|
|
6724
|
-
|
|
6725
|
-
|
|
6726
|
-
};
|
|
6727
|
-
};
|
|
6728
|
-
"/requests/{requestId}/signature": {
|
|
6729
|
-
get: {
|
|
6730
|
-
parameters: {
|
|
6731
|
-
path: {
|
|
6732
|
-
requestId: string;
|
|
6733
|
-
};
|
|
6734
|
-
};
|
|
6735
|
-
responses: {
|
|
6736
|
-
/** @description Default Response */
|
|
6737
|
-
200: {
|
|
6738
|
-
content: {
|
|
6739
|
-
"application/json": {
|
|
6740
|
-
requestData?: {
|
|
6741
|
-
originChainId?: number;
|
|
6742
|
-
originUser?: string;
|
|
6743
|
-
originCurrency?: string;
|
|
6744
|
-
originAmount?: string;
|
|
6745
|
-
originTransferDestination?: string;
|
|
6746
|
-
destinationChainId?: number;
|
|
6747
|
-
destinationUser?: string;
|
|
6748
|
-
};
|
|
6749
|
-
signature?: string;
|
|
6750
|
-
};
|
|
6751
|
-
};
|
|
6752
|
-
};
|
|
6753
|
-
/** @description Default Response */
|
|
6754
|
-
400: {
|
|
6755
|
-
content: {
|
|
6756
|
-
"application/json": {
|
|
6757
|
-
message?: string;
|
|
6758
|
-
code?: string;
|
|
6759
|
-
};
|
|
6760
|
-
};
|
|
6761
|
-
};
|
|
6762
|
-
};
|
|
6763
|
-
};
|
|
6764
|
-
};
|
|
6765
|
-
"/requests/{requestId}/signature/v2": {
|
|
6766
|
-
get: {
|
|
6767
|
-
parameters: {
|
|
6768
|
-
path: {
|
|
6769
|
-
requestId: string;
|
|
6770
|
-
};
|
|
6771
|
-
};
|
|
6772
|
-
responses: {
|
|
6773
|
-
/** @description Default Response */
|
|
6774
|
-
200: {
|
|
6775
|
-
content: {
|
|
6776
|
-
"application/json": {
|
|
6777
|
-
requestData?: {
|
|
6778
|
-
originChainId?: number;
|
|
6779
|
-
originUser?: string;
|
|
6780
|
-
originCurrency?: string;
|
|
6781
|
-
destinationChainId?: number;
|
|
6782
|
-
destinationUser?: string;
|
|
6783
|
-
destinationCurrency?: string;
|
|
6784
|
-
};
|
|
6785
|
-
signature?: string;
|
|
6786
|
-
};
|
|
6787
|
-
};
|
|
6788
|
-
};
|
|
6789
|
-
/** @description Default Response */
|
|
6790
|
-
400: {
|
|
6791
|
-
content: {
|
|
6792
|
-
"application/json": {
|
|
6793
|
-
message?: string;
|
|
6794
|
-
code?: string;
|
|
6472
|
+
/** @enum {string|null} */
|
|
6473
|
+
failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "SOLVER_BALANCE_TOO_LOW" | "DEPOSITED_AMOUNT_TOO_LOW_TO_FILL" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "NO_QUOTES" | "MISSING_REVERT_DATA" | "REVERSE_SWAP_FAILED" | "GENERATE_SWAP_FAILED" | "TOO_LITTLE_RECEIVED" | "EXECUTION_REVERTED" | "NEW_CALLDATA_INCLUDES_HIGHER_RENT_FEE" | "TRANSACTION_REVERTED" | "TRANSACTION_TOO_LARGE" | "ORIGIN_CURRENCY_MISMATCH" | "NO_INTERNAL_SWAP_ROUTES_FOUND" | "SWAP_USES_TOO_MUCH_GAS" | "INSUFFICIENT_FUNDS_FOR_RENT" | "SPONSOR_BALANCE_TOO_LOW" | "ORDER_EXPIRED" | "ORDER_IS_CANCELLED" | "TRANSFER_FROM_FAILED" | "TRANSFER_FAILED" | "SIGNATURE_EXPIRED" | "INVALID_SIGNATURE" | "INSUFFICIENT_NATIVE_TOKENS_SUPPLIED" | "TRANSFER_AMOUNT_EXCEEDS_ALLOWANCE" | "TRANSFER_AMOUNT_EXCEEDS_BALANCE" | "INVALID_SENDER" | "ACCOUNT_ABSTRACTION_INVALID_NONCE" | "ACCOUNT_ABSTRACTION_SIGNATURE_ERROR" | "SEAPORT_INEXACT_FRACTION" | "TOKEN_NOT_TRANSFERABLE" | "ZERO_SELL_AMOUNT" | "MINT_NOT_ACTIVE" | "ERC_1155_TOO_MANY_REQUESTED" | "INCORRECT_PAYMENT" | "INVALID_GAS_PRICE" | "FLUID_DEX_ERROR" | "ORDER_ALREADY_FILLED" | "SEAPORT_INVALID_FULFILLER" | "INVALID_SIGNER" | "MINT_QUANTITY_EXCEEDS_MAX_PER_WALLET" | "MINT_QUANTITY_EXCEEDS_MAX_SUPPLY" | "JUPITER_INVALID_TOKEN_ACCOUNT" | "INVALID_NONCE" | "ACCOUNT_ABSTRACTION_GAS_LIMIT" | "CONTRACT_PAUSED" | "SWAP_IMPACT_TOO_HIGH" | "INSUFFICIENT_POOL_LIQUIDITY" | "TTL_EXPIRED" | "DEPOSIT_CONFIRMATION_TIMEOUT" | "ORPHANED_DEPOSIT_REFUND" | "GASLESS_PERMIT_BALANCE_TOO_LOW" | "MANUAL_ADMIN_REFUND" | "QUOTED_GAS_LIMIT_EXCEEDED" | "DESTINATION_TOKEN_TRANSFER_REJECTED" | "DEPOSIT_REORGED" | "BLOCKED_WALLET" | "PROTOCOL_DEADLINE_EXPIRED" | "TRANSACTION_NOT_INCLUDED" | "TRANSACTION_SUBMISSION_FAILED" | "N/A" | null;
|
|
6474
|
+
/** @enum {string|null} */
|
|
6475
|
+
refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | "MANUAL_REFUND_REQUIRED" | null;
|
|
6795
6476
|
};
|
|
6796
6477
|
};
|
|
6797
6478
|
};
|
|
@@ -7173,7 +6854,7 @@ export interface paths {
|
|
|
7173
6854
|
/** @enum {string} */
|
|
7174
6855
|
failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "SOLVER_BALANCE_TOO_LOW" | "DEPOSITED_AMOUNT_TOO_LOW_TO_FILL" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "NO_QUOTES" | "MISSING_REVERT_DATA" | "REVERSE_SWAP_FAILED" | "GENERATE_SWAP_FAILED" | "TOO_LITTLE_RECEIVED" | "EXECUTION_REVERTED" | "NEW_CALLDATA_INCLUDES_HIGHER_RENT_FEE" | "TRANSACTION_REVERTED" | "TRANSACTION_TOO_LARGE" | "ORIGIN_CURRENCY_MISMATCH" | "NO_INTERNAL_SWAP_ROUTES_FOUND" | "SWAP_USES_TOO_MUCH_GAS" | "INSUFFICIENT_FUNDS_FOR_RENT" | "SPONSOR_BALANCE_TOO_LOW" | "ORDER_EXPIRED" | "ORDER_IS_CANCELLED" | "TRANSFER_FROM_FAILED" | "TRANSFER_FAILED" | "SIGNATURE_EXPIRED" | "INVALID_SIGNATURE" | "INSUFFICIENT_NATIVE_TOKENS_SUPPLIED" | "TRANSFER_AMOUNT_EXCEEDS_ALLOWANCE" | "TRANSFER_AMOUNT_EXCEEDS_BALANCE" | "INVALID_SENDER" | "ACCOUNT_ABSTRACTION_INVALID_NONCE" | "ACCOUNT_ABSTRACTION_SIGNATURE_ERROR" | "SEAPORT_INEXACT_FRACTION" | "TOKEN_NOT_TRANSFERABLE" | "ZERO_SELL_AMOUNT" | "MINT_NOT_ACTIVE" | "ERC_1155_TOO_MANY_REQUESTED" | "INCORRECT_PAYMENT" | "INVALID_GAS_PRICE" | "FLUID_DEX_ERROR" | "ORDER_ALREADY_FILLED" | "SEAPORT_INVALID_FULFILLER" | "INVALID_SIGNER" | "MINT_QUANTITY_EXCEEDS_MAX_PER_WALLET" | "MINT_QUANTITY_EXCEEDS_MAX_SUPPLY" | "JUPITER_INVALID_TOKEN_ACCOUNT" | "INVALID_NONCE" | "ACCOUNT_ABSTRACTION_GAS_LIMIT" | "CONTRACT_PAUSED" | "SWAP_IMPACT_TOO_HIGH" | "INSUFFICIENT_POOL_LIQUIDITY" | "TTL_EXPIRED" | "DEPOSIT_CONFIRMATION_TIMEOUT" | "ORPHANED_DEPOSIT_REFUND" | "GASLESS_PERMIT_BALANCE_TOO_LOW" | "MANUAL_ADMIN_REFUND" | "QUOTED_GAS_LIMIT_EXCEEDED" | "DESTINATION_TOKEN_TRANSFER_REJECTED" | "DEPOSIT_REORGED" | "BLOCKED_WALLET" | "PROTOCOL_DEADLINE_EXPIRED" | "TRANSACTION_NOT_INCLUDED" | "TRANSACTION_SUBMISSION_FAILED" | "N/A";
|
|
7175
6856
|
/** @enum {string} */
|
|
7176
|
-
refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP";
|
|
6857
|
+
refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | "MANUAL_REFUND_REQUIRED";
|
|
7177
6858
|
/** @description Regenerated requestId that now owns the sweep/fill for a superseded deposit-address request. */
|
|
7178
6859
|
supersededByRequestId?: string | null;
|
|
7179
6860
|
failedTxHash?: string;
|
|
@@ -7291,13 +6972,13 @@ export interface paths {
|
|
|
7291
6972
|
amountUsd?: string;
|
|
7292
6973
|
minimumAmount?: string;
|
|
7293
6974
|
};
|
|
7294
|
-
appFees?: {
|
|
7295
|
-
recipient?: string;
|
|
7296
|
-
bps?: string;
|
|
7297
|
-
amount?: string;
|
|
7298
|
-
amountUsd?: string;
|
|
7299
|
-
amountUsdCurrent?: string;
|
|
7300
|
-
}[];
|
|
6975
|
+
appFees?: ({
|
|
6976
|
+
recipient?: string | null;
|
|
6977
|
+
bps?: string | null;
|
|
6978
|
+
amount?: string | null;
|
|
6979
|
+
amountUsd?: string | null;
|
|
6980
|
+
amountUsdCurrent?: string | null;
|
|
6981
|
+
})[];
|
|
7301
6982
|
subsidizedFee?: {
|
|
7302
6983
|
origin?: {
|
|
7303
6984
|
amount?: string;
|
|
@@ -7320,6 +7001,8 @@ export interface paths {
|
|
|
7320
7001
|
selectedComponents: ("execution" | "swap" | "relay" | "app" | "rent")[];
|
|
7321
7002
|
/** @description The requested sponsorship cap in USD micro-units, when one was configured for the request. */
|
|
7322
7003
|
maxSubsidizationAmount?: string;
|
|
7004
|
+
/** @description The requested share of each selected fee bucket the sponsor covers, in bps (10000 = 100%), when one was configured for the request. */
|
|
7005
|
+
subsidizationBps?: number;
|
|
7323
7006
|
/** @description Whether the configured sponsorship cap limited the selected fee buckets for this phase. */
|
|
7324
7007
|
capHit: boolean;
|
|
7325
7008
|
/** @description Per-bucket sponsorship details for the sponsorable fee components. */
|
|
@@ -8020,6 +7703,8 @@ export interface paths {
|
|
|
8020
7703
|
selectedComponents: ("execution" | "swap" | "relay" | "app" | "rent")[];
|
|
8021
7704
|
/** @description The requested sponsorship cap in USD micro-units, when one was configured for the request. */
|
|
8022
7705
|
maxSubsidizationAmount?: string;
|
|
7706
|
+
/** @description The requested share of each selected fee bucket the sponsor covers, in bps (10000 = 100%), when one was configured for the request. */
|
|
7707
|
+
subsidizationBps?: number;
|
|
8023
7708
|
/** @description Whether the configured sponsorship cap limited the selected fee buckets for this phase. */
|
|
8024
7709
|
capHit: boolean;
|
|
8025
7710
|
/** @description Per-bucket sponsorship details for the sponsorable fee components. */
|
|
@@ -8773,13 +8458,13 @@ export interface paths {
|
|
|
8773
8458
|
};
|
|
8774
8459
|
};
|
|
8775
8460
|
} | null;
|
|
8776
|
-
paidAppFees?: {
|
|
8777
|
-
recipient?: string;
|
|
8778
|
-
bps?: string;
|
|
8779
|
-
amount?: string;
|
|
8780
|
-
amountUsd?: string;
|
|
8781
|
-
amountUsdCurrent?: string;
|
|
8782
|
-
}[];
|
|
8461
|
+
paidAppFees?: ({
|
|
8462
|
+
recipient?: string | null;
|
|
8463
|
+
bps?: string | null;
|
|
8464
|
+
amount?: string | null;
|
|
8465
|
+
amountUsd?: string | null;
|
|
8466
|
+
amountUsdCurrent?: string | null;
|
|
8467
|
+
})[];
|
|
8783
8468
|
platformFee?: ({
|
|
8784
8469
|
bucket?: string;
|
|
8785
8470
|
ruleId?: string;
|
|
@@ -9320,6 +9005,14 @@ export interface paths {
|
|
|
9320
9005
|
updatedAt?: string;
|
|
9321
9006
|
})[];
|
|
9322
9007
|
continuation?: string;
|
|
9008
|
+
deprecation?: {
|
|
9009
|
+
message: string;
|
|
9010
|
+
deprecatedAt: string;
|
|
9011
|
+
throttledFrom: string;
|
|
9012
|
+
sunsetAt: string;
|
|
9013
|
+
successor: string;
|
|
9014
|
+
migrationGuide: string;
|
|
9015
|
+
};
|
|
9323
9016
|
};
|
|
9324
9017
|
};
|
|
9325
9018
|
};
|
|
@@ -9367,11 +9060,13 @@ export interface paths {
|
|
|
9367
9060
|
/** @description Filter requests by failure reason. Only returns requests that failed with this specific reason. */
|
|
9368
9061
|
failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "SOLVER_BALANCE_TOO_LOW" | "DEPOSITED_AMOUNT_TOO_LOW_TO_FILL" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "NO_QUOTES" | "MISSING_REVERT_DATA" | "REVERSE_SWAP_FAILED" | "GENERATE_SWAP_FAILED" | "TOO_LITTLE_RECEIVED" | "EXECUTION_REVERTED" | "NEW_CALLDATA_INCLUDES_HIGHER_RENT_FEE" | "TRANSACTION_REVERTED" | "TRANSACTION_TOO_LARGE" | "ORIGIN_CURRENCY_MISMATCH" | "NO_INTERNAL_SWAP_ROUTES_FOUND" | "SWAP_USES_TOO_MUCH_GAS" | "INSUFFICIENT_FUNDS_FOR_RENT" | "SPONSOR_BALANCE_TOO_LOW" | "ORDER_EXPIRED" | "ORDER_IS_CANCELLED" | "TRANSFER_FROM_FAILED" | "TRANSFER_FAILED" | "SIGNATURE_EXPIRED" | "INVALID_SIGNATURE" | "INSUFFICIENT_NATIVE_TOKENS_SUPPLIED" | "TRANSFER_AMOUNT_EXCEEDS_ALLOWANCE" | "TRANSFER_AMOUNT_EXCEEDS_BALANCE" | "INVALID_SENDER" | "ACCOUNT_ABSTRACTION_INVALID_NONCE" | "ACCOUNT_ABSTRACTION_SIGNATURE_ERROR" | "SEAPORT_INEXACT_FRACTION" | "TOKEN_NOT_TRANSFERABLE" | "ZERO_SELL_AMOUNT" | "MINT_NOT_ACTIVE" | "ERC_1155_TOO_MANY_REQUESTED" | "INCORRECT_PAYMENT" | "INVALID_GAS_PRICE" | "FLUID_DEX_ERROR" | "ORDER_ALREADY_FILLED" | "SEAPORT_INVALID_FULFILLER" | "INVALID_SIGNER" | "MINT_QUANTITY_EXCEEDS_MAX_PER_WALLET" | "MINT_QUANTITY_EXCEEDS_MAX_SUPPLY" | "JUPITER_INVALID_TOKEN_ACCOUNT" | "INVALID_NONCE" | "ACCOUNT_ABSTRACTION_GAS_LIMIT" | "CONTRACT_PAUSED" | "SWAP_IMPACT_TOO_HIGH" | "INSUFFICIENT_POOL_LIQUIDITY" | "TTL_EXPIRED" | "DEPOSIT_CONFIRMATION_TIMEOUT" | "ORPHANED_DEPOSIT_REFUND" | "GASLESS_PERMIT_BALANCE_TOO_LOW" | "MANUAL_ADMIN_REFUND" | "QUOTED_GAS_LIMIT_EXCEEDED" | "DESTINATION_TOKEN_TRANSFER_REJECTED" | "DEPOSIT_REORGED" | "BLOCKED_WALLET" | "PROTOCOL_DEADLINE_EXPIRED" | "TRANSACTION_NOT_INCLUDED" | "TRANSACTION_SUBMISSION_FAILED" | "N/A";
|
|
9369
9062
|
/** @description Filter requests by refund failure reason. */
|
|
9370
|
-
refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP";
|
|
9063
|
+
refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | "MANUAL_REFUND_REQUIRED";
|
|
9371
9064
|
/** @description Filter requests by API key. Accepts a single value or a comma-separated list (e.g. key1,key2) — results include requests matching any of the supplied keys. */
|
|
9372
9065
|
apiKey?: string;
|
|
9373
9066
|
/** @description Filter requests by requestType (case-insensitive). Supported values: Bridge, Crosschain Swap, Same-chain Swap, Send, Wrap, Unwrap, Call. */
|
|
9374
9067
|
requestType?: string;
|
|
9068
|
+
/** @description Filter requests by the exact `referrer` value supplied at quote time. Must be combined with the `apiKey` parameter, and every supplied key must belong to the authenticating integrator — referrer filtering only exposes your own requests. */
|
|
9069
|
+
referrer?: string;
|
|
9375
9070
|
/** @description Filter by origin currency chain ID. */
|
|
9376
9071
|
currencyInChainId?: number;
|
|
9377
9072
|
/** @description Filter by destination currency chain ID. */
|
|
@@ -9414,7 +9109,7 @@ export interface paths {
|
|
|
9414
9109
|
includeAuthenticatedData?: boolean;
|
|
9415
9110
|
/** @description Only effective when `id` is also provided. When true, returns the parent request AND any child requests. When false or omitted, only the exact `request_id` match is returned. */
|
|
9416
9111
|
includeChildRequests?: boolean;
|
|
9417
|
-
/** @description JSON-encoded array of filter-group objects. Fields within each group are AND'd; groups are OR'd. Prefix a key with 'not:' to negate it (must_not). Values can be a scalar or an array (OR semantics within the field). Example: [{"depositAddress":"0xabc","originChainId":8453},{"depositAddress":"0x123","originChainId":1}]. Negation example: [{"not:status":"failure"}]. Array value example: [{"not:status":["failure","refund"]}]. */
|
|
9112
|
+
/** @description JSON-encoded array of filter-group objects. Fields within each group are AND'd; groups are OR'd. Prefix a key with 'not:' to negate it (must_not). Values can be a scalar or an array (OR semantics within the field). Example: [{"depositAddress":"0xabc","originChainId":8453},{"depositAddress":"0x123","originChainId":1}]. Negation example: [{"not:status":"failure"}]. Array value example: [{"not:status":["failure","refund"]}]. A value of null is a null-check ("is empty"/"is not empty") instead of an equality test, for any key. Null-check example: [{"depositAddress":null}] (is empty / does not exist), [{"not:depositAddress":null}] (is not empty / exists). null cannot be combined with real values in an array. Using a `referrer` key (or `not:referrer`) in any group requires the top-level `apiKey` parameter with keys owned by the authenticating integrator, which scopes the entire result set to your own requests. */
|
|
9418
9113
|
filters?: string;
|
|
9419
9114
|
};
|
|
9420
9115
|
header: {
|
|
@@ -9452,7 +9147,7 @@ export interface paths {
|
|
|
9452
9147
|
/** @enum {string|null} */
|
|
9453
9148
|
failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "SOLVER_BALANCE_TOO_LOW" | "DEPOSITED_AMOUNT_TOO_LOW_TO_FILL" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "NO_QUOTES" | "MISSING_REVERT_DATA" | "REVERSE_SWAP_FAILED" | "GENERATE_SWAP_FAILED" | "TOO_LITTLE_RECEIVED" | "EXECUTION_REVERTED" | "NEW_CALLDATA_INCLUDES_HIGHER_RENT_FEE" | "TRANSACTION_REVERTED" | "TRANSACTION_TOO_LARGE" | "ORIGIN_CURRENCY_MISMATCH" | "NO_INTERNAL_SWAP_ROUTES_FOUND" | "SWAP_USES_TOO_MUCH_GAS" | "INSUFFICIENT_FUNDS_FOR_RENT" | "SPONSOR_BALANCE_TOO_LOW" | "ORDER_EXPIRED" | "ORDER_IS_CANCELLED" | "TRANSFER_FROM_FAILED" | "TRANSFER_FAILED" | "SIGNATURE_EXPIRED" | "INVALID_SIGNATURE" | "INSUFFICIENT_NATIVE_TOKENS_SUPPLIED" | "TRANSFER_AMOUNT_EXCEEDS_ALLOWANCE" | "TRANSFER_AMOUNT_EXCEEDS_BALANCE" | "INVALID_SENDER" | "ACCOUNT_ABSTRACTION_INVALID_NONCE" | "ACCOUNT_ABSTRACTION_SIGNATURE_ERROR" | "SEAPORT_INEXACT_FRACTION" | "TOKEN_NOT_TRANSFERABLE" | "ZERO_SELL_AMOUNT" | "MINT_NOT_ACTIVE" | "ERC_1155_TOO_MANY_REQUESTED" | "INCORRECT_PAYMENT" | "INVALID_GAS_PRICE" | "FLUID_DEX_ERROR" | "ORDER_ALREADY_FILLED" | "SEAPORT_INVALID_FULFILLER" | "INVALID_SIGNER" | "MINT_QUANTITY_EXCEEDS_MAX_PER_WALLET" | "MINT_QUANTITY_EXCEEDS_MAX_SUPPLY" | "JUPITER_INVALID_TOKEN_ACCOUNT" | "INVALID_NONCE" | "ACCOUNT_ABSTRACTION_GAS_LIMIT" | "CONTRACT_PAUSED" | "SWAP_IMPACT_TOO_HIGH" | "INSUFFICIENT_POOL_LIQUIDITY" | "TTL_EXPIRED" | "DEPOSIT_CONFIRMATION_TIMEOUT" | "ORPHANED_DEPOSIT_REFUND" | "GASLESS_PERMIT_BALANCE_TOO_LOW" | "MANUAL_ADMIN_REFUND" | "QUOTED_GAS_LIMIT_EXCEEDED" | "DESTINATION_TOKEN_TRANSFER_REJECTED" | "DEPOSIT_REORGED" | "BLOCKED_WALLET" | "PROTOCOL_DEADLINE_EXPIRED" | "TRANSACTION_NOT_INCLUDED" | "TRANSACTION_SUBMISSION_FAILED" | "N/A" | null;
|
|
9454
9149
|
/** @enum {string|null} */
|
|
9455
|
-
refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | null;
|
|
9150
|
+
refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | "MANUAL_REFUND_REQUIRED" | null;
|
|
9456
9151
|
failedTxHash?: string;
|
|
9457
9152
|
failedTxBlockNumber?: number;
|
|
9458
9153
|
failedCallData?: {
|
|
@@ -9491,19 +9186,19 @@ export interface paths {
|
|
|
9491
9186
|
stateChanges?: unknown;
|
|
9492
9187
|
})[];
|
|
9493
9188
|
appFees?: {
|
|
9494
|
-
quoted?: {
|
|
9495
|
-
recipient?: string;
|
|
9496
|
-
bps?: string;
|
|
9497
|
-
amount?: string;
|
|
9498
|
-
amountFormatted?: string;
|
|
9499
|
-
}[];
|
|
9500
|
-
actual?: {
|
|
9501
|
-
recipient?: string;
|
|
9502
|
-
bps?: string;
|
|
9503
|
-
amount?: string;
|
|
9504
|
-
amountFormatted?: string;
|
|
9505
|
-
amountUsd?: string;
|
|
9506
|
-
}[];
|
|
9189
|
+
quoted?: ({
|
|
9190
|
+
recipient?: string | null;
|
|
9191
|
+
bps?: string | null;
|
|
9192
|
+
amount?: string | null;
|
|
9193
|
+
amountFormatted?: string | null;
|
|
9194
|
+
})[];
|
|
9195
|
+
actual?: ({
|
|
9196
|
+
recipient?: string | null;
|
|
9197
|
+
bps?: string | null;
|
|
9198
|
+
amount?: string | null;
|
|
9199
|
+
amountFormatted?: string | null;
|
|
9200
|
+
amountUsd?: string | null;
|
|
9201
|
+
})[];
|
|
9507
9202
|
currency?: {
|
|
9508
9203
|
chainId?: number;
|
|
9509
9204
|
address?: string;
|
|
@@ -9525,6 +9220,8 @@ export interface paths {
|
|
|
9525
9220
|
selectedComponents: ("execution" | "swap" | "platform" | "app" | "rent")[];
|
|
9526
9221
|
/** @description The requested sponsorship cap in USD micro-units, when one was configured for the request. */
|
|
9527
9222
|
maxSubsidizationAmount?: string;
|
|
9223
|
+
/** @description The requested share of each selected fee bucket the sponsor covers, in bps (10000 = 100%), when one was configured for the request. */
|
|
9224
|
+
subsidizationBps?: number;
|
|
9528
9225
|
/** @description Whether the configured sponsorship cap limited the selected fee buckets for this phase. */
|
|
9529
9226
|
capHit: boolean;
|
|
9530
9227
|
/** @description Per-bucket sponsorship details for the five sponsorable fee components. */
|
|
@@ -9535,24 +9232,24 @@ export interface paths {
|
|
|
9535
9232
|
selected: boolean;
|
|
9536
9233
|
/** @description The full amount charged for this fee bucket. */
|
|
9537
9234
|
total: {
|
|
9538
|
-
amount?: string;
|
|
9539
|
-
amountFormatted?: string;
|
|
9540
|
-
amountUsd?: string;
|
|
9541
|
-
minimumAmount?: string;
|
|
9235
|
+
amount?: string | null;
|
|
9236
|
+
amountFormatted?: string | null;
|
|
9237
|
+
amountUsd?: string | null;
|
|
9238
|
+
minimumAmount?: string | null;
|
|
9542
9239
|
};
|
|
9543
9240
|
/** @description The portion of this fee bucket covered by the sponsor. */
|
|
9544
9241
|
sponsored: {
|
|
9545
|
-
amount?: string;
|
|
9546
|
-
amountFormatted?: string;
|
|
9547
|
-
amountUsd?: string;
|
|
9548
|
-
minimumAmount?: string;
|
|
9242
|
+
amount?: string | null;
|
|
9243
|
+
amountFormatted?: string | null;
|
|
9244
|
+
amountUsd?: string | null;
|
|
9245
|
+
minimumAmount?: string | null;
|
|
9549
9246
|
};
|
|
9550
9247
|
/** @description The portion of this fee bucket that remained user-paid. */
|
|
9551
9248
|
userPays: {
|
|
9552
|
-
amount?: string;
|
|
9553
|
-
amountFormatted?: string;
|
|
9554
|
-
amountUsd?: string;
|
|
9555
|
-
minimumAmount?: string;
|
|
9249
|
+
amount?: string | null;
|
|
9250
|
+
amountFormatted?: string | null;
|
|
9251
|
+
amountUsd?: string | null;
|
|
9252
|
+
minimumAmount?: string | null;
|
|
9556
9253
|
};
|
|
9557
9254
|
};
|
|
9558
9255
|
/** @description Swap fee sponsorship details. */
|
|
@@ -9561,24 +9258,24 @@ export interface paths {
|
|
|
9561
9258
|
selected: boolean;
|
|
9562
9259
|
/** @description The full amount charged for this fee bucket. */
|
|
9563
9260
|
total: {
|
|
9564
|
-
amount?: string;
|
|
9565
|
-
amountFormatted?: string;
|
|
9566
|
-
amountUsd?: string;
|
|
9567
|
-
minimumAmount?: string;
|
|
9261
|
+
amount?: string | null;
|
|
9262
|
+
amountFormatted?: string | null;
|
|
9263
|
+
amountUsd?: string | null;
|
|
9264
|
+
minimumAmount?: string | null;
|
|
9568
9265
|
};
|
|
9569
9266
|
/** @description The portion of this fee bucket covered by the sponsor. */
|
|
9570
9267
|
sponsored: {
|
|
9571
|
-
amount?: string;
|
|
9572
|
-
amountFormatted?: string;
|
|
9573
|
-
amountUsd?: string;
|
|
9574
|
-
minimumAmount?: string;
|
|
9268
|
+
amount?: string | null;
|
|
9269
|
+
amountFormatted?: string | null;
|
|
9270
|
+
amountUsd?: string | null;
|
|
9271
|
+
minimumAmount?: string | null;
|
|
9575
9272
|
};
|
|
9576
9273
|
/** @description The portion of this fee bucket that remained user-paid. */
|
|
9577
9274
|
userPays: {
|
|
9578
|
-
amount?: string;
|
|
9579
|
-
amountFormatted?: string;
|
|
9580
|
-
amountUsd?: string;
|
|
9581
|
-
minimumAmount?: string;
|
|
9275
|
+
amount?: string | null;
|
|
9276
|
+
amountFormatted?: string | null;
|
|
9277
|
+
amountUsd?: string | null;
|
|
9278
|
+
minimumAmount?: string | null;
|
|
9582
9279
|
};
|
|
9583
9280
|
};
|
|
9584
9281
|
/** @description Platform fee sponsorship details. */
|
|
@@ -9587,24 +9284,24 @@ export interface paths {
|
|
|
9587
9284
|
selected: boolean;
|
|
9588
9285
|
/** @description The full amount charged for this fee bucket. */
|
|
9589
9286
|
total: {
|
|
9590
|
-
amount?: string;
|
|
9591
|
-
amountFormatted?: string;
|
|
9592
|
-
amountUsd?: string;
|
|
9593
|
-
minimumAmount?: string;
|
|
9287
|
+
amount?: string | null;
|
|
9288
|
+
amountFormatted?: string | null;
|
|
9289
|
+
amountUsd?: string | null;
|
|
9290
|
+
minimumAmount?: string | null;
|
|
9594
9291
|
};
|
|
9595
9292
|
/** @description The portion of this fee bucket covered by the sponsor. */
|
|
9596
9293
|
sponsored: {
|
|
9597
|
-
amount?: string;
|
|
9598
|
-
amountFormatted?: string;
|
|
9599
|
-
amountUsd?: string;
|
|
9600
|
-
minimumAmount?: string;
|
|
9294
|
+
amount?: string | null;
|
|
9295
|
+
amountFormatted?: string | null;
|
|
9296
|
+
amountUsd?: string | null;
|
|
9297
|
+
minimumAmount?: string | null;
|
|
9601
9298
|
};
|
|
9602
9299
|
/** @description The portion of this fee bucket that remained user-paid. */
|
|
9603
9300
|
userPays: {
|
|
9604
|
-
amount?: string;
|
|
9605
|
-
amountFormatted?: string;
|
|
9606
|
-
amountUsd?: string;
|
|
9607
|
-
minimumAmount?: string;
|
|
9301
|
+
amount?: string | null;
|
|
9302
|
+
amountFormatted?: string | null;
|
|
9303
|
+
amountUsd?: string | null;
|
|
9304
|
+
minimumAmount?: string | null;
|
|
9608
9305
|
};
|
|
9609
9306
|
};
|
|
9610
9307
|
/** @description App fee sponsorship details. */
|
|
@@ -9613,24 +9310,24 @@ export interface paths {
|
|
|
9613
9310
|
selected: boolean;
|
|
9614
9311
|
/** @description The full amount charged for this fee bucket. */
|
|
9615
9312
|
total: {
|
|
9616
|
-
amount?: string;
|
|
9617
|
-
amountFormatted?: string;
|
|
9618
|
-
amountUsd?: string;
|
|
9619
|
-
minimumAmount?: string;
|
|
9313
|
+
amount?: string | null;
|
|
9314
|
+
amountFormatted?: string | null;
|
|
9315
|
+
amountUsd?: string | null;
|
|
9316
|
+
minimumAmount?: string | null;
|
|
9620
9317
|
};
|
|
9621
9318
|
/** @description The portion of this fee bucket covered by the sponsor. */
|
|
9622
9319
|
sponsored: {
|
|
9623
|
-
amount?: string;
|
|
9624
|
-
amountFormatted?: string;
|
|
9625
|
-
amountUsd?: string;
|
|
9626
|
-
minimumAmount?: string;
|
|
9320
|
+
amount?: string | null;
|
|
9321
|
+
amountFormatted?: string | null;
|
|
9322
|
+
amountUsd?: string | null;
|
|
9323
|
+
minimumAmount?: string | null;
|
|
9627
9324
|
};
|
|
9628
9325
|
/** @description The portion of this fee bucket that remained user-paid. */
|
|
9629
9326
|
userPays: {
|
|
9630
|
-
amount?: string;
|
|
9631
|
-
amountFormatted?: string;
|
|
9632
|
-
amountUsd?: string;
|
|
9633
|
-
minimumAmount?: string;
|
|
9327
|
+
amount?: string | null;
|
|
9328
|
+
amountFormatted?: string | null;
|
|
9329
|
+
amountUsd?: string | null;
|
|
9330
|
+
minimumAmount?: string | null;
|
|
9634
9331
|
};
|
|
9635
9332
|
};
|
|
9636
9333
|
/** @description Solana ATA rent sponsorship details. */
|
|
@@ -9639,40 +9336,40 @@ export interface paths {
|
|
|
9639
9336
|
selected: boolean;
|
|
9640
9337
|
/** @description The full amount charged for this fee bucket. */
|
|
9641
9338
|
total: {
|
|
9642
|
-
amount?: string;
|
|
9643
|
-
amountFormatted?: string;
|
|
9644
|
-
amountUsd?: string;
|
|
9645
|
-
minimumAmount?: string;
|
|
9339
|
+
amount?: string | null;
|
|
9340
|
+
amountFormatted?: string | null;
|
|
9341
|
+
amountUsd?: string | null;
|
|
9342
|
+
minimumAmount?: string | null;
|
|
9646
9343
|
};
|
|
9647
9344
|
/** @description The portion of this fee bucket covered by the sponsor. */
|
|
9648
9345
|
sponsored: {
|
|
9649
|
-
amount?: string;
|
|
9650
|
-
amountFormatted?: string;
|
|
9651
|
-
amountUsd?: string;
|
|
9652
|
-
minimumAmount?: string;
|
|
9346
|
+
amount?: string | null;
|
|
9347
|
+
amountFormatted?: string | null;
|
|
9348
|
+
amountUsd?: string | null;
|
|
9349
|
+
minimumAmount?: string | null;
|
|
9653
9350
|
};
|
|
9654
9351
|
/** @description The portion of this fee bucket that remained user-paid. */
|
|
9655
9352
|
userPays: {
|
|
9656
|
-
amount?: string;
|
|
9657
|
-
amountFormatted?: string;
|
|
9658
|
-
amountUsd?: string;
|
|
9659
|
-
minimumAmount?: string;
|
|
9353
|
+
amount?: string | null;
|
|
9354
|
+
amountFormatted?: string | null;
|
|
9355
|
+
amountUsd?: string | null;
|
|
9356
|
+
minimumAmount?: string | null;
|
|
9660
9357
|
};
|
|
9661
9358
|
};
|
|
9662
9359
|
};
|
|
9663
9360
|
/** @description The total amount sponsored for this phase. */
|
|
9664
9361
|
sponsoredTotal: {
|
|
9665
|
-
amount?: string;
|
|
9666
|
-
amountFormatted?: string;
|
|
9667
|
-
amountUsd?: string;
|
|
9668
|
-
minimumAmount?: string;
|
|
9362
|
+
amount?: string | null;
|
|
9363
|
+
amountFormatted?: string | null;
|
|
9364
|
+
amountUsd?: string | null;
|
|
9365
|
+
minimumAmount?: string | null;
|
|
9669
9366
|
};
|
|
9670
9367
|
/** @description The total amount the user paid across the sponsorable fee buckets for this phase. */
|
|
9671
9368
|
userPaysTotal: {
|
|
9672
|
-
amount?: string;
|
|
9673
|
-
amountFormatted?: string;
|
|
9674
|
-
amountUsd?: string;
|
|
9675
|
-
minimumAmount?: string;
|
|
9369
|
+
amount?: string | null;
|
|
9370
|
+
amountFormatted?: string | null;
|
|
9371
|
+
amountUsd?: string | null;
|
|
9372
|
+
minimumAmount?: string | null;
|
|
9676
9373
|
};
|
|
9677
9374
|
};
|
|
9678
9375
|
/** @description The post-solve sponsorship outcome recorded for the request. */
|
|
@@ -9681,6 +9378,8 @@ export interface paths {
|
|
|
9681
9378
|
selectedComponents: ("execution" | "swap" | "platform" | "app" | "rent")[];
|
|
9682
9379
|
/** @description The requested sponsorship cap in USD micro-units, when one was configured for the request. */
|
|
9683
9380
|
maxSubsidizationAmount?: string;
|
|
9381
|
+
/** @description The requested share of each selected fee bucket the sponsor covers, in bps (10000 = 100%), when one was configured for the request. */
|
|
9382
|
+
subsidizationBps?: number;
|
|
9684
9383
|
/** @description Whether the configured sponsorship cap limited the selected fee buckets for this phase. */
|
|
9685
9384
|
capHit: boolean;
|
|
9686
9385
|
/** @description Per-bucket sponsorship details for the five sponsorable fee components. */
|
|
@@ -9691,24 +9390,24 @@ export interface paths {
|
|
|
9691
9390
|
selected: boolean;
|
|
9692
9391
|
/** @description The full amount charged for this fee bucket. */
|
|
9693
9392
|
total: {
|
|
9694
|
-
amount?: string;
|
|
9695
|
-
amountFormatted?: string;
|
|
9696
|
-
amountUsd?: string;
|
|
9697
|
-
minimumAmount?: string;
|
|
9393
|
+
amount?: string | null;
|
|
9394
|
+
amountFormatted?: string | null;
|
|
9395
|
+
amountUsd?: string | null;
|
|
9396
|
+
minimumAmount?: string | null;
|
|
9698
9397
|
};
|
|
9699
9398
|
/** @description The portion of this fee bucket covered by the sponsor. */
|
|
9700
9399
|
sponsored: {
|
|
9701
|
-
amount?: string;
|
|
9702
|
-
amountFormatted?: string;
|
|
9703
|
-
amountUsd?: string;
|
|
9704
|
-
minimumAmount?: string;
|
|
9400
|
+
amount?: string | null;
|
|
9401
|
+
amountFormatted?: string | null;
|
|
9402
|
+
amountUsd?: string | null;
|
|
9403
|
+
minimumAmount?: string | null;
|
|
9705
9404
|
};
|
|
9706
9405
|
/** @description The portion of this fee bucket that remained user-paid. */
|
|
9707
9406
|
userPays: {
|
|
9708
|
-
amount?: string;
|
|
9709
|
-
amountFormatted?: string;
|
|
9710
|
-
amountUsd?: string;
|
|
9711
|
-
minimumAmount?: string;
|
|
9407
|
+
amount?: string | null;
|
|
9408
|
+
amountFormatted?: string | null;
|
|
9409
|
+
amountUsd?: string | null;
|
|
9410
|
+
minimumAmount?: string | null;
|
|
9712
9411
|
};
|
|
9713
9412
|
};
|
|
9714
9413
|
/** @description Swap fee sponsorship details. */
|
|
@@ -9717,24 +9416,24 @@ export interface paths {
|
|
|
9717
9416
|
selected: boolean;
|
|
9718
9417
|
/** @description The full amount charged for this fee bucket. */
|
|
9719
9418
|
total: {
|
|
9720
|
-
amount?: string;
|
|
9721
|
-
amountFormatted?: string;
|
|
9722
|
-
amountUsd?: string;
|
|
9723
|
-
minimumAmount?: string;
|
|
9419
|
+
amount?: string | null;
|
|
9420
|
+
amountFormatted?: string | null;
|
|
9421
|
+
amountUsd?: string | null;
|
|
9422
|
+
minimumAmount?: string | null;
|
|
9724
9423
|
};
|
|
9725
9424
|
/** @description The portion of this fee bucket covered by the sponsor. */
|
|
9726
9425
|
sponsored: {
|
|
9727
|
-
amount?: string;
|
|
9728
|
-
amountFormatted?: string;
|
|
9729
|
-
amountUsd?: string;
|
|
9730
|
-
minimumAmount?: string;
|
|
9426
|
+
amount?: string | null;
|
|
9427
|
+
amountFormatted?: string | null;
|
|
9428
|
+
amountUsd?: string | null;
|
|
9429
|
+
minimumAmount?: string | null;
|
|
9731
9430
|
};
|
|
9732
9431
|
/** @description The portion of this fee bucket that remained user-paid. */
|
|
9733
9432
|
userPays: {
|
|
9734
|
-
amount?: string;
|
|
9735
|
-
amountFormatted?: string;
|
|
9736
|
-
amountUsd?: string;
|
|
9737
|
-
minimumAmount?: string;
|
|
9433
|
+
amount?: string | null;
|
|
9434
|
+
amountFormatted?: string | null;
|
|
9435
|
+
amountUsd?: string | null;
|
|
9436
|
+
minimumAmount?: string | null;
|
|
9738
9437
|
};
|
|
9739
9438
|
};
|
|
9740
9439
|
/** @description Platform fee sponsorship details. */
|
|
@@ -9743,24 +9442,24 @@ export interface paths {
|
|
|
9743
9442
|
selected: boolean;
|
|
9744
9443
|
/** @description The full amount charged for this fee bucket. */
|
|
9745
9444
|
total: {
|
|
9746
|
-
amount?: string;
|
|
9747
|
-
amountFormatted?: string;
|
|
9748
|
-
amountUsd?: string;
|
|
9749
|
-
minimumAmount?: string;
|
|
9445
|
+
amount?: string | null;
|
|
9446
|
+
amountFormatted?: string | null;
|
|
9447
|
+
amountUsd?: string | null;
|
|
9448
|
+
minimumAmount?: string | null;
|
|
9750
9449
|
};
|
|
9751
9450
|
/** @description The portion of this fee bucket covered by the sponsor. */
|
|
9752
9451
|
sponsored: {
|
|
9753
|
-
amount?: string;
|
|
9754
|
-
amountFormatted?: string;
|
|
9755
|
-
amountUsd?: string;
|
|
9756
|
-
minimumAmount?: string;
|
|
9452
|
+
amount?: string | null;
|
|
9453
|
+
amountFormatted?: string | null;
|
|
9454
|
+
amountUsd?: string | null;
|
|
9455
|
+
minimumAmount?: string | null;
|
|
9757
9456
|
};
|
|
9758
9457
|
/** @description The portion of this fee bucket that remained user-paid. */
|
|
9759
9458
|
userPays: {
|
|
9760
|
-
amount?: string;
|
|
9761
|
-
amountFormatted?: string;
|
|
9762
|
-
amountUsd?: string;
|
|
9763
|
-
minimumAmount?: string;
|
|
9459
|
+
amount?: string | null;
|
|
9460
|
+
amountFormatted?: string | null;
|
|
9461
|
+
amountUsd?: string | null;
|
|
9462
|
+
minimumAmount?: string | null;
|
|
9764
9463
|
};
|
|
9765
9464
|
};
|
|
9766
9465
|
/** @description App fee sponsorship details. */
|
|
@@ -9769,24 +9468,24 @@ export interface paths {
|
|
|
9769
9468
|
selected: boolean;
|
|
9770
9469
|
/** @description The full amount charged for this fee bucket. */
|
|
9771
9470
|
total: {
|
|
9772
|
-
amount?: string;
|
|
9773
|
-
amountFormatted?: string;
|
|
9774
|
-
amountUsd?: string;
|
|
9775
|
-
minimumAmount?: string;
|
|
9471
|
+
amount?: string | null;
|
|
9472
|
+
amountFormatted?: string | null;
|
|
9473
|
+
amountUsd?: string | null;
|
|
9474
|
+
minimumAmount?: string | null;
|
|
9776
9475
|
};
|
|
9777
9476
|
/** @description The portion of this fee bucket covered by the sponsor. */
|
|
9778
9477
|
sponsored: {
|
|
9779
|
-
amount?: string;
|
|
9780
|
-
amountFormatted?: string;
|
|
9781
|
-
amountUsd?: string;
|
|
9782
|
-
minimumAmount?: string;
|
|
9478
|
+
amount?: string | null;
|
|
9479
|
+
amountFormatted?: string | null;
|
|
9480
|
+
amountUsd?: string | null;
|
|
9481
|
+
minimumAmount?: string | null;
|
|
9783
9482
|
};
|
|
9784
9483
|
/** @description The portion of this fee bucket that remained user-paid. */
|
|
9785
9484
|
userPays: {
|
|
9786
|
-
amount?: string;
|
|
9787
|
-
amountFormatted?: string;
|
|
9788
|
-
amountUsd?: string;
|
|
9789
|
-
minimumAmount?: string;
|
|
9485
|
+
amount?: string | null;
|
|
9486
|
+
amountFormatted?: string | null;
|
|
9487
|
+
amountUsd?: string | null;
|
|
9488
|
+
minimumAmount?: string | null;
|
|
9790
9489
|
};
|
|
9791
9490
|
};
|
|
9792
9491
|
/** @description Solana ATA rent sponsorship details. */
|
|
@@ -9795,40 +9494,40 @@ export interface paths {
|
|
|
9795
9494
|
selected: boolean;
|
|
9796
9495
|
/** @description The full amount charged for this fee bucket. */
|
|
9797
9496
|
total: {
|
|
9798
|
-
amount?: string;
|
|
9799
|
-
amountFormatted?: string;
|
|
9800
|
-
amountUsd?: string;
|
|
9801
|
-
minimumAmount?: string;
|
|
9497
|
+
amount?: string | null;
|
|
9498
|
+
amountFormatted?: string | null;
|
|
9499
|
+
amountUsd?: string | null;
|
|
9500
|
+
minimumAmount?: string | null;
|
|
9802
9501
|
};
|
|
9803
9502
|
/** @description The portion of this fee bucket covered by the sponsor. */
|
|
9804
9503
|
sponsored: {
|
|
9805
|
-
amount?: string;
|
|
9806
|
-
amountFormatted?: string;
|
|
9807
|
-
amountUsd?: string;
|
|
9808
|
-
minimumAmount?: string;
|
|
9504
|
+
amount?: string | null;
|
|
9505
|
+
amountFormatted?: string | null;
|
|
9506
|
+
amountUsd?: string | null;
|
|
9507
|
+
minimumAmount?: string | null;
|
|
9809
9508
|
};
|
|
9810
9509
|
/** @description The portion of this fee bucket that remained user-paid. */
|
|
9811
9510
|
userPays: {
|
|
9812
|
-
amount?: string;
|
|
9813
|
-
amountFormatted?: string;
|
|
9814
|
-
amountUsd?: string;
|
|
9815
|
-
minimumAmount?: string;
|
|
9511
|
+
amount?: string | null;
|
|
9512
|
+
amountFormatted?: string | null;
|
|
9513
|
+
amountUsd?: string | null;
|
|
9514
|
+
minimumAmount?: string | null;
|
|
9816
9515
|
};
|
|
9817
9516
|
};
|
|
9818
9517
|
};
|
|
9819
9518
|
/** @description The total amount sponsored for this phase. */
|
|
9820
9519
|
sponsoredTotal: {
|
|
9821
|
-
amount?: string;
|
|
9822
|
-
amountFormatted?: string;
|
|
9823
|
-
amountUsd?: string;
|
|
9824
|
-
minimumAmount?: string;
|
|
9520
|
+
amount?: string | null;
|
|
9521
|
+
amountFormatted?: string | null;
|
|
9522
|
+
amountUsd?: string | null;
|
|
9523
|
+
minimumAmount?: string | null;
|
|
9825
9524
|
};
|
|
9826
9525
|
/** @description The total amount the user paid across the sponsorable fee buckets for this phase. */
|
|
9827
9526
|
userPaysTotal: {
|
|
9828
|
-
amount?: string;
|
|
9829
|
-
amountFormatted?: string;
|
|
9830
|
-
amountUsd?: string;
|
|
9831
|
-
minimumAmount?: string;
|
|
9527
|
+
amount?: string | null;
|
|
9528
|
+
amountFormatted?: string | null;
|
|
9529
|
+
amountUsd?: string | null;
|
|
9530
|
+
minimumAmount?: string | null;
|
|
9832
9531
|
};
|
|
9833
9532
|
/** @description How much the sponsor ultimately paid, denominated in the sponsor payment currency. */
|
|
9834
9533
|
sponsorPayment?: {
|
|
@@ -9855,71 +9554,71 @@ export interface paths {
|
|
|
9855
9554
|
};
|
|
9856
9555
|
}) | null;
|
|
9857
9556
|
/** @description Breakdown of fees by component, with quoted and actual values */
|
|
9858
|
-
fees?: {
|
|
9557
|
+
fees?: ({
|
|
9859
9558
|
/** @description Fees as estimated at quote time */
|
|
9860
9559
|
quoted?: {
|
|
9861
9560
|
/** @description Cost to execute swap or bridge depending on available liquidity. This value can be negative (representing network rewards for improving liquidity distribution) */
|
|
9862
9561
|
swap?: {
|
|
9863
|
-
usd?: string;
|
|
9864
|
-
amount?: string;
|
|
9865
|
-
amountFormatted?: string;
|
|
9562
|
+
usd?: string | null;
|
|
9563
|
+
amount?: string | null;
|
|
9564
|
+
amountFormatted?: string | null;
|
|
9866
9565
|
};
|
|
9867
9566
|
/** @description Fees paid to cover transaction execution costs */
|
|
9868
9567
|
execution?: {
|
|
9869
|
-
usd?: string;
|
|
9870
|
-
amount?: string;
|
|
9871
|
-
amountFormatted?: string;
|
|
9568
|
+
usd?: string | null;
|
|
9569
|
+
amount?: string | null;
|
|
9570
|
+
amountFormatted?: string | null;
|
|
9872
9571
|
};
|
|
9873
9572
|
/** @description Fees paid to the protocol */
|
|
9874
9573
|
platform?: {
|
|
9875
|
-
usd?: string;
|
|
9876
|
-
amount?: string;
|
|
9877
|
-
amountFormatted?: string;
|
|
9574
|
+
usd?: string | null;
|
|
9575
|
+
amount?: string | null;
|
|
9576
|
+
amountFormatted?: string | null;
|
|
9878
9577
|
};
|
|
9879
9578
|
/** @description Fees paid to the app. Currency will be the same as the relayer fee currency. This needs to be claimed later by the app owner and is not immediately distributed to the app */
|
|
9880
9579
|
app?: {
|
|
9881
|
-
usd?: string;
|
|
9882
|
-
amount?: string;
|
|
9883
|
-
amountFormatted?: string;
|
|
9580
|
+
usd?: string | null;
|
|
9581
|
+
amount?: string | null;
|
|
9582
|
+
amountFormatted?: string | null;
|
|
9884
9583
|
};
|
|
9885
9584
|
/** @description Fees paid by a sponsor for this request */
|
|
9886
9585
|
sponsored?: {
|
|
9887
|
-
usd?: string;
|
|
9888
|
-
amount?: string;
|
|
9889
|
-
amountFormatted?: string;
|
|
9586
|
+
usd?: string | null;
|
|
9587
|
+
amount?: string | null;
|
|
9588
|
+
amountFormatted?: string | null;
|
|
9890
9589
|
};
|
|
9891
9590
|
};
|
|
9892
9591
|
/** @description Fees as computed at fill time */
|
|
9893
9592
|
actual?: {
|
|
9894
9593
|
/** @description Cost to execute swap or bridge depending on available liquidity. This value can be negative (representing network rewards for improving liquidity distribution) */
|
|
9895
9594
|
swap?: {
|
|
9896
|
-
usd?: string;
|
|
9897
|
-
amount?: string;
|
|
9898
|
-
amountFormatted?: string;
|
|
9595
|
+
usd?: string | null;
|
|
9596
|
+
amount?: string | null;
|
|
9597
|
+
amountFormatted?: string | null;
|
|
9899
9598
|
};
|
|
9900
9599
|
/** @description Fees paid to cover transaction execution costs */
|
|
9901
9600
|
execution?: {
|
|
9902
|
-
usd?: string;
|
|
9903
|
-
amount?: string;
|
|
9904
|
-
amountFormatted?: string;
|
|
9601
|
+
usd?: string | null;
|
|
9602
|
+
amount?: string | null;
|
|
9603
|
+
amountFormatted?: string | null;
|
|
9905
9604
|
};
|
|
9906
9605
|
/** @description Fees paid to the protocol */
|
|
9907
9606
|
platform?: {
|
|
9908
|
-
usd?: string;
|
|
9909
|
-
amount?: string;
|
|
9910
|
-
amountFormatted?: string;
|
|
9607
|
+
usd?: string | null;
|
|
9608
|
+
amount?: string | null;
|
|
9609
|
+
amountFormatted?: string | null;
|
|
9911
9610
|
};
|
|
9912
9611
|
/** @description Fees paid to the app. Currency will be the same as the relayer fee currency. This needs to be claimed later by the app owner and is not immediately distributed to the app */
|
|
9913
9612
|
app?: {
|
|
9914
|
-
usd?: string;
|
|
9915
|
-
amount?: string;
|
|
9916
|
-
amountFormatted?: string;
|
|
9613
|
+
usd?: string | null;
|
|
9614
|
+
amount?: string | null;
|
|
9615
|
+
amountFormatted?: string | null;
|
|
9917
9616
|
};
|
|
9918
9617
|
/** @description Fees paid by a sponsor for this request */
|
|
9919
9618
|
sponsored?: {
|
|
9920
|
-
usd?: string;
|
|
9921
|
-
amount?: string;
|
|
9922
|
-
amountFormatted?: string;
|
|
9619
|
+
usd?: string | null;
|
|
9620
|
+
amount?: string | null;
|
|
9621
|
+
amountFormatted?: string | null;
|
|
9923
9622
|
};
|
|
9924
9623
|
};
|
|
9925
9624
|
currency?: {
|
|
@@ -9934,11 +9633,15 @@ export interface paths {
|
|
|
9934
9633
|
isNative?: boolean;
|
|
9935
9634
|
};
|
|
9936
9635
|
};
|
|
9937
|
-
} | null;
|
|
9636
|
+
}) | null;
|
|
9938
9637
|
/** @description Platform fee — only returned when the caller authenticates as the request's creator integrator. */
|
|
9939
9638
|
platformFee?: Record<string, unknown> | null;
|
|
9940
9639
|
/** @description Referrer — only returned when the caller authenticates as the request's creator integrator. */
|
|
9941
9640
|
referrer?: string | null;
|
|
9641
|
+
/** @description API key name — only returned when the caller authenticates as the request's creator integrator. */
|
|
9642
|
+
apiKeyName?: string | null;
|
|
9643
|
+
/** @description Address(es) that failed wallet screening and caused a BLOCKED_WALLET failure. Only returned when the caller authenticates as the request's creator integrator. Never includes screening-provider scores or reasons. */
|
|
9644
|
+
blockedAddresses?: string[] | null;
|
|
9942
9645
|
route?: ({
|
|
9943
9646
|
includedSwapSources?: string[];
|
|
9944
9647
|
includedOriginSwapSources?: string[];
|
|
@@ -10620,7 +10323,6 @@ export interface paths {
|
|
|
10620
10323
|
"application/json": {
|
|
10621
10324
|
AVAX?: number;
|
|
10622
10325
|
ETH?: number;
|
|
10623
|
-
DEGEN?: number;
|
|
10624
10326
|
MATIC?: number;
|
|
10625
10327
|
USDC?: number;
|
|
10626
10328
|
XAI?: number;
|
|
@@ -10689,7 +10391,7 @@ export interface paths {
|
|
|
10689
10391
|
name?: string;
|
|
10690
10392
|
decimals?: number;
|
|
10691
10393
|
/** @enum {string} */
|
|
10692
|
-
vmType?: "bvm" | "evm" | "svm" | "tvm" | "tonvm" | "hypevm" | "lvm" | "xrpvm";
|
|
10394
|
+
vmType?: "bvm" | "evm" | "svm" | "tvm" | "tonvm" | "hypevm" | "lvm" | "xrpvm" | "hederavm";
|
|
10693
10395
|
metadata?: {
|
|
10694
10396
|
logoURI?: string;
|
|
10695
10397
|
verified?: boolean;
|
|
@@ -10751,7 +10453,7 @@ export interface paths {
|
|
|
10751
10453
|
name?: string;
|
|
10752
10454
|
decimals?: number;
|
|
10753
10455
|
/** @enum {string} */
|
|
10754
|
-
vmType?: "bvm" | "evm" | "svm" | "tvm" | "tonvm" | "hypevm" | "lvm" | "xrpvm";
|
|
10456
|
+
vmType?: "bvm" | "evm" | "svm" | "tvm" | "tonvm" | "hypevm" | "lvm" | "xrpvm" | "hederavm";
|
|
10755
10457
|
metadata?: {
|
|
10756
10458
|
logoURI?: string;
|
|
10757
10459
|
verified?: boolean;
|
|
@@ -10855,7 +10557,7 @@ export interface paths {
|
|
|
10855
10557
|
name?: string;
|
|
10856
10558
|
decimals?: number;
|
|
10857
10559
|
/** @enum {string} */
|
|
10858
|
-
vmType?: "bvm" | "evm" | "svm" | "tvm" | "tonvm" | "hypevm" | "lvm" | "xrpvm";
|
|
10560
|
+
vmType?: "bvm" | "evm" | "svm" | "tvm" | "tonvm" | "hypevm" | "lvm" | "xrpvm" | "hederavm";
|
|
10859
10561
|
metadata?: {
|
|
10860
10562
|
logoURI?: string;
|
|
10861
10563
|
verified?: boolean;
|
|
@@ -10886,7 +10588,7 @@ export interface paths {
|
|
|
10886
10588
|
name?: string;
|
|
10887
10589
|
decimals?: number;
|
|
10888
10590
|
/** @enum {string} */
|
|
10889
|
-
vmType?: "bvm" | "evm" | "svm" | "tvm" | "tonvm" | "hypevm" | "lvm" | "xrpvm";
|
|
10591
|
+
vmType?: "bvm" | "evm" | "svm" | "tvm" | "tonvm" | "hypevm" | "lvm" | "xrpvm" | "hederavm";
|
|
10890
10592
|
metadata?: {
|
|
10891
10593
|
logoURI?: string;
|
|
10892
10594
|
verified?: boolean;
|
|
@@ -11291,6 +10993,7 @@ export interface paths {
|
|
|
11291
10993
|
withdrawal?: {
|
|
11292
10994
|
[key: string]: unknown;
|
|
11293
10995
|
} | null;
|
|
10996
|
+
txHash?: string | null;
|
|
11294
10997
|
reason?: string | null;
|
|
11295
10998
|
};
|
|
11296
10999
|
};
|