@relayprotocol/relay-kit-hooks 3.0.20 → 3.0.21

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.
@@ -17,11 +17,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
17
17
  address?: string | undefined;
18
18
  depositAddressType?: "strict" | "open" | undefined;
19
19
  depositor?: string | null | undefined;
20
+ depositTxHash?: string | null | undefined;
20
21
  } | null | undefined;
21
22
  data?: {
22
23
  slippageTolerance?: string | undefined;
23
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
24
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
24
+ 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" | "N/A" | undefined;
25
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
26
+ supersededByRequestId?: string | null | undefined;
25
27
  failedTxHash?: string | undefined;
26
28
  failedTxBlockNumber?: number | undefined;
27
29
  failedCallData?: {
@@ -723,6 +725,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
723
725
  amountUsd?: string | undefined;
724
726
  amountUsdCurrent?: string | undefined;
725
727
  }[] | undefined;
728
+ platformFee?: {
729
+ bucket?: string | undefined;
730
+ ruleId?: string | undefined;
731
+ relayFeeBps?: number | undefined;
732
+ integratorFeeBps?: number | undefined;
733
+ totalFeeBps?: number | undefined;
734
+ relayFee?: {
735
+ currency?: {
736
+ chainId?: number | undefined;
737
+ address?: string | undefined;
738
+ symbol?: string | undefined;
739
+ name?: string | undefined;
740
+ decimals?: number | undefined;
741
+ metadata?: {
742
+ logoURI?: string | undefined;
743
+ verified?: boolean | undefined;
744
+ isNative?: boolean | undefined;
745
+ } | undefined;
746
+ } | undefined;
747
+ amount?: string | undefined;
748
+ amountFormatted?: string | undefined;
749
+ amountUsd?: string | undefined;
750
+ minimumAmount?: string | undefined;
751
+ } | undefined;
752
+ integratorFee?: {
753
+ currency?: {
754
+ chainId?: number | undefined;
755
+ address?: string | undefined;
756
+ symbol?: string | undefined;
757
+ name?: string | undefined;
758
+ decimals?: number | undefined;
759
+ metadata?: {
760
+ logoURI?: string | undefined;
761
+ verified?: boolean | undefined;
762
+ isNative?: boolean | undefined;
763
+ } | undefined;
764
+ } | undefined;
765
+ amount?: string | undefined;
766
+ amountFormatted?: string | undefined;
767
+ amountUsd?: string | undefined;
768
+ minimumAmount?: string | undefined;
769
+ } | undefined;
770
+ totalPlatformFee?: {
771
+ currency?: {
772
+ chainId?: number | undefined;
773
+ address?: string | undefined;
774
+ symbol?: string | undefined;
775
+ name?: string | undefined;
776
+ decimals?: number | undefined;
777
+ metadata?: {
778
+ logoURI?: string | undefined;
779
+ verified?: boolean | undefined;
780
+ isNative?: boolean | undefined;
781
+ } | undefined;
782
+ } | undefined;
783
+ amount?: string | undefined;
784
+ amountFormatted?: string | undefined;
785
+ amountUsd?: string | undefined;
786
+ minimumAmount?: string | undefined;
787
+ } | undefined;
788
+ integratorFeeRecipient?: string | null | undefined;
789
+ } | null | undefined;
726
790
  metadata?: {
727
791
  sender?: string | undefined;
728
792
  recipient?: string | undefined;
@@ -783,6 +847,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
783
847
  minimumAmount?: string | undefined;
784
848
  } | undefined;
785
849
  rate?: string | undefined;
850
+ quoteOraclePrice?: {
851
+ rate?: string | undefined;
852
+ inputAmount?: string | undefined;
853
+ outputAmount?: string | undefined;
854
+ observedAt?: string | undefined;
855
+ from?: {
856
+ chainId?: number | undefined;
857
+ address?: string | undefined;
858
+ currencyId?: string | undefined;
859
+ decimals?: number | undefined;
860
+ } | undefined;
861
+ to?: {
862
+ chainId?: number | undefined;
863
+ address?: string | undefined;
864
+ currencyId?: string | undefined;
865
+ decimals?: number | undefined;
866
+ } | undefined;
867
+ } | undefined;
786
868
  route?: {
787
869
  origin?: {
788
870
  inputCurrency?: {
@@ -869,7 +951,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
869
951
  price?: string | undefined;
870
952
  usesExternalLiquidity?: boolean | undefined;
871
953
  timeEstimate?: number | undefined;
872
- triggeredByCcm?: boolean | undefined;
873
954
  triggeredByFastFill?: boolean | undefined;
874
955
  outTxs?: {
875
956
  fee?: string | undefined;
@@ -990,11 +1071,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
990
1071
  address?: string | undefined;
991
1072
  depositAddressType?: "strict" | "open" | undefined;
992
1073
  depositor?: string | null | undefined;
1074
+ depositTxHash?: string | null | undefined;
993
1075
  } | null | undefined;
994
1076
  data?: {
995
1077
  slippageTolerance?: string | undefined;
996
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
997
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
1078
+ 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" | "N/A" | undefined;
1079
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
1080
+ supersededByRequestId?: string | null | undefined;
998
1081
  failedTxHash?: string | undefined;
999
1082
  failedTxBlockNumber?: number | undefined;
1000
1083
  failedCallData?: {
@@ -1696,6 +1779,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
1696
1779
  amountUsd?: string | undefined;
1697
1780
  amountUsdCurrent?: string | undefined;
1698
1781
  }[] | undefined;
1782
+ platformFee?: {
1783
+ bucket?: string | undefined;
1784
+ ruleId?: string | undefined;
1785
+ relayFeeBps?: number | undefined;
1786
+ integratorFeeBps?: number | undefined;
1787
+ totalFeeBps?: number | undefined;
1788
+ relayFee?: {
1789
+ currency?: {
1790
+ chainId?: number | undefined;
1791
+ address?: string | undefined;
1792
+ symbol?: string | undefined;
1793
+ name?: string | undefined;
1794
+ decimals?: number | undefined;
1795
+ metadata?: {
1796
+ logoURI?: string | undefined;
1797
+ verified?: boolean | undefined;
1798
+ isNative?: boolean | undefined;
1799
+ } | undefined;
1800
+ } | undefined;
1801
+ amount?: string | undefined;
1802
+ amountFormatted?: string | undefined;
1803
+ amountUsd?: string | undefined;
1804
+ minimumAmount?: string | undefined;
1805
+ } | undefined;
1806
+ integratorFee?: {
1807
+ currency?: {
1808
+ chainId?: number | undefined;
1809
+ address?: string | undefined;
1810
+ symbol?: string | undefined;
1811
+ name?: string | undefined;
1812
+ decimals?: number | undefined;
1813
+ metadata?: {
1814
+ logoURI?: string | undefined;
1815
+ verified?: boolean | undefined;
1816
+ isNative?: boolean | undefined;
1817
+ } | undefined;
1818
+ } | undefined;
1819
+ amount?: string | undefined;
1820
+ amountFormatted?: string | undefined;
1821
+ amountUsd?: string | undefined;
1822
+ minimumAmount?: string | undefined;
1823
+ } | undefined;
1824
+ totalPlatformFee?: {
1825
+ currency?: {
1826
+ chainId?: number | undefined;
1827
+ address?: string | undefined;
1828
+ symbol?: string | undefined;
1829
+ name?: string | undefined;
1830
+ decimals?: number | undefined;
1831
+ metadata?: {
1832
+ logoURI?: string | undefined;
1833
+ verified?: boolean | undefined;
1834
+ isNative?: boolean | undefined;
1835
+ } | undefined;
1836
+ } | undefined;
1837
+ amount?: string | undefined;
1838
+ amountFormatted?: string | undefined;
1839
+ amountUsd?: string | undefined;
1840
+ minimumAmount?: string | undefined;
1841
+ } | undefined;
1842
+ integratorFeeRecipient?: string | null | undefined;
1843
+ } | null | undefined;
1699
1844
  metadata?: {
1700
1845
  sender?: string | undefined;
1701
1846
  recipient?: string | undefined;
@@ -1756,6 +1901,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
1756
1901
  minimumAmount?: string | undefined;
1757
1902
  } | undefined;
1758
1903
  rate?: string | undefined;
1904
+ quoteOraclePrice?: {
1905
+ rate?: string | undefined;
1906
+ inputAmount?: string | undefined;
1907
+ outputAmount?: string | undefined;
1908
+ observedAt?: string | undefined;
1909
+ from?: {
1910
+ chainId?: number | undefined;
1911
+ address?: string | undefined;
1912
+ currencyId?: string | undefined;
1913
+ decimals?: number | undefined;
1914
+ } | undefined;
1915
+ to?: {
1916
+ chainId?: number | undefined;
1917
+ address?: string | undefined;
1918
+ currencyId?: string | undefined;
1919
+ decimals?: number | undefined;
1920
+ } | undefined;
1921
+ } | undefined;
1759
1922
  route?: {
1760
1923
  origin?: {
1761
1924
  inputCurrency?: {
@@ -1842,7 +2005,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
1842
2005
  price?: string | undefined;
1843
2006
  usesExternalLiquidity?: boolean | undefined;
1844
2007
  timeEstimate?: number | undefined;
1845
- triggeredByCcm?: boolean | undefined;
1846
2008
  triggeredByFastFill?: boolean | undefined;
1847
2009
  outTxs?: {
1848
2010
  fee?: string | undefined;
@@ -1956,11 +2118,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
1956
2118
  address?: string | undefined;
1957
2119
  depositAddressType?: "strict" | "open" | undefined;
1958
2120
  depositor?: string | null | undefined;
2121
+ depositTxHash?: string | null | undefined;
1959
2122
  } | null | undefined;
1960
2123
  data?: {
1961
2124
  slippageTolerance?: string | undefined;
1962
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
1963
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
2125
+ 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" | "N/A" | undefined;
2126
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
2127
+ supersededByRequestId?: string | null | undefined;
1964
2128
  failedTxHash?: string | undefined;
1965
2129
  failedTxBlockNumber?: number | undefined;
1966
2130
  failedCallData?: {
@@ -2662,6 +2826,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
2662
2826
  amountUsd?: string | undefined;
2663
2827
  amountUsdCurrent?: string | undefined;
2664
2828
  }[] | undefined;
2829
+ platformFee?: {
2830
+ bucket?: string | undefined;
2831
+ ruleId?: string | undefined;
2832
+ relayFeeBps?: number | undefined;
2833
+ integratorFeeBps?: number | undefined;
2834
+ totalFeeBps?: number | undefined;
2835
+ relayFee?: {
2836
+ currency?: {
2837
+ chainId?: number | undefined;
2838
+ address?: string | undefined;
2839
+ symbol?: string | undefined;
2840
+ name?: string | undefined;
2841
+ decimals?: number | undefined;
2842
+ metadata?: {
2843
+ logoURI?: string | undefined;
2844
+ verified?: boolean | undefined;
2845
+ isNative?: boolean | undefined;
2846
+ } | undefined;
2847
+ } | undefined;
2848
+ amount?: string | undefined;
2849
+ amountFormatted?: string | undefined;
2850
+ amountUsd?: string | undefined;
2851
+ minimumAmount?: string | undefined;
2852
+ } | undefined;
2853
+ integratorFee?: {
2854
+ currency?: {
2855
+ chainId?: number | undefined;
2856
+ address?: string | undefined;
2857
+ symbol?: string | undefined;
2858
+ name?: string | undefined;
2859
+ decimals?: number | undefined;
2860
+ metadata?: {
2861
+ logoURI?: string | undefined;
2862
+ verified?: boolean | undefined;
2863
+ isNative?: boolean | undefined;
2864
+ } | undefined;
2865
+ } | undefined;
2866
+ amount?: string | undefined;
2867
+ amountFormatted?: string | undefined;
2868
+ amountUsd?: string | undefined;
2869
+ minimumAmount?: string | undefined;
2870
+ } | undefined;
2871
+ totalPlatformFee?: {
2872
+ currency?: {
2873
+ chainId?: number | undefined;
2874
+ address?: string | undefined;
2875
+ symbol?: string | undefined;
2876
+ name?: string | undefined;
2877
+ decimals?: number | undefined;
2878
+ metadata?: {
2879
+ logoURI?: string | undefined;
2880
+ verified?: boolean | undefined;
2881
+ isNative?: boolean | undefined;
2882
+ } | undefined;
2883
+ } | undefined;
2884
+ amount?: string | undefined;
2885
+ amountFormatted?: string | undefined;
2886
+ amountUsd?: string | undefined;
2887
+ minimumAmount?: string | undefined;
2888
+ } | undefined;
2889
+ integratorFeeRecipient?: string | null | undefined;
2890
+ } | null | undefined;
2665
2891
  metadata?: {
2666
2892
  sender?: string | undefined;
2667
2893
  recipient?: string | undefined;
@@ -2722,6 +2948,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
2722
2948
  minimumAmount?: string | undefined;
2723
2949
  } | undefined;
2724
2950
  rate?: string | undefined;
2951
+ quoteOraclePrice?: {
2952
+ rate?: string | undefined;
2953
+ inputAmount?: string | undefined;
2954
+ outputAmount?: string | undefined;
2955
+ observedAt?: string | undefined;
2956
+ from?: {
2957
+ chainId?: number | undefined;
2958
+ address?: string | undefined;
2959
+ currencyId?: string | undefined;
2960
+ decimals?: number | undefined;
2961
+ } | undefined;
2962
+ to?: {
2963
+ chainId?: number | undefined;
2964
+ address?: string | undefined;
2965
+ currencyId?: string | undefined;
2966
+ decimals?: number | undefined;
2967
+ } | undefined;
2968
+ } | undefined;
2725
2969
  route?: {
2726
2970
  origin?: {
2727
2971
  inputCurrency?: {
@@ -2808,7 +3052,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
2808
3052
  price?: string | undefined;
2809
3053
  usesExternalLiquidity?: boolean | undefined;
2810
3054
  timeEstimate?: number | undefined;
2811
- triggeredByCcm?: boolean | undefined;
2812
3055
  triggeredByFastFill?: boolean | undefined;
2813
3056
  outTxs?: {
2814
3057
  fee?: string | undefined;
@@ -2940,11 +3183,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
2940
3183
  address?: string | undefined;
2941
3184
  depositAddressType?: "strict" | "open" | undefined;
2942
3185
  depositor?: string | null | undefined;
3186
+ depositTxHash?: string | null | undefined;
2943
3187
  } | null | undefined;
2944
3188
  data?: {
2945
3189
  slippageTolerance?: string | undefined;
2946
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
2947
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
3190
+ 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" | "N/A" | undefined;
3191
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
3192
+ supersededByRequestId?: string | null | undefined;
2948
3193
  failedTxHash?: string | undefined;
2949
3194
  failedTxBlockNumber?: number | undefined;
2950
3195
  failedCallData?: {
@@ -3646,6 +3891,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
3646
3891
  amountUsd?: string | undefined;
3647
3892
  amountUsdCurrent?: string | undefined;
3648
3893
  }[] | undefined;
3894
+ platformFee?: {
3895
+ bucket?: string | undefined;
3896
+ ruleId?: string | undefined;
3897
+ relayFeeBps?: number | undefined;
3898
+ integratorFeeBps?: number | undefined;
3899
+ totalFeeBps?: number | undefined;
3900
+ relayFee?: {
3901
+ currency?: {
3902
+ chainId?: number | undefined;
3903
+ address?: string | undefined;
3904
+ symbol?: string | undefined;
3905
+ name?: string | undefined;
3906
+ decimals?: number | undefined;
3907
+ metadata?: {
3908
+ logoURI?: string | undefined;
3909
+ verified?: boolean | undefined;
3910
+ isNative?: boolean | undefined;
3911
+ } | undefined;
3912
+ } | undefined;
3913
+ amount?: string | undefined;
3914
+ amountFormatted?: string | undefined;
3915
+ amountUsd?: string | undefined;
3916
+ minimumAmount?: string | undefined;
3917
+ } | undefined;
3918
+ integratorFee?: {
3919
+ currency?: {
3920
+ chainId?: number | undefined;
3921
+ address?: string | undefined;
3922
+ symbol?: string | undefined;
3923
+ name?: string | undefined;
3924
+ decimals?: number | undefined;
3925
+ metadata?: {
3926
+ logoURI?: string | undefined;
3927
+ verified?: boolean | undefined;
3928
+ isNative?: boolean | undefined;
3929
+ } | undefined;
3930
+ } | undefined;
3931
+ amount?: string | undefined;
3932
+ amountFormatted?: string | undefined;
3933
+ amountUsd?: string | undefined;
3934
+ minimumAmount?: string | undefined;
3935
+ } | undefined;
3936
+ totalPlatformFee?: {
3937
+ currency?: {
3938
+ chainId?: number | undefined;
3939
+ address?: string | undefined;
3940
+ symbol?: string | undefined;
3941
+ name?: string | undefined;
3942
+ decimals?: number | undefined;
3943
+ metadata?: {
3944
+ logoURI?: string | undefined;
3945
+ verified?: boolean | undefined;
3946
+ isNative?: boolean | undefined;
3947
+ } | undefined;
3948
+ } | undefined;
3949
+ amount?: string | undefined;
3950
+ amountFormatted?: string | undefined;
3951
+ amountUsd?: string | undefined;
3952
+ minimumAmount?: string | undefined;
3953
+ } | undefined;
3954
+ integratorFeeRecipient?: string | null | undefined;
3955
+ } | null | undefined;
3649
3956
  metadata?: {
3650
3957
  sender?: string | undefined;
3651
3958
  recipient?: string | undefined;
@@ -3706,6 +4013,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
3706
4013
  minimumAmount?: string | undefined;
3707
4014
  } | undefined;
3708
4015
  rate?: string | undefined;
4016
+ quoteOraclePrice?: {
4017
+ rate?: string | undefined;
4018
+ inputAmount?: string | undefined;
4019
+ outputAmount?: string | undefined;
4020
+ observedAt?: string | undefined;
4021
+ from?: {
4022
+ chainId?: number | undefined;
4023
+ address?: string | undefined;
4024
+ currencyId?: string | undefined;
4025
+ decimals?: number | undefined;
4026
+ } | undefined;
4027
+ to?: {
4028
+ chainId?: number | undefined;
4029
+ address?: string | undefined;
4030
+ currencyId?: string | undefined;
4031
+ decimals?: number | undefined;
4032
+ } | undefined;
4033
+ } | undefined;
3709
4034
  route?: {
3710
4035
  origin?: {
3711
4036
  inputCurrency?: {
@@ -3792,7 +4117,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
3792
4117
  price?: string | undefined;
3793
4118
  usesExternalLiquidity?: boolean | undefined;
3794
4119
  timeEstimate?: number | undefined;
3795
- triggeredByCcm?: boolean | undefined;
3796
4120
  triggeredByFastFill?: boolean | undefined;
3797
4121
  outTxs?: {
3798
4122
  fee?: string | undefined;
@@ -3907,11 +4231,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
3907
4231
  address?: string | undefined;
3908
4232
  depositAddressType?: "strict" | "open" | undefined;
3909
4233
  depositor?: string | null | undefined;
4234
+ depositTxHash?: string | null | undefined;
3910
4235
  } | null | undefined;
3911
4236
  data?: {
3912
4237
  slippageTolerance?: string | undefined;
3913
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
3914
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
4238
+ 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" | "N/A" | undefined;
4239
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
4240
+ supersededByRequestId?: string | null | undefined;
3915
4241
  failedTxHash?: string | undefined;
3916
4242
  failedTxBlockNumber?: number | undefined;
3917
4243
  failedCallData?: {
@@ -4613,10 +4939,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
4613
4939
  amountUsd?: string | undefined;
4614
4940
  amountUsdCurrent?: string | undefined;
4615
4941
  }[] | undefined;
4616
- metadata?: {
4617
- sender?: string | undefined;
4618
- recipient?: string | undefined;
4619
- currencyIn?: {
4942
+ platformFee?: {
4943
+ bucket?: string | undefined;
4944
+ ruleId?: string | undefined;
4945
+ relayFeeBps?: number | undefined;
4946
+ integratorFeeBps?: number | undefined;
4947
+ totalFeeBps?: number | undefined;
4948
+ relayFee?: {
4620
4949
  currency?: {
4621
4950
  chainId?: number | undefined;
4622
4951
  address?: string | undefined;
@@ -4632,10 +4961,9 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
4632
4961
  amount?: string | undefined;
4633
4962
  amountFormatted?: string | undefined;
4634
4963
  amountUsd?: string | undefined;
4635
- amountUsdCurrent?: string | undefined;
4636
4964
  minimumAmount?: string | undefined;
4637
4965
  } | undefined;
4638
- currencyOut?: {
4966
+ integratorFee?: {
4639
4967
  currency?: {
4640
4968
  chainId?: number | undefined;
4641
4969
  address?: string | undefined;
@@ -4651,10 +4979,9 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
4651
4979
  amount?: string | undefined;
4652
4980
  amountFormatted?: string | undefined;
4653
4981
  amountUsd?: string | undefined;
4654
- amountUsdCurrent?: string | undefined;
4655
4982
  minimumAmount?: string | undefined;
4656
4983
  } | undefined;
4657
- currencyGasTopup?: {
4984
+ totalPlatformFee?: {
4658
4985
  currency?: {
4659
4986
  chainId?: number | undefined;
4660
4987
  address?: string | undefined;
@@ -4672,9 +4999,88 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
4672
4999
  amountUsd?: string | undefined;
4673
5000
  minimumAmount?: string | undefined;
4674
5001
  } | undefined;
4675
- rate?: string | undefined;
4676
- route?: {
4677
- origin?: {
5002
+ integratorFeeRecipient?: string | null | undefined;
5003
+ } | null | undefined;
5004
+ metadata?: {
5005
+ sender?: string | undefined;
5006
+ recipient?: string | undefined;
5007
+ currencyIn?: {
5008
+ currency?: {
5009
+ chainId?: number | undefined;
5010
+ address?: string | undefined;
5011
+ symbol?: string | undefined;
5012
+ name?: string | undefined;
5013
+ decimals?: number | undefined;
5014
+ metadata?: {
5015
+ logoURI?: string | undefined;
5016
+ verified?: boolean | undefined;
5017
+ isNative?: boolean | undefined;
5018
+ } | undefined;
5019
+ } | undefined;
5020
+ amount?: string | undefined;
5021
+ amountFormatted?: string | undefined;
5022
+ amountUsd?: string | undefined;
5023
+ amountUsdCurrent?: string | undefined;
5024
+ minimumAmount?: string | undefined;
5025
+ } | undefined;
5026
+ currencyOut?: {
5027
+ currency?: {
5028
+ chainId?: number | undefined;
5029
+ address?: string | undefined;
5030
+ symbol?: string | undefined;
5031
+ name?: string | undefined;
5032
+ decimals?: number | undefined;
5033
+ metadata?: {
5034
+ logoURI?: string | undefined;
5035
+ verified?: boolean | undefined;
5036
+ isNative?: boolean | undefined;
5037
+ } | undefined;
5038
+ } | undefined;
5039
+ amount?: string | undefined;
5040
+ amountFormatted?: string | undefined;
5041
+ amountUsd?: string | undefined;
5042
+ amountUsdCurrent?: string | undefined;
5043
+ minimumAmount?: string | undefined;
5044
+ } | undefined;
5045
+ currencyGasTopup?: {
5046
+ currency?: {
5047
+ chainId?: number | undefined;
5048
+ address?: string | undefined;
5049
+ symbol?: string | undefined;
5050
+ name?: string | undefined;
5051
+ decimals?: number | undefined;
5052
+ metadata?: {
5053
+ logoURI?: string | undefined;
5054
+ verified?: boolean | undefined;
5055
+ isNative?: boolean | undefined;
5056
+ } | undefined;
5057
+ } | undefined;
5058
+ amount?: string | undefined;
5059
+ amountFormatted?: string | undefined;
5060
+ amountUsd?: string | undefined;
5061
+ minimumAmount?: string | undefined;
5062
+ } | undefined;
5063
+ rate?: string | undefined;
5064
+ quoteOraclePrice?: {
5065
+ rate?: string | undefined;
5066
+ inputAmount?: string | undefined;
5067
+ outputAmount?: string | undefined;
5068
+ observedAt?: string | undefined;
5069
+ from?: {
5070
+ chainId?: number | undefined;
5071
+ address?: string | undefined;
5072
+ currencyId?: string | undefined;
5073
+ decimals?: number | undefined;
5074
+ } | undefined;
5075
+ to?: {
5076
+ chainId?: number | undefined;
5077
+ address?: string | undefined;
5078
+ currencyId?: string | undefined;
5079
+ decimals?: number | undefined;
5080
+ } | undefined;
5081
+ } | undefined;
5082
+ route?: {
5083
+ origin?: {
4678
5084
  inputCurrency?: {
4679
5085
  currency?: {
4680
5086
  chainId?: number | undefined;
@@ -4759,7 +5165,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
4759
5165
  price?: string | undefined;
4760
5166
  usesExternalLiquidity?: boolean | undefined;
4761
5167
  timeEstimate?: number | undefined;
4762
- triggeredByCcm?: boolean | undefined;
4763
5168
  triggeredByFastFill?: boolean | undefined;
4764
5169
  outTxs?: {
4765
5170
  fee?: string | undefined;
@@ -4873,11 +5278,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
4873
5278
  address?: string | undefined;
4874
5279
  depositAddressType?: "strict" | "open" | undefined;
4875
5280
  depositor?: string | null | undefined;
5281
+ depositTxHash?: string | null | undefined;
4876
5282
  } | null | undefined;
4877
5283
  data?: {
4878
5284
  slippageTolerance?: string | undefined;
4879
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
4880
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
5285
+ 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" | "N/A" | undefined;
5286
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
5287
+ supersededByRequestId?: string | null | undefined;
4881
5288
  failedTxHash?: string | undefined;
4882
5289
  failedTxBlockNumber?: number | undefined;
4883
5290
  failedCallData?: {
@@ -5579,6 +5986,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
5579
5986
  amountUsd?: string | undefined;
5580
5987
  amountUsdCurrent?: string | undefined;
5581
5988
  }[] | undefined;
5989
+ platformFee?: {
5990
+ bucket?: string | undefined;
5991
+ ruleId?: string | undefined;
5992
+ relayFeeBps?: number | undefined;
5993
+ integratorFeeBps?: number | undefined;
5994
+ totalFeeBps?: number | undefined;
5995
+ relayFee?: {
5996
+ currency?: {
5997
+ chainId?: number | undefined;
5998
+ address?: string | undefined;
5999
+ symbol?: string | undefined;
6000
+ name?: string | undefined;
6001
+ decimals?: number | undefined;
6002
+ metadata?: {
6003
+ logoURI?: string | undefined;
6004
+ verified?: boolean | undefined;
6005
+ isNative?: boolean | undefined;
6006
+ } | undefined;
6007
+ } | undefined;
6008
+ amount?: string | undefined;
6009
+ amountFormatted?: string | undefined;
6010
+ amountUsd?: string | undefined;
6011
+ minimumAmount?: string | undefined;
6012
+ } | undefined;
6013
+ integratorFee?: {
6014
+ currency?: {
6015
+ chainId?: number | undefined;
6016
+ address?: string | undefined;
6017
+ symbol?: string | undefined;
6018
+ name?: string | undefined;
6019
+ decimals?: number | undefined;
6020
+ metadata?: {
6021
+ logoURI?: string | undefined;
6022
+ verified?: boolean | undefined;
6023
+ isNative?: boolean | undefined;
6024
+ } | undefined;
6025
+ } | undefined;
6026
+ amount?: string | undefined;
6027
+ amountFormatted?: string | undefined;
6028
+ amountUsd?: string | undefined;
6029
+ minimumAmount?: string | undefined;
6030
+ } | undefined;
6031
+ totalPlatformFee?: {
6032
+ currency?: {
6033
+ chainId?: number | undefined;
6034
+ address?: string | undefined;
6035
+ symbol?: string | undefined;
6036
+ name?: string | undefined;
6037
+ decimals?: number | undefined;
6038
+ metadata?: {
6039
+ logoURI?: string | undefined;
6040
+ verified?: boolean | undefined;
6041
+ isNative?: boolean | undefined;
6042
+ } | undefined;
6043
+ } | undefined;
6044
+ amount?: string | undefined;
6045
+ amountFormatted?: string | undefined;
6046
+ amountUsd?: string | undefined;
6047
+ minimumAmount?: string | undefined;
6048
+ } | undefined;
6049
+ integratorFeeRecipient?: string | null | undefined;
6050
+ } | null | undefined;
5582
6051
  metadata?: {
5583
6052
  sender?: string | undefined;
5584
6053
  recipient?: string | undefined;
@@ -5639,6 +6108,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
5639
6108
  minimumAmount?: string | undefined;
5640
6109
  } | undefined;
5641
6110
  rate?: string | undefined;
6111
+ quoteOraclePrice?: {
6112
+ rate?: string | undefined;
6113
+ inputAmount?: string | undefined;
6114
+ outputAmount?: string | undefined;
6115
+ observedAt?: string | undefined;
6116
+ from?: {
6117
+ chainId?: number | undefined;
6118
+ address?: string | undefined;
6119
+ currencyId?: string | undefined;
6120
+ decimals?: number | undefined;
6121
+ } | undefined;
6122
+ to?: {
6123
+ chainId?: number | undefined;
6124
+ address?: string | undefined;
6125
+ currencyId?: string | undefined;
6126
+ decimals?: number | undefined;
6127
+ } | undefined;
6128
+ } | undefined;
5642
6129
  route?: {
5643
6130
  origin?: {
5644
6131
  inputCurrency?: {
@@ -5725,7 +6212,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
5725
6212
  price?: string | undefined;
5726
6213
  usesExternalLiquidity?: boolean | undefined;
5727
6214
  timeEstimate?: number | undefined;
5728
- triggeredByCcm?: boolean | undefined;
5729
6215
  triggeredByFastFill?: boolean | undefined;
5730
6216
  outTxs?: {
5731
6217
  fee?: string | undefined;
@@ -5848,11 +6334,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
5848
6334
  address?: string | undefined;
5849
6335
  depositAddressType?: "strict" | "open" | undefined;
5850
6336
  depositor?: string | null | undefined;
6337
+ depositTxHash?: string | null | undefined;
5851
6338
  } | null | undefined;
5852
6339
  data?: {
5853
6340
  slippageTolerance?: string | undefined;
5854
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
5855
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
6341
+ 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" | "N/A" | undefined;
6342
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
6343
+ supersededByRequestId?: string | null | undefined;
5856
6344
  failedTxHash?: string | undefined;
5857
6345
  failedTxBlockNumber?: number | undefined;
5858
6346
  failedCallData?: {
@@ -6554,6 +7042,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
6554
7042
  amountUsd?: string | undefined;
6555
7043
  amountUsdCurrent?: string | undefined;
6556
7044
  }[] | undefined;
7045
+ platformFee?: {
7046
+ bucket?: string | undefined;
7047
+ ruleId?: string | undefined;
7048
+ relayFeeBps?: number | undefined;
7049
+ integratorFeeBps?: number | undefined;
7050
+ totalFeeBps?: number | undefined;
7051
+ relayFee?: {
7052
+ currency?: {
7053
+ chainId?: number | undefined;
7054
+ address?: string | undefined;
7055
+ symbol?: string | undefined;
7056
+ name?: string | undefined;
7057
+ decimals?: number | undefined;
7058
+ metadata?: {
7059
+ logoURI?: string | undefined;
7060
+ verified?: boolean | undefined;
7061
+ isNative?: boolean | undefined;
7062
+ } | undefined;
7063
+ } | undefined;
7064
+ amount?: string | undefined;
7065
+ amountFormatted?: string | undefined;
7066
+ amountUsd?: string | undefined;
7067
+ minimumAmount?: string | undefined;
7068
+ } | undefined;
7069
+ integratorFee?: {
7070
+ currency?: {
7071
+ chainId?: number | undefined;
7072
+ address?: string | undefined;
7073
+ symbol?: string | undefined;
7074
+ name?: string | undefined;
7075
+ decimals?: number | undefined;
7076
+ metadata?: {
7077
+ logoURI?: string | undefined;
7078
+ verified?: boolean | undefined;
7079
+ isNative?: boolean | undefined;
7080
+ } | undefined;
7081
+ } | undefined;
7082
+ amount?: string | undefined;
7083
+ amountFormatted?: string | undefined;
7084
+ amountUsd?: string | undefined;
7085
+ minimumAmount?: string | undefined;
7086
+ } | undefined;
7087
+ totalPlatformFee?: {
7088
+ currency?: {
7089
+ chainId?: number | undefined;
7090
+ address?: string | undefined;
7091
+ symbol?: string | undefined;
7092
+ name?: string | undefined;
7093
+ decimals?: number | undefined;
7094
+ metadata?: {
7095
+ logoURI?: string | undefined;
7096
+ verified?: boolean | undefined;
7097
+ isNative?: boolean | undefined;
7098
+ } | undefined;
7099
+ } | undefined;
7100
+ amount?: string | undefined;
7101
+ amountFormatted?: string | undefined;
7102
+ amountUsd?: string | undefined;
7103
+ minimumAmount?: string | undefined;
7104
+ } | undefined;
7105
+ integratorFeeRecipient?: string | null | undefined;
7106
+ } | null | undefined;
6557
7107
  metadata?: {
6558
7108
  sender?: string | undefined;
6559
7109
  recipient?: string | undefined;
@@ -6614,6 +7164,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
6614
7164
  minimumAmount?: string | undefined;
6615
7165
  } | undefined;
6616
7166
  rate?: string | undefined;
7167
+ quoteOraclePrice?: {
7168
+ rate?: string | undefined;
7169
+ inputAmount?: string | undefined;
7170
+ outputAmount?: string | undefined;
7171
+ observedAt?: string | undefined;
7172
+ from?: {
7173
+ chainId?: number | undefined;
7174
+ address?: string | undefined;
7175
+ currencyId?: string | undefined;
7176
+ decimals?: number | undefined;
7177
+ } | undefined;
7178
+ to?: {
7179
+ chainId?: number | undefined;
7180
+ address?: string | undefined;
7181
+ currencyId?: string | undefined;
7182
+ decimals?: number | undefined;
7183
+ } | undefined;
7184
+ } | undefined;
6617
7185
  route?: {
6618
7186
  origin?: {
6619
7187
  inputCurrency?: {
@@ -6700,7 +7268,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
6700
7268
  price?: string | undefined;
6701
7269
  usesExternalLiquidity?: boolean | undefined;
6702
7270
  timeEstimate?: number | undefined;
6703
- triggeredByCcm?: boolean | undefined;
6704
7271
  triggeredByFastFill?: boolean | undefined;
6705
7272
  outTxs?: {
6706
7273
  fee?: string | undefined;
@@ -6814,11 +7381,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
6814
7381
  address?: string | undefined;
6815
7382
  depositAddressType?: "strict" | "open" | undefined;
6816
7383
  depositor?: string | null | undefined;
7384
+ depositTxHash?: string | null | undefined;
6817
7385
  } | null | undefined;
6818
7386
  data?: {
6819
7387
  slippageTolerance?: string | undefined;
6820
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
6821
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
7388
+ 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" | "N/A" | undefined;
7389
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
7390
+ supersededByRequestId?: string | null | undefined;
6822
7391
  failedTxHash?: string | undefined;
6823
7392
  failedTxBlockNumber?: number | undefined;
6824
7393
  failedCallData?: {
@@ -7520,6 +8089,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
7520
8089
  amountUsd?: string | undefined;
7521
8090
  amountUsdCurrent?: string | undefined;
7522
8091
  }[] | undefined;
8092
+ platformFee?: {
8093
+ bucket?: string | undefined;
8094
+ ruleId?: string | undefined;
8095
+ relayFeeBps?: number | undefined;
8096
+ integratorFeeBps?: number | undefined;
8097
+ totalFeeBps?: number | undefined;
8098
+ relayFee?: {
8099
+ currency?: {
8100
+ chainId?: number | undefined;
8101
+ address?: string | undefined;
8102
+ symbol?: string | undefined;
8103
+ name?: string | undefined;
8104
+ decimals?: number | undefined;
8105
+ metadata?: {
8106
+ logoURI?: string | undefined;
8107
+ verified?: boolean | undefined;
8108
+ isNative?: boolean | undefined;
8109
+ } | undefined;
8110
+ } | undefined;
8111
+ amount?: string | undefined;
8112
+ amountFormatted?: string | undefined;
8113
+ amountUsd?: string | undefined;
8114
+ minimumAmount?: string | undefined;
8115
+ } | undefined;
8116
+ integratorFee?: {
8117
+ currency?: {
8118
+ chainId?: number | undefined;
8119
+ address?: string | undefined;
8120
+ symbol?: string | undefined;
8121
+ name?: string | undefined;
8122
+ decimals?: number | undefined;
8123
+ metadata?: {
8124
+ logoURI?: string | undefined;
8125
+ verified?: boolean | undefined;
8126
+ isNative?: boolean | undefined;
8127
+ } | undefined;
8128
+ } | undefined;
8129
+ amount?: string | undefined;
8130
+ amountFormatted?: string | undefined;
8131
+ amountUsd?: string | undefined;
8132
+ minimumAmount?: string | undefined;
8133
+ } | undefined;
8134
+ totalPlatformFee?: {
8135
+ currency?: {
8136
+ chainId?: number | undefined;
8137
+ address?: string | undefined;
8138
+ symbol?: string | undefined;
8139
+ name?: string | undefined;
8140
+ decimals?: number | undefined;
8141
+ metadata?: {
8142
+ logoURI?: string | undefined;
8143
+ verified?: boolean | undefined;
8144
+ isNative?: boolean | undefined;
8145
+ } | undefined;
8146
+ } | undefined;
8147
+ amount?: string | undefined;
8148
+ amountFormatted?: string | undefined;
8149
+ amountUsd?: string | undefined;
8150
+ minimumAmount?: string | undefined;
8151
+ } | undefined;
8152
+ integratorFeeRecipient?: string | null | undefined;
8153
+ } | null | undefined;
7523
8154
  metadata?: {
7524
8155
  sender?: string | undefined;
7525
8156
  recipient?: string | undefined;
@@ -7580,6 +8211,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
7580
8211
  minimumAmount?: string | undefined;
7581
8212
  } | undefined;
7582
8213
  rate?: string | undefined;
8214
+ quoteOraclePrice?: {
8215
+ rate?: string | undefined;
8216
+ inputAmount?: string | undefined;
8217
+ outputAmount?: string | undefined;
8218
+ observedAt?: string | undefined;
8219
+ from?: {
8220
+ chainId?: number | undefined;
8221
+ address?: string | undefined;
8222
+ currencyId?: string | undefined;
8223
+ decimals?: number | undefined;
8224
+ } | undefined;
8225
+ to?: {
8226
+ chainId?: number | undefined;
8227
+ address?: string | undefined;
8228
+ currencyId?: string | undefined;
8229
+ decimals?: number | undefined;
8230
+ } | undefined;
8231
+ } | undefined;
7583
8232
  route?: {
7584
8233
  origin?: {
7585
8234
  inputCurrency?: {
@@ -7666,7 +8315,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
7666
8315
  price?: string | undefined;
7667
8316
  usesExternalLiquidity?: boolean | undefined;
7668
8317
  timeEstimate?: number | undefined;
7669
- triggeredByCcm?: boolean | undefined;
7670
8318
  triggeredByFastFill?: boolean | undefined;
7671
8319
  outTxs?: {
7672
8320
  fee?: string | undefined;
@@ -7796,11 +8444,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
7796
8444
  address?: string | undefined;
7797
8445
  depositAddressType?: "strict" | "open" | undefined;
7798
8446
  depositor?: string | null | undefined;
8447
+ depositTxHash?: string | null | undefined;
7799
8448
  } | null | undefined;
7800
8449
  data?: {
7801
8450
  slippageTolerance?: string | undefined;
7802
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
7803
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
8451
+ 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" | "N/A" | undefined;
8452
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
8453
+ supersededByRequestId?: string | null | undefined;
7804
8454
  failedTxHash?: string | undefined;
7805
8455
  failedTxBlockNumber?: number | undefined;
7806
8456
  failedCallData?: {
@@ -8502,6 +9152,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
8502
9152
  amountUsd?: string | undefined;
8503
9153
  amountUsdCurrent?: string | undefined;
8504
9154
  }[] | undefined;
9155
+ platformFee?: {
9156
+ bucket?: string | undefined;
9157
+ ruleId?: string | undefined;
9158
+ relayFeeBps?: number | undefined;
9159
+ integratorFeeBps?: number | undefined;
9160
+ totalFeeBps?: number | undefined;
9161
+ relayFee?: {
9162
+ currency?: {
9163
+ chainId?: number | undefined;
9164
+ address?: string | undefined;
9165
+ symbol?: string | undefined;
9166
+ name?: string | undefined;
9167
+ decimals?: number | undefined;
9168
+ metadata?: {
9169
+ logoURI?: string | undefined;
9170
+ verified?: boolean | undefined;
9171
+ isNative?: boolean | undefined;
9172
+ } | undefined;
9173
+ } | undefined;
9174
+ amount?: string | undefined;
9175
+ amountFormatted?: string | undefined;
9176
+ amountUsd?: string | undefined;
9177
+ minimumAmount?: string | undefined;
9178
+ } | undefined;
9179
+ integratorFee?: {
9180
+ currency?: {
9181
+ chainId?: number | undefined;
9182
+ address?: string | undefined;
9183
+ symbol?: string | undefined;
9184
+ name?: string | undefined;
9185
+ decimals?: number | undefined;
9186
+ metadata?: {
9187
+ logoURI?: string | undefined;
9188
+ verified?: boolean | undefined;
9189
+ isNative?: boolean | undefined;
9190
+ } | undefined;
9191
+ } | undefined;
9192
+ amount?: string | undefined;
9193
+ amountFormatted?: string | undefined;
9194
+ amountUsd?: string | undefined;
9195
+ minimumAmount?: string | undefined;
9196
+ } | undefined;
9197
+ totalPlatformFee?: {
9198
+ currency?: {
9199
+ chainId?: number | undefined;
9200
+ address?: string | undefined;
9201
+ symbol?: string | undefined;
9202
+ name?: string | undefined;
9203
+ decimals?: number | undefined;
9204
+ metadata?: {
9205
+ logoURI?: string | undefined;
9206
+ verified?: boolean | undefined;
9207
+ isNative?: boolean | undefined;
9208
+ } | undefined;
9209
+ } | undefined;
9210
+ amount?: string | undefined;
9211
+ amountFormatted?: string | undefined;
9212
+ amountUsd?: string | undefined;
9213
+ minimumAmount?: string | undefined;
9214
+ } | undefined;
9215
+ integratorFeeRecipient?: string | null | undefined;
9216
+ } | null | undefined;
8505
9217
  metadata?: {
8506
9218
  sender?: string | undefined;
8507
9219
  recipient?: string | undefined;
@@ -8562,6 +9274,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
8562
9274
  minimumAmount?: string | undefined;
8563
9275
  } | undefined;
8564
9276
  rate?: string | undefined;
9277
+ quoteOraclePrice?: {
9278
+ rate?: string | undefined;
9279
+ inputAmount?: string | undefined;
9280
+ outputAmount?: string | undefined;
9281
+ observedAt?: string | undefined;
9282
+ from?: {
9283
+ chainId?: number | undefined;
9284
+ address?: string | undefined;
9285
+ currencyId?: string | undefined;
9286
+ decimals?: number | undefined;
9287
+ } | undefined;
9288
+ to?: {
9289
+ chainId?: number | undefined;
9290
+ address?: string | undefined;
9291
+ currencyId?: string | undefined;
9292
+ decimals?: number | undefined;
9293
+ } | undefined;
9294
+ } | undefined;
8565
9295
  route?: {
8566
9296
  origin?: {
8567
9297
  inputCurrency?: {
@@ -8648,7 +9378,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
8648
9378
  price?: string | undefined;
8649
9379
  usesExternalLiquidity?: boolean | undefined;
8650
9380
  timeEstimate?: number | undefined;
8651
- triggeredByCcm?: boolean | undefined;
8652
9381
  triggeredByFastFill?: boolean | undefined;
8653
9382
  outTxs?: {
8654
9383
  fee?: string | undefined;
@@ -8763,11 +9492,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
8763
9492
  address?: string | undefined;
8764
9493
  depositAddressType?: "strict" | "open" | undefined;
8765
9494
  depositor?: string | null | undefined;
9495
+ depositTxHash?: string | null | undefined;
8766
9496
  } | null | undefined;
8767
9497
  data?: {
8768
9498
  slippageTolerance?: string | undefined;
8769
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
8770
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
9499
+ 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" | "N/A" | undefined;
9500
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
9501
+ supersededByRequestId?: string | null | undefined;
8771
9502
  failedTxHash?: string | undefined;
8772
9503
  failedTxBlockNumber?: number | undefined;
8773
9504
  failedCallData?: {
@@ -9469,6 +10200,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
9469
10200
  amountUsd?: string | undefined;
9470
10201
  amountUsdCurrent?: string | undefined;
9471
10202
  }[] | undefined;
10203
+ platformFee?: {
10204
+ bucket?: string | undefined;
10205
+ ruleId?: string | undefined;
10206
+ relayFeeBps?: number | undefined;
10207
+ integratorFeeBps?: number | undefined;
10208
+ totalFeeBps?: number | undefined;
10209
+ relayFee?: {
10210
+ currency?: {
10211
+ chainId?: number | undefined;
10212
+ address?: string | undefined;
10213
+ symbol?: string | undefined;
10214
+ name?: string | undefined;
10215
+ decimals?: number | undefined;
10216
+ metadata?: {
10217
+ logoURI?: string | undefined;
10218
+ verified?: boolean | undefined;
10219
+ isNative?: boolean | undefined;
10220
+ } | undefined;
10221
+ } | undefined;
10222
+ amount?: string | undefined;
10223
+ amountFormatted?: string | undefined;
10224
+ amountUsd?: string | undefined;
10225
+ minimumAmount?: string | undefined;
10226
+ } | undefined;
10227
+ integratorFee?: {
10228
+ currency?: {
10229
+ chainId?: number | undefined;
10230
+ address?: string | undefined;
10231
+ symbol?: string | undefined;
10232
+ name?: string | undefined;
10233
+ decimals?: number | undefined;
10234
+ metadata?: {
10235
+ logoURI?: string | undefined;
10236
+ verified?: boolean | undefined;
10237
+ isNative?: boolean | undefined;
10238
+ } | undefined;
10239
+ } | undefined;
10240
+ amount?: string | undefined;
10241
+ amountFormatted?: string | undefined;
10242
+ amountUsd?: string | undefined;
10243
+ minimumAmount?: string | undefined;
10244
+ } | undefined;
10245
+ totalPlatformFee?: {
10246
+ currency?: {
10247
+ chainId?: number | undefined;
10248
+ address?: string | undefined;
10249
+ symbol?: string | undefined;
10250
+ name?: string | undefined;
10251
+ decimals?: number | undefined;
10252
+ metadata?: {
10253
+ logoURI?: string | undefined;
10254
+ verified?: boolean | undefined;
10255
+ isNative?: boolean | undefined;
10256
+ } | undefined;
10257
+ } | undefined;
10258
+ amount?: string | undefined;
10259
+ amountFormatted?: string | undefined;
10260
+ amountUsd?: string | undefined;
10261
+ minimumAmount?: string | undefined;
10262
+ } | undefined;
10263
+ integratorFeeRecipient?: string | null | undefined;
10264
+ } | null | undefined;
9472
10265
  metadata?: {
9473
10266
  sender?: string | undefined;
9474
10267
  recipient?: string | undefined;
@@ -9529,6 +10322,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
9529
10322
  minimumAmount?: string | undefined;
9530
10323
  } | undefined;
9531
10324
  rate?: string | undefined;
10325
+ quoteOraclePrice?: {
10326
+ rate?: string | undefined;
10327
+ inputAmount?: string | undefined;
10328
+ outputAmount?: string | undefined;
10329
+ observedAt?: string | undefined;
10330
+ from?: {
10331
+ chainId?: number | undefined;
10332
+ address?: string | undefined;
10333
+ currencyId?: string | undefined;
10334
+ decimals?: number | undefined;
10335
+ } | undefined;
10336
+ to?: {
10337
+ chainId?: number | undefined;
10338
+ address?: string | undefined;
10339
+ currencyId?: string | undefined;
10340
+ decimals?: number | undefined;
10341
+ } | undefined;
10342
+ } | undefined;
9532
10343
  route?: {
9533
10344
  origin?: {
9534
10345
  inputCurrency?: {
@@ -9615,7 +10426,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
9615
10426
  price?: string | undefined;
9616
10427
  usesExternalLiquidity?: boolean | undefined;
9617
10428
  timeEstimate?: number | undefined;
9618
- triggeredByCcm?: boolean | undefined;
9619
10429
  triggeredByFastFill?: boolean | undefined;
9620
10430
  outTxs?: {
9621
10431
  fee?: string | undefined;
@@ -9729,11 +10539,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
9729
10539
  address?: string | undefined;
9730
10540
  depositAddressType?: "strict" | "open" | undefined;
9731
10541
  depositor?: string | null | undefined;
10542
+ depositTxHash?: string | null | undefined;
9732
10543
  } | null | undefined;
9733
10544
  data?: {
9734
10545
  slippageTolerance?: string | undefined;
9735
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
9736
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
10546
+ 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" | "N/A" | undefined;
10547
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
10548
+ supersededByRequestId?: string | null | undefined;
9737
10549
  failedTxHash?: string | undefined;
9738
10550
  failedTxBlockNumber?: number | undefined;
9739
10551
  failedCallData?: {
@@ -10435,6 +11247,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
10435
11247
  amountUsd?: string | undefined;
10436
11248
  amountUsdCurrent?: string | undefined;
10437
11249
  }[] | undefined;
11250
+ platformFee?: {
11251
+ bucket?: string | undefined;
11252
+ ruleId?: string | undefined;
11253
+ relayFeeBps?: number | undefined;
11254
+ integratorFeeBps?: number | undefined;
11255
+ totalFeeBps?: number | undefined;
11256
+ relayFee?: {
11257
+ currency?: {
11258
+ chainId?: number | undefined;
11259
+ address?: string | undefined;
11260
+ symbol?: string | undefined;
11261
+ name?: string | undefined;
11262
+ decimals?: number | undefined;
11263
+ metadata?: {
11264
+ logoURI?: string | undefined;
11265
+ verified?: boolean | undefined;
11266
+ isNative?: boolean | undefined;
11267
+ } | undefined;
11268
+ } | undefined;
11269
+ amount?: string | undefined;
11270
+ amountFormatted?: string | undefined;
11271
+ amountUsd?: string | undefined;
11272
+ minimumAmount?: string | undefined;
11273
+ } | undefined;
11274
+ integratorFee?: {
11275
+ currency?: {
11276
+ chainId?: number | undefined;
11277
+ address?: string | undefined;
11278
+ symbol?: string | undefined;
11279
+ name?: string | undefined;
11280
+ decimals?: number | undefined;
11281
+ metadata?: {
11282
+ logoURI?: string | undefined;
11283
+ verified?: boolean | undefined;
11284
+ isNative?: boolean | undefined;
11285
+ } | undefined;
11286
+ } | undefined;
11287
+ amount?: string | undefined;
11288
+ amountFormatted?: string | undefined;
11289
+ amountUsd?: string | undefined;
11290
+ minimumAmount?: string | undefined;
11291
+ } | undefined;
11292
+ totalPlatformFee?: {
11293
+ currency?: {
11294
+ chainId?: number | undefined;
11295
+ address?: string | undefined;
11296
+ symbol?: string | undefined;
11297
+ name?: string | undefined;
11298
+ decimals?: number | undefined;
11299
+ metadata?: {
11300
+ logoURI?: string | undefined;
11301
+ verified?: boolean | undefined;
11302
+ isNative?: boolean | undefined;
11303
+ } | undefined;
11304
+ } | undefined;
11305
+ amount?: string | undefined;
11306
+ amountFormatted?: string | undefined;
11307
+ amountUsd?: string | undefined;
11308
+ minimumAmount?: string | undefined;
11309
+ } | undefined;
11310
+ integratorFeeRecipient?: string | null | undefined;
11311
+ } | null | undefined;
10438
11312
  metadata?: {
10439
11313
  sender?: string | undefined;
10440
11314
  recipient?: string | undefined;
@@ -10495,6 +11369,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
10495
11369
  minimumAmount?: string | undefined;
10496
11370
  } | undefined;
10497
11371
  rate?: string | undefined;
11372
+ quoteOraclePrice?: {
11373
+ rate?: string | undefined;
11374
+ inputAmount?: string | undefined;
11375
+ outputAmount?: string | undefined;
11376
+ observedAt?: string | undefined;
11377
+ from?: {
11378
+ chainId?: number | undefined;
11379
+ address?: string | undefined;
11380
+ currencyId?: string | undefined;
11381
+ decimals?: number | undefined;
11382
+ } | undefined;
11383
+ to?: {
11384
+ chainId?: number | undefined;
11385
+ address?: string | undefined;
11386
+ currencyId?: string | undefined;
11387
+ decimals?: number | undefined;
11388
+ } | undefined;
11389
+ } | undefined;
10498
11390
  route?: {
10499
11391
  origin?: {
10500
11392
  inputCurrency?: {
@@ -10581,7 +11473,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
10581
11473
  price?: string | undefined;
10582
11474
  usesExternalLiquidity?: boolean | undefined;
10583
11475
  timeEstimate?: number | undefined;
10584
- triggeredByCcm?: boolean | undefined;
10585
11476
  triggeredByFastFill?: boolean | undefined;
10586
11477
  outTxs?: {
10587
11478
  fee?: string | undefined;
@@ -10704,11 +11595,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
10704
11595
  address?: string | undefined;
10705
11596
  depositAddressType?: "strict" | "open" | undefined;
10706
11597
  depositor?: string | null | undefined;
11598
+ depositTxHash?: string | null | undefined;
10707
11599
  } | null | undefined;
10708
11600
  data?: {
10709
11601
  slippageTolerance?: string | undefined;
10710
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
10711
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
11602
+ 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" | "N/A" | undefined;
11603
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
11604
+ supersededByRequestId?: string | null | undefined;
10712
11605
  failedTxHash?: string | undefined;
10713
11606
  failedTxBlockNumber?: number | undefined;
10714
11607
  failedCallData?: {
@@ -11410,6 +12303,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
11410
12303
  amountUsd?: string | undefined;
11411
12304
  amountUsdCurrent?: string | undefined;
11412
12305
  }[] | undefined;
12306
+ platformFee?: {
12307
+ bucket?: string | undefined;
12308
+ ruleId?: string | undefined;
12309
+ relayFeeBps?: number | undefined;
12310
+ integratorFeeBps?: number | undefined;
12311
+ totalFeeBps?: number | undefined;
12312
+ relayFee?: {
12313
+ currency?: {
12314
+ chainId?: number | undefined;
12315
+ address?: string | undefined;
12316
+ symbol?: string | undefined;
12317
+ name?: string | undefined;
12318
+ decimals?: number | undefined;
12319
+ metadata?: {
12320
+ logoURI?: string | undefined;
12321
+ verified?: boolean | undefined;
12322
+ isNative?: boolean | undefined;
12323
+ } | undefined;
12324
+ } | undefined;
12325
+ amount?: string | undefined;
12326
+ amountFormatted?: string | undefined;
12327
+ amountUsd?: string | undefined;
12328
+ minimumAmount?: string | undefined;
12329
+ } | undefined;
12330
+ integratorFee?: {
12331
+ currency?: {
12332
+ chainId?: number | undefined;
12333
+ address?: string | undefined;
12334
+ symbol?: string | undefined;
12335
+ name?: string | undefined;
12336
+ decimals?: number | undefined;
12337
+ metadata?: {
12338
+ logoURI?: string | undefined;
12339
+ verified?: boolean | undefined;
12340
+ isNative?: boolean | undefined;
12341
+ } | undefined;
12342
+ } | undefined;
12343
+ amount?: string | undefined;
12344
+ amountFormatted?: string | undefined;
12345
+ amountUsd?: string | undefined;
12346
+ minimumAmount?: string | undefined;
12347
+ } | undefined;
12348
+ totalPlatformFee?: {
12349
+ currency?: {
12350
+ chainId?: number | undefined;
12351
+ address?: string | undefined;
12352
+ symbol?: string | undefined;
12353
+ name?: string | undefined;
12354
+ decimals?: number | undefined;
12355
+ metadata?: {
12356
+ logoURI?: string | undefined;
12357
+ verified?: boolean | undefined;
12358
+ isNative?: boolean | undefined;
12359
+ } | undefined;
12360
+ } | undefined;
12361
+ amount?: string | undefined;
12362
+ amountFormatted?: string | undefined;
12363
+ amountUsd?: string | undefined;
12364
+ minimumAmount?: string | undefined;
12365
+ } | undefined;
12366
+ integratorFeeRecipient?: string | null | undefined;
12367
+ } | null | undefined;
11413
12368
  metadata?: {
11414
12369
  sender?: string | undefined;
11415
12370
  recipient?: string | undefined;
@@ -11470,6 +12425,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
11470
12425
  minimumAmount?: string | undefined;
11471
12426
  } | undefined;
11472
12427
  rate?: string | undefined;
12428
+ quoteOraclePrice?: {
12429
+ rate?: string | undefined;
12430
+ inputAmount?: string | undefined;
12431
+ outputAmount?: string | undefined;
12432
+ observedAt?: string | undefined;
12433
+ from?: {
12434
+ chainId?: number | undefined;
12435
+ address?: string | undefined;
12436
+ currencyId?: string | undefined;
12437
+ decimals?: number | undefined;
12438
+ } | undefined;
12439
+ to?: {
12440
+ chainId?: number | undefined;
12441
+ address?: string | undefined;
12442
+ currencyId?: string | undefined;
12443
+ decimals?: number | undefined;
12444
+ } | undefined;
12445
+ } | undefined;
11473
12446
  route?: {
11474
12447
  origin?: {
11475
12448
  inputCurrency?: {
@@ -11556,7 +12529,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
11556
12529
  price?: string | undefined;
11557
12530
  usesExternalLiquidity?: boolean | undefined;
11558
12531
  timeEstimate?: number | undefined;
11559
- triggeredByCcm?: boolean | undefined;
11560
12532
  triggeredByFastFill?: boolean | undefined;
11561
12533
  outTxs?: {
11562
12534
  fee?: string | undefined;
@@ -11670,11 +12642,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
11670
12642
  address?: string | undefined;
11671
12643
  depositAddressType?: "strict" | "open" | undefined;
11672
12644
  depositor?: string | null | undefined;
12645
+ depositTxHash?: string | null | undefined;
11673
12646
  } | null | undefined;
11674
12647
  data?: {
11675
12648
  slippageTolerance?: string | undefined;
11676
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
11677
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
12649
+ 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" | "N/A" | undefined;
12650
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
12651
+ supersededByRequestId?: string | null | undefined;
11678
12652
  failedTxHash?: string | undefined;
11679
12653
  failedTxBlockNumber?: number | undefined;
11680
12654
  failedCallData?: {
@@ -12376,6 +13350,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
12376
13350
  amountUsd?: string | undefined;
12377
13351
  amountUsdCurrent?: string | undefined;
12378
13352
  }[] | undefined;
13353
+ platformFee?: {
13354
+ bucket?: string | undefined;
13355
+ ruleId?: string | undefined;
13356
+ relayFeeBps?: number | undefined;
13357
+ integratorFeeBps?: number | undefined;
13358
+ totalFeeBps?: number | undefined;
13359
+ relayFee?: {
13360
+ currency?: {
13361
+ chainId?: number | undefined;
13362
+ address?: string | undefined;
13363
+ symbol?: string | undefined;
13364
+ name?: string | undefined;
13365
+ decimals?: number | undefined;
13366
+ metadata?: {
13367
+ logoURI?: string | undefined;
13368
+ verified?: boolean | undefined;
13369
+ isNative?: boolean | undefined;
13370
+ } | undefined;
13371
+ } | undefined;
13372
+ amount?: string | undefined;
13373
+ amountFormatted?: string | undefined;
13374
+ amountUsd?: string | undefined;
13375
+ minimumAmount?: string | undefined;
13376
+ } | undefined;
13377
+ integratorFee?: {
13378
+ currency?: {
13379
+ chainId?: number | undefined;
13380
+ address?: string | undefined;
13381
+ symbol?: string | undefined;
13382
+ name?: string | undefined;
13383
+ decimals?: number | undefined;
13384
+ metadata?: {
13385
+ logoURI?: string | undefined;
13386
+ verified?: boolean | undefined;
13387
+ isNative?: boolean | undefined;
13388
+ } | undefined;
13389
+ } | undefined;
13390
+ amount?: string | undefined;
13391
+ amountFormatted?: string | undefined;
13392
+ amountUsd?: string | undefined;
13393
+ minimumAmount?: string | undefined;
13394
+ } | undefined;
13395
+ totalPlatformFee?: {
13396
+ currency?: {
13397
+ chainId?: number | undefined;
13398
+ address?: string | undefined;
13399
+ symbol?: string | undefined;
13400
+ name?: string | undefined;
13401
+ decimals?: number | undefined;
13402
+ metadata?: {
13403
+ logoURI?: string | undefined;
13404
+ verified?: boolean | undefined;
13405
+ isNative?: boolean | undefined;
13406
+ } | undefined;
13407
+ } | undefined;
13408
+ amount?: string | undefined;
13409
+ amountFormatted?: string | undefined;
13410
+ amountUsd?: string | undefined;
13411
+ minimumAmount?: string | undefined;
13412
+ } | undefined;
13413
+ integratorFeeRecipient?: string | null | undefined;
13414
+ } | null | undefined;
12379
13415
  metadata?: {
12380
13416
  sender?: string | undefined;
12381
13417
  recipient?: string | undefined;
@@ -12436,6 +13472,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
12436
13472
  minimumAmount?: string | undefined;
12437
13473
  } | undefined;
12438
13474
  rate?: string | undefined;
13475
+ quoteOraclePrice?: {
13476
+ rate?: string | undefined;
13477
+ inputAmount?: string | undefined;
13478
+ outputAmount?: string | undefined;
13479
+ observedAt?: string | undefined;
13480
+ from?: {
13481
+ chainId?: number | undefined;
13482
+ address?: string | undefined;
13483
+ currencyId?: string | undefined;
13484
+ decimals?: number | undefined;
13485
+ } | undefined;
13486
+ to?: {
13487
+ chainId?: number | undefined;
13488
+ address?: string | undefined;
13489
+ currencyId?: string | undefined;
13490
+ decimals?: number | undefined;
13491
+ } | undefined;
13492
+ } | undefined;
12439
13493
  route?: {
12440
13494
  origin?: {
12441
13495
  inputCurrency?: {
@@ -12522,7 +13576,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
12522
13576
  price?: string | undefined;
12523
13577
  usesExternalLiquidity?: boolean | undefined;
12524
13578
  timeEstimate?: number | undefined;
12525
- triggeredByCcm?: boolean | undefined;
12526
13579
  triggeredByFastFill?: boolean | undefined;
12527
13580
  outTxs?: {
12528
13581
  fee?: string | undefined;
@@ -12652,11 +13705,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
12652
13705
  address?: string | undefined;
12653
13706
  depositAddressType?: "strict" | "open" | undefined;
12654
13707
  depositor?: string | null | undefined;
13708
+ depositTxHash?: string | null | undefined;
12655
13709
  } | null | undefined;
12656
13710
  data?: {
12657
13711
  slippageTolerance?: string | undefined;
12658
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
12659
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
13712
+ 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" | "N/A" | undefined;
13713
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
13714
+ supersededByRequestId?: string | null | undefined;
12660
13715
  failedTxHash?: string | undefined;
12661
13716
  failedTxBlockNumber?: number | undefined;
12662
13717
  failedCallData?: {
@@ -13351,13 +14406,75 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
13351
14406
  } | undefined;
13352
14407
  } | undefined;
13353
14408
  } | null | undefined;
13354
- paidAppFees?: {
13355
- recipient?: string | undefined;
13356
- bps?: string | undefined;
13357
- amount?: string | undefined;
13358
- amountUsd?: string | undefined;
13359
- amountUsdCurrent?: string | undefined;
13360
- }[] | undefined;
14409
+ paidAppFees?: {
14410
+ recipient?: string | undefined;
14411
+ bps?: string | undefined;
14412
+ amount?: string | undefined;
14413
+ amountUsd?: string | undefined;
14414
+ amountUsdCurrent?: string | undefined;
14415
+ }[] | undefined;
14416
+ platformFee?: {
14417
+ bucket?: string | undefined;
14418
+ ruleId?: string | undefined;
14419
+ relayFeeBps?: number | undefined;
14420
+ integratorFeeBps?: number | undefined;
14421
+ totalFeeBps?: number | undefined;
14422
+ relayFee?: {
14423
+ currency?: {
14424
+ chainId?: number | undefined;
14425
+ address?: string | undefined;
14426
+ symbol?: string | undefined;
14427
+ name?: string | undefined;
14428
+ decimals?: number | undefined;
14429
+ metadata?: {
14430
+ logoURI?: string | undefined;
14431
+ verified?: boolean | undefined;
14432
+ isNative?: boolean | undefined;
14433
+ } | undefined;
14434
+ } | undefined;
14435
+ amount?: string | undefined;
14436
+ amountFormatted?: string | undefined;
14437
+ amountUsd?: string | undefined;
14438
+ minimumAmount?: string | undefined;
14439
+ } | undefined;
14440
+ integratorFee?: {
14441
+ currency?: {
14442
+ chainId?: number | undefined;
14443
+ address?: string | undefined;
14444
+ symbol?: string | undefined;
14445
+ name?: string | undefined;
14446
+ decimals?: number | undefined;
14447
+ metadata?: {
14448
+ logoURI?: string | undefined;
14449
+ verified?: boolean | undefined;
14450
+ isNative?: boolean | undefined;
14451
+ } | undefined;
14452
+ } | undefined;
14453
+ amount?: string | undefined;
14454
+ amountFormatted?: string | undefined;
14455
+ amountUsd?: string | undefined;
14456
+ minimumAmount?: string | undefined;
14457
+ } | undefined;
14458
+ totalPlatformFee?: {
14459
+ currency?: {
14460
+ chainId?: number | undefined;
14461
+ address?: string | undefined;
14462
+ symbol?: string | undefined;
14463
+ name?: string | undefined;
14464
+ decimals?: number | undefined;
14465
+ metadata?: {
14466
+ logoURI?: string | undefined;
14467
+ verified?: boolean | undefined;
14468
+ isNative?: boolean | undefined;
14469
+ } | undefined;
14470
+ } | undefined;
14471
+ amount?: string | undefined;
14472
+ amountFormatted?: string | undefined;
14473
+ amountUsd?: string | undefined;
14474
+ minimumAmount?: string | undefined;
14475
+ } | undefined;
14476
+ integratorFeeRecipient?: string | null | undefined;
14477
+ } | null | undefined;
13361
14478
  metadata?: {
13362
14479
  sender?: string | undefined;
13363
14480
  recipient?: string | undefined;
@@ -13418,6 +14535,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
13418
14535
  minimumAmount?: string | undefined;
13419
14536
  } | undefined;
13420
14537
  rate?: string | undefined;
14538
+ quoteOraclePrice?: {
14539
+ rate?: string | undefined;
14540
+ inputAmount?: string | undefined;
14541
+ outputAmount?: string | undefined;
14542
+ observedAt?: string | undefined;
14543
+ from?: {
14544
+ chainId?: number | undefined;
14545
+ address?: string | undefined;
14546
+ currencyId?: string | undefined;
14547
+ decimals?: number | undefined;
14548
+ } | undefined;
14549
+ to?: {
14550
+ chainId?: number | undefined;
14551
+ address?: string | undefined;
14552
+ currencyId?: string | undefined;
14553
+ decimals?: number | undefined;
14554
+ } | undefined;
14555
+ } | undefined;
13421
14556
  route?: {
13422
14557
  origin?: {
13423
14558
  inputCurrency?: {
@@ -13504,7 +14639,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
13504
14639
  price?: string | undefined;
13505
14640
  usesExternalLiquidity?: boolean | undefined;
13506
14641
  timeEstimate?: number | undefined;
13507
- triggeredByCcm?: boolean | undefined;
13508
14642
  triggeredByFastFill?: boolean | undefined;
13509
14643
  outTxs?: {
13510
14644
  fee?: string | undefined;
@@ -13619,11 +14753,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
13619
14753
  address?: string | undefined;
13620
14754
  depositAddressType?: "strict" | "open" | undefined;
13621
14755
  depositor?: string | null | undefined;
14756
+ depositTxHash?: string | null | undefined;
13622
14757
  } | null | undefined;
13623
14758
  data?: {
13624
14759
  slippageTolerance?: string | undefined;
13625
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
13626
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
14760
+ 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" | "N/A" | undefined;
14761
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
14762
+ supersededByRequestId?: string | null | undefined;
13627
14763
  failedTxHash?: string | undefined;
13628
14764
  failedTxBlockNumber?: number | undefined;
13629
14765
  failedCallData?: {
@@ -14325,6 +15461,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
14325
15461
  amountUsd?: string | undefined;
14326
15462
  amountUsdCurrent?: string | undefined;
14327
15463
  }[] | undefined;
15464
+ platformFee?: {
15465
+ bucket?: string | undefined;
15466
+ ruleId?: string | undefined;
15467
+ relayFeeBps?: number | undefined;
15468
+ integratorFeeBps?: number | undefined;
15469
+ totalFeeBps?: number | undefined;
15470
+ relayFee?: {
15471
+ currency?: {
15472
+ chainId?: number | undefined;
15473
+ address?: string | undefined;
15474
+ symbol?: string | undefined;
15475
+ name?: string | undefined;
15476
+ decimals?: number | undefined;
15477
+ metadata?: {
15478
+ logoURI?: string | undefined;
15479
+ verified?: boolean | undefined;
15480
+ isNative?: boolean | undefined;
15481
+ } | undefined;
15482
+ } | undefined;
15483
+ amount?: string | undefined;
15484
+ amountFormatted?: string | undefined;
15485
+ amountUsd?: string | undefined;
15486
+ minimumAmount?: string | undefined;
15487
+ } | undefined;
15488
+ integratorFee?: {
15489
+ currency?: {
15490
+ chainId?: number | undefined;
15491
+ address?: string | undefined;
15492
+ symbol?: string | undefined;
15493
+ name?: string | undefined;
15494
+ decimals?: number | undefined;
15495
+ metadata?: {
15496
+ logoURI?: string | undefined;
15497
+ verified?: boolean | undefined;
15498
+ isNative?: boolean | undefined;
15499
+ } | undefined;
15500
+ } | undefined;
15501
+ amount?: string | undefined;
15502
+ amountFormatted?: string | undefined;
15503
+ amountUsd?: string | undefined;
15504
+ minimumAmount?: string | undefined;
15505
+ } | undefined;
15506
+ totalPlatformFee?: {
15507
+ currency?: {
15508
+ chainId?: number | undefined;
15509
+ address?: string | undefined;
15510
+ symbol?: string | undefined;
15511
+ name?: string | undefined;
15512
+ decimals?: number | undefined;
15513
+ metadata?: {
15514
+ logoURI?: string | undefined;
15515
+ verified?: boolean | undefined;
15516
+ isNative?: boolean | undefined;
15517
+ } | undefined;
15518
+ } | undefined;
15519
+ amount?: string | undefined;
15520
+ amountFormatted?: string | undefined;
15521
+ amountUsd?: string | undefined;
15522
+ minimumAmount?: string | undefined;
15523
+ } | undefined;
15524
+ integratorFeeRecipient?: string | null | undefined;
15525
+ } | null | undefined;
14328
15526
  metadata?: {
14329
15527
  sender?: string | undefined;
14330
15528
  recipient?: string | undefined;
@@ -14385,6 +15583,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
14385
15583
  minimumAmount?: string | undefined;
14386
15584
  } | undefined;
14387
15585
  rate?: string | undefined;
15586
+ quoteOraclePrice?: {
15587
+ rate?: string | undefined;
15588
+ inputAmount?: string | undefined;
15589
+ outputAmount?: string | undefined;
15590
+ observedAt?: string | undefined;
15591
+ from?: {
15592
+ chainId?: number | undefined;
15593
+ address?: string | undefined;
15594
+ currencyId?: string | undefined;
15595
+ decimals?: number | undefined;
15596
+ } | undefined;
15597
+ to?: {
15598
+ chainId?: number | undefined;
15599
+ address?: string | undefined;
15600
+ currencyId?: string | undefined;
15601
+ decimals?: number | undefined;
15602
+ } | undefined;
15603
+ } | undefined;
14388
15604
  route?: {
14389
15605
  origin?: {
14390
15606
  inputCurrency?: {
@@ -14471,7 +15687,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
14471
15687
  price?: string | undefined;
14472
15688
  usesExternalLiquidity?: boolean | undefined;
14473
15689
  timeEstimate?: number | undefined;
14474
- triggeredByCcm?: boolean | undefined;
14475
15690
  triggeredByFastFill?: boolean | undefined;
14476
15691
  outTxs?: {
14477
15692
  fee?: string | undefined;
@@ -14585,11 +15800,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
14585
15800
  address?: string | undefined;
14586
15801
  depositAddressType?: "strict" | "open" | undefined;
14587
15802
  depositor?: string | null | undefined;
15803
+ depositTxHash?: string | null | undefined;
14588
15804
  } | null | undefined;
14589
15805
  data?: {
14590
15806
  slippageTolerance?: string | undefined;
14591
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
14592
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
15807
+ 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" | "N/A" | undefined;
15808
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
15809
+ supersededByRequestId?: string | null | undefined;
14593
15810
  failedTxHash?: string | undefined;
14594
15811
  failedTxBlockNumber?: number | undefined;
14595
15812
  failedCallData?: {
@@ -15291,6 +16508,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
15291
16508
  amountUsd?: string | undefined;
15292
16509
  amountUsdCurrent?: string | undefined;
15293
16510
  }[] | undefined;
16511
+ platformFee?: {
16512
+ bucket?: string | undefined;
16513
+ ruleId?: string | undefined;
16514
+ relayFeeBps?: number | undefined;
16515
+ integratorFeeBps?: number | undefined;
16516
+ totalFeeBps?: number | undefined;
16517
+ relayFee?: {
16518
+ currency?: {
16519
+ chainId?: number | undefined;
16520
+ address?: string | undefined;
16521
+ symbol?: string | undefined;
16522
+ name?: string | undefined;
16523
+ decimals?: number | undefined;
16524
+ metadata?: {
16525
+ logoURI?: string | undefined;
16526
+ verified?: boolean | undefined;
16527
+ isNative?: boolean | undefined;
16528
+ } | undefined;
16529
+ } | undefined;
16530
+ amount?: string | undefined;
16531
+ amountFormatted?: string | undefined;
16532
+ amountUsd?: string | undefined;
16533
+ minimumAmount?: string | undefined;
16534
+ } | undefined;
16535
+ integratorFee?: {
16536
+ currency?: {
16537
+ chainId?: number | undefined;
16538
+ address?: string | undefined;
16539
+ symbol?: string | undefined;
16540
+ name?: string | undefined;
16541
+ decimals?: number | undefined;
16542
+ metadata?: {
16543
+ logoURI?: string | undefined;
16544
+ verified?: boolean | undefined;
16545
+ isNative?: boolean | undefined;
16546
+ } | undefined;
16547
+ } | undefined;
16548
+ amount?: string | undefined;
16549
+ amountFormatted?: string | undefined;
16550
+ amountUsd?: string | undefined;
16551
+ minimumAmount?: string | undefined;
16552
+ } | undefined;
16553
+ totalPlatformFee?: {
16554
+ currency?: {
16555
+ chainId?: number | undefined;
16556
+ address?: string | undefined;
16557
+ symbol?: string | undefined;
16558
+ name?: string | undefined;
16559
+ decimals?: number | undefined;
16560
+ metadata?: {
16561
+ logoURI?: string | undefined;
16562
+ verified?: boolean | undefined;
16563
+ isNative?: boolean | undefined;
16564
+ } | undefined;
16565
+ } | undefined;
16566
+ amount?: string | undefined;
16567
+ amountFormatted?: string | undefined;
16568
+ amountUsd?: string | undefined;
16569
+ minimumAmount?: string | undefined;
16570
+ } | undefined;
16571
+ integratorFeeRecipient?: string | null | undefined;
16572
+ } | null | undefined;
15294
16573
  metadata?: {
15295
16574
  sender?: string | undefined;
15296
16575
  recipient?: string | undefined;
@@ -15351,6 +16630,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
15351
16630
  minimumAmount?: string | undefined;
15352
16631
  } | undefined;
15353
16632
  rate?: string | undefined;
16633
+ quoteOraclePrice?: {
16634
+ rate?: string | undefined;
16635
+ inputAmount?: string | undefined;
16636
+ outputAmount?: string | undefined;
16637
+ observedAt?: string | undefined;
16638
+ from?: {
16639
+ chainId?: number | undefined;
16640
+ address?: string | undefined;
16641
+ currencyId?: string | undefined;
16642
+ decimals?: number | undefined;
16643
+ } | undefined;
16644
+ to?: {
16645
+ chainId?: number | undefined;
16646
+ address?: string | undefined;
16647
+ currencyId?: string | undefined;
16648
+ decimals?: number | undefined;
16649
+ } | undefined;
16650
+ } | undefined;
15354
16651
  route?: {
15355
16652
  origin?: {
15356
16653
  inputCurrency?: {
@@ -15437,7 +16734,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
15437
16734
  price?: string | undefined;
15438
16735
  usesExternalLiquidity?: boolean | undefined;
15439
16736
  timeEstimate?: number | undefined;
15440
- triggeredByCcm?: boolean | undefined;
15441
16737
  triggeredByFastFill?: boolean | undefined;
15442
16738
  outTxs?: {
15443
16739
  fee?: string | undefined;
@@ -15560,11 +16856,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
15560
16856
  address?: string | undefined;
15561
16857
  depositAddressType?: "strict" | "open" | undefined;
15562
16858
  depositor?: string | null | undefined;
16859
+ depositTxHash?: string | null | undefined;
15563
16860
  } | null | undefined;
15564
16861
  data?: {
15565
16862
  slippageTolerance?: string | undefined;
15566
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
15567
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
16863
+ 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" | "N/A" | undefined;
16864
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
16865
+ supersededByRequestId?: string | null | undefined;
15568
16866
  failedTxHash?: string | undefined;
15569
16867
  failedTxBlockNumber?: number | undefined;
15570
16868
  failedCallData?: {
@@ -16266,6 +17564,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
16266
17564
  amountUsd?: string | undefined;
16267
17565
  amountUsdCurrent?: string | undefined;
16268
17566
  }[] | undefined;
17567
+ platformFee?: {
17568
+ bucket?: string | undefined;
17569
+ ruleId?: string | undefined;
17570
+ relayFeeBps?: number | undefined;
17571
+ integratorFeeBps?: number | undefined;
17572
+ totalFeeBps?: number | undefined;
17573
+ relayFee?: {
17574
+ currency?: {
17575
+ chainId?: number | undefined;
17576
+ address?: string | undefined;
17577
+ symbol?: string | undefined;
17578
+ name?: string | undefined;
17579
+ decimals?: number | undefined;
17580
+ metadata?: {
17581
+ logoURI?: string | undefined;
17582
+ verified?: boolean | undefined;
17583
+ isNative?: boolean | undefined;
17584
+ } | undefined;
17585
+ } | undefined;
17586
+ amount?: string | undefined;
17587
+ amountFormatted?: string | undefined;
17588
+ amountUsd?: string | undefined;
17589
+ minimumAmount?: string | undefined;
17590
+ } | undefined;
17591
+ integratorFee?: {
17592
+ currency?: {
17593
+ chainId?: number | undefined;
17594
+ address?: string | undefined;
17595
+ symbol?: string | undefined;
17596
+ name?: string | undefined;
17597
+ decimals?: number | undefined;
17598
+ metadata?: {
17599
+ logoURI?: string | undefined;
17600
+ verified?: boolean | undefined;
17601
+ isNative?: boolean | undefined;
17602
+ } | undefined;
17603
+ } | undefined;
17604
+ amount?: string | undefined;
17605
+ amountFormatted?: string | undefined;
17606
+ amountUsd?: string | undefined;
17607
+ minimumAmount?: string | undefined;
17608
+ } | undefined;
17609
+ totalPlatformFee?: {
17610
+ currency?: {
17611
+ chainId?: number | undefined;
17612
+ address?: string | undefined;
17613
+ symbol?: string | undefined;
17614
+ name?: string | undefined;
17615
+ decimals?: number | undefined;
17616
+ metadata?: {
17617
+ logoURI?: string | undefined;
17618
+ verified?: boolean | undefined;
17619
+ isNative?: boolean | undefined;
17620
+ } | undefined;
17621
+ } | undefined;
17622
+ amount?: string | undefined;
17623
+ amountFormatted?: string | undefined;
17624
+ amountUsd?: string | undefined;
17625
+ minimumAmount?: string | undefined;
17626
+ } | undefined;
17627
+ integratorFeeRecipient?: string | null | undefined;
17628
+ } | null | undefined;
16269
17629
  metadata?: {
16270
17630
  sender?: string | undefined;
16271
17631
  recipient?: string | undefined;
@@ -16326,6 +17686,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
16326
17686
  minimumAmount?: string | undefined;
16327
17687
  } | undefined;
16328
17688
  rate?: string | undefined;
17689
+ quoteOraclePrice?: {
17690
+ rate?: string | undefined;
17691
+ inputAmount?: string | undefined;
17692
+ outputAmount?: string | undefined;
17693
+ observedAt?: string | undefined;
17694
+ from?: {
17695
+ chainId?: number | undefined;
17696
+ address?: string | undefined;
17697
+ currencyId?: string | undefined;
17698
+ decimals?: number | undefined;
17699
+ } | undefined;
17700
+ to?: {
17701
+ chainId?: number | undefined;
17702
+ address?: string | undefined;
17703
+ currencyId?: string | undefined;
17704
+ decimals?: number | undefined;
17705
+ } | undefined;
17706
+ } | undefined;
16329
17707
  route?: {
16330
17708
  origin?: {
16331
17709
  inputCurrency?: {
@@ -16412,7 +17790,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
16412
17790
  price?: string | undefined;
16413
17791
  usesExternalLiquidity?: boolean | undefined;
16414
17792
  timeEstimate?: number | undefined;
16415
- triggeredByCcm?: boolean | undefined;
16416
17793
  triggeredByFastFill?: boolean | undefined;
16417
17794
  outTxs?: {
16418
17795
  fee?: string | undefined;
@@ -16526,11 +17903,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
16526
17903
  address?: string | undefined;
16527
17904
  depositAddressType?: "strict" | "open" | undefined;
16528
17905
  depositor?: string | null | undefined;
17906
+ depositTxHash?: string | null | undefined;
16529
17907
  } | null | undefined;
16530
17908
  data?: {
16531
17909
  slippageTolerance?: string | undefined;
16532
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
16533
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
17910
+ 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" | "N/A" | undefined;
17911
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
17912
+ supersededByRequestId?: string | null | undefined;
16534
17913
  failedTxHash?: string | undefined;
16535
17914
  failedTxBlockNumber?: number | undefined;
16536
17915
  failedCallData?: {
@@ -17225,13 +18604,75 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
17225
18604
  } | undefined;
17226
18605
  } | undefined;
17227
18606
  } | null | undefined;
17228
- paidAppFees?: {
17229
- recipient?: string | undefined;
17230
- bps?: string | undefined;
17231
- amount?: string | undefined;
17232
- amountUsd?: string | undefined;
17233
- amountUsdCurrent?: string | undefined;
17234
- }[] | undefined;
18607
+ paidAppFees?: {
18608
+ recipient?: string | undefined;
18609
+ bps?: string | undefined;
18610
+ amount?: string | undefined;
18611
+ amountUsd?: string | undefined;
18612
+ amountUsdCurrent?: string | undefined;
18613
+ }[] | undefined;
18614
+ platformFee?: {
18615
+ bucket?: string | undefined;
18616
+ ruleId?: string | undefined;
18617
+ relayFeeBps?: number | undefined;
18618
+ integratorFeeBps?: number | undefined;
18619
+ totalFeeBps?: number | undefined;
18620
+ relayFee?: {
18621
+ currency?: {
18622
+ chainId?: number | undefined;
18623
+ address?: string | undefined;
18624
+ symbol?: string | undefined;
18625
+ name?: string | undefined;
18626
+ decimals?: number | undefined;
18627
+ metadata?: {
18628
+ logoURI?: string | undefined;
18629
+ verified?: boolean | undefined;
18630
+ isNative?: boolean | undefined;
18631
+ } | undefined;
18632
+ } | undefined;
18633
+ amount?: string | undefined;
18634
+ amountFormatted?: string | undefined;
18635
+ amountUsd?: string | undefined;
18636
+ minimumAmount?: string | undefined;
18637
+ } | undefined;
18638
+ integratorFee?: {
18639
+ currency?: {
18640
+ chainId?: number | undefined;
18641
+ address?: string | undefined;
18642
+ symbol?: string | undefined;
18643
+ name?: string | undefined;
18644
+ decimals?: number | undefined;
18645
+ metadata?: {
18646
+ logoURI?: string | undefined;
18647
+ verified?: boolean | undefined;
18648
+ isNative?: boolean | undefined;
18649
+ } | undefined;
18650
+ } | undefined;
18651
+ amount?: string | undefined;
18652
+ amountFormatted?: string | undefined;
18653
+ amountUsd?: string | undefined;
18654
+ minimumAmount?: string | undefined;
18655
+ } | undefined;
18656
+ totalPlatformFee?: {
18657
+ currency?: {
18658
+ chainId?: number | undefined;
18659
+ address?: string | undefined;
18660
+ symbol?: string | undefined;
18661
+ name?: string | undefined;
18662
+ decimals?: number | undefined;
18663
+ metadata?: {
18664
+ logoURI?: string | undefined;
18665
+ verified?: boolean | undefined;
18666
+ isNative?: boolean | undefined;
18667
+ } | undefined;
18668
+ } | undefined;
18669
+ amount?: string | undefined;
18670
+ amountFormatted?: string | undefined;
18671
+ amountUsd?: string | undefined;
18672
+ minimumAmount?: string | undefined;
18673
+ } | undefined;
18674
+ integratorFeeRecipient?: string | null | undefined;
18675
+ } | null | undefined;
17235
18676
  metadata?: {
17236
18677
  sender?: string | undefined;
17237
18678
  recipient?: string | undefined;
@@ -17292,6 +18733,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
17292
18733
  minimumAmount?: string | undefined;
17293
18734
  } | undefined;
17294
18735
  rate?: string | undefined;
18736
+ quoteOraclePrice?: {
18737
+ rate?: string | undefined;
18738
+ inputAmount?: string | undefined;
18739
+ outputAmount?: string | undefined;
18740
+ observedAt?: string | undefined;
18741
+ from?: {
18742
+ chainId?: number | undefined;
18743
+ address?: string | undefined;
18744
+ currencyId?: string | undefined;
18745
+ decimals?: number | undefined;
18746
+ } | undefined;
18747
+ to?: {
18748
+ chainId?: number | undefined;
18749
+ address?: string | undefined;
18750
+ currencyId?: string | undefined;
18751
+ decimals?: number | undefined;
18752
+ } | undefined;
18753
+ } | undefined;
17295
18754
  route?: {
17296
18755
  origin?: {
17297
18756
  inputCurrency?: {
@@ -17378,7 +18837,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
17378
18837
  price?: string | undefined;
17379
18838
  usesExternalLiquidity?: boolean | undefined;
17380
18839
  timeEstimate?: number | undefined;
17381
- triggeredByCcm?: boolean | undefined;
17382
18840
  triggeredByFastFill?: boolean | undefined;
17383
18841
  outTxs?: {
17384
18842
  fee?: string | undefined;
@@ -17508,11 +18966,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
17508
18966
  address?: string | undefined;
17509
18967
  depositAddressType?: "strict" | "open" | undefined;
17510
18968
  depositor?: string | null | undefined;
18969
+ depositTxHash?: string | null | undefined;
17511
18970
  } | null | undefined;
17512
18971
  data?: {
17513
18972
  slippageTolerance?: string | undefined;
17514
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
17515
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
18973
+ 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" | "N/A" | undefined;
18974
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
18975
+ supersededByRequestId?: string | null | undefined;
17516
18976
  failedTxHash?: string | undefined;
17517
18977
  failedTxBlockNumber?: number | undefined;
17518
18978
  failedCallData?: {
@@ -18214,6 +19674,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
18214
19674
  amountUsd?: string | undefined;
18215
19675
  amountUsdCurrent?: string | undefined;
18216
19676
  }[] | undefined;
19677
+ platformFee?: {
19678
+ bucket?: string | undefined;
19679
+ ruleId?: string | undefined;
19680
+ relayFeeBps?: number | undefined;
19681
+ integratorFeeBps?: number | undefined;
19682
+ totalFeeBps?: number | undefined;
19683
+ relayFee?: {
19684
+ currency?: {
19685
+ chainId?: number | undefined;
19686
+ address?: string | undefined;
19687
+ symbol?: string | undefined;
19688
+ name?: string | undefined;
19689
+ decimals?: number | undefined;
19690
+ metadata?: {
19691
+ logoURI?: string | undefined;
19692
+ verified?: boolean | undefined;
19693
+ isNative?: boolean | undefined;
19694
+ } | undefined;
19695
+ } | undefined;
19696
+ amount?: string | undefined;
19697
+ amountFormatted?: string | undefined;
19698
+ amountUsd?: string | undefined;
19699
+ minimumAmount?: string | undefined;
19700
+ } | undefined;
19701
+ integratorFee?: {
19702
+ currency?: {
19703
+ chainId?: number | undefined;
19704
+ address?: string | undefined;
19705
+ symbol?: string | undefined;
19706
+ name?: string | undefined;
19707
+ decimals?: number | undefined;
19708
+ metadata?: {
19709
+ logoURI?: string | undefined;
19710
+ verified?: boolean | undefined;
19711
+ isNative?: boolean | undefined;
19712
+ } | undefined;
19713
+ } | undefined;
19714
+ amount?: string | undefined;
19715
+ amountFormatted?: string | undefined;
19716
+ amountUsd?: string | undefined;
19717
+ minimumAmount?: string | undefined;
19718
+ } | undefined;
19719
+ totalPlatformFee?: {
19720
+ currency?: {
19721
+ chainId?: number | undefined;
19722
+ address?: string | undefined;
19723
+ symbol?: string | undefined;
19724
+ name?: string | undefined;
19725
+ decimals?: number | undefined;
19726
+ metadata?: {
19727
+ logoURI?: string | undefined;
19728
+ verified?: boolean | undefined;
19729
+ isNative?: boolean | undefined;
19730
+ } | undefined;
19731
+ } | undefined;
19732
+ amount?: string | undefined;
19733
+ amountFormatted?: string | undefined;
19734
+ amountUsd?: string | undefined;
19735
+ minimumAmount?: string | undefined;
19736
+ } | undefined;
19737
+ integratorFeeRecipient?: string | null | undefined;
19738
+ } | null | undefined;
18217
19739
  metadata?: {
18218
19740
  sender?: string | undefined;
18219
19741
  recipient?: string | undefined;
@@ -18274,6 +19796,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
18274
19796
  minimumAmount?: string | undefined;
18275
19797
  } | undefined;
18276
19798
  rate?: string | undefined;
19799
+ quoteOraclePrice?: {
19800
+ rate?: string | undefined;
19801
+ inputAmount?: string | undefined;
19802
+ outputAmount?: string | undefined;
19803
+ observedAt?: string | undefined;
19804
+ from?: {
19805
+ chainId?: number | undefined;
19806
+ address?: string | undefined;
19807
+ currencyId?: string | undefined;
19808
+ decimals?: number | undefined;
19809
+ } | undefined;
19810
+ to?: {
19811
+ chainId?: number | undefined;
19812
+ address?: string | undefined;
19813
+ currencyId?: string | undefined;
19814
+ decimals?: number | undefined;
19815
+ } | undefined;
19816
+ } | undefined;
18277
19817
  route?: {
18278
19818
  origin?: {
18279
19819
  inputCurrency?: {
@@ -18360,7 +19900,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
18360
19900
  price?: string | undefined;
18361
19901
  usesExternalLiquidity?: boolean | undefined;
18362
19902
  timeEstimate?: number | undefined;
18363
- triggeredByCcm?: boolean | undefined;
18364
19903
  triggeredByFastFill?: boolean | undefined;
18365
19904
  outTxs?: {
18366
19905
  fee?: string | undefined;
@@ -18475,11 +20014,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
18475
20014
  address?: string | undefined;
18476
20015
  depositAddressType?: "strict" | "open" | undefined;
18477
20016
  depositor?: string | null | undefined;
20017
+ depositTxHash?: string | null | undefined;
18478
20018
  } | null | undefined;
18479
20019
  data?: {
18480
20020
  slippageTolerance?: string | undefined;
18481
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
18482
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
20021
+ 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" | "N/A" | undefined;
20022
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
20023
+ supersededByRequestId?: string | null | undefined;
18483
20024
  failedTxHash?: string | undefined;
18484
20025
  failedTxBlockNumber?: number | undefined;
18485
20026
  failedCallData?: {
@@ -19181,6 +20722,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
19181
20722
  amountUsd?: string | undefined;
19182
20723
  amountUsdCurrent?: string | undefined;
19183
20724
  }[] | undefined;
20725
+ platformFee?: {
20726
+ bucket?: string | undefined;
20727
+ ruleId?: string | undefined;
20728
+ relayFeeBps?: number | undefined;
20729
+ integratorFeeBps?: number | undefined;
20730
+ totalFeeBps?: number | undefined;
20731
+ relayFee?: {
20732
+ currency?: {
20733
+ chainId?: number | undefined;
20734
+ address?: string | undefined;
20735
+ symbol?: string | undefined;
20736
+ name?: string | undefined;
20737
+ decimals?: number | undefined;
20738
+ metadata?: {
20739
+ logoURI?: string | undefined;
20740
+ verified?: boolean | undefined;
20741
+ isNative?: boolean | undefined;
20742
+ } | undefined;
20743
+ } | undefined;
20744
+ amount?: string | undefined;
20745
+ amountFormatted?: string | undefined;
20746
+ amountUsd?: string | undefined;
20747
+ minimumAmount?: string | undefined;
20748
+ } | undefined;
20749
+ integratorFee?: {
20750
+ currency?: {
20751
+ chainId?: number | undefined;
20752
+ address?: string | undefined;
20753
+ symbol?: string | undefined;
20754
+ name?: string | undefined;
20755
+ decimals?: number | undefined;
20756
+ metadata?: {
20757
+ logoURI?: string | undefined;
20758
+ verified?: boolean | undefined;
20759
+ isNative?: boolean | undefined;
20760
+ } | undefined;
20761
+ } | undefined;
20762
+ amount?: string | undefined;
20763
+ amountFormatted?: string | undefined;
20764
+ amountUsd?: string | undefined;
20765
+ minimumAmount?: string | undefined;
20766
+ } | undefined;
20767
+ totalPlatformFee?: {
20768
+ currency?: {
20769
+ chainId?: number | undefined;
20770
+ address?: string | undefined;
20771
+ symbol?: string | undefined;
20772
+ name?: string | undefined;
20773
+ decimals?: number | undefined;
20774
+ metadata?: {
20775
+ logoURI?: string | undefined;
20776
+ verified?: boolean | undefined;
20777
+ isNative?: boolean | undefined;
20778
+ } | undefined;
20779
+ } | undefined;
20780
+ amount?: string | undefined;
20781
+ amountFormatted?: string | undefined;
20782
+ amountUsd?: string | undefined;
20783
+ minimumAmount?: string | undefined;
20784
+ } | undefined;
20785
+ integratorFeeRecipient?: string | null | undefined;
20786
+ } | null | undefined;
19184
20787
  metadata?: {
19185
20788
  sender?: string | undefined;
19186
20789
  recipient?: string | undefined;
@@ -19241,6 +20844,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
19241
20844
  minimumAmount?: string | undefined;
19242
20845
  } | undefined;
19243
20846
  rate?: string | undefined;
20847
+ quoteOraclePrice?: {
20848
+ rate?: string | undefined;
20849
+ inputAmount?: string | undefined;
20850
+ outputAmount?: string | undefined;
20851
+ observedAt?: string | undefined;
20852
+ from?: {
20853
+ chainId?: number | undefined;
20854
+ address?: string | undefined;
20855
+ currencyId?: string | undefined;
20856
+ decimals?: number | undefined;
20857
+ } | undefined;
20858
+ to?: {
20859
+ chainId?: number | undefined;
20860
+ address?: string | undefined;
20861
+ currencyId?: string | undefined;
20862
+ decimals?: number | undefined;
20863
+ } | undefined;
20864
+ } | undefined;
19244
20865
  route?: {
19245
20866
  origin?: {
19246
20867
  inputCurrency?: {
@@ -19327,7 +20948,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
19327
20948
  price?: string | undefined;
19328
20949
  usesExternalLiquidity?: boolean | undefined;
19329
20950
  timeEstimate?: number | undefined;
19330
- triggeredByCcm?: boolean | undefined;
19331
20951
  triggeredByFastFill?: boolean | undefined;
19332
20952
  outTxs?: {
19333
20953
  fee?: string | undefined;
@@ -19441,11 +21061,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
19441
21061
  address?: string | undefined;
19442
21062
  depositAddressType?: "strict" | "open" | undefined;
19443
21063
  depositor?: string | null | undefined;
21064
+ depositTxHash?: string | null | undefined;
19444
21065
  } | null | undefined;
19445
21066
  data?: {
19446
21067
  slippageTolerance?: string | undefined;
19447
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
19448
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
21068
+ 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" | "N/A" | undefined;
21069
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
21070
+ supersededByRequestId?: string | null | undefined;
19449
21071
  failedTxHash?: string | undefined;
19450
21072
  failedTxBlockNumber?: number | undefined;
19451
21073
  failedCallData?: {
@@ -20147,6 +21769,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
20147
21769
  amountUsd?: string | undefined;
20148
21770
  amountUsdCurrent?: string | undefined;
20149
21771
  }[] | undefined;
21772
+ platformFee?: {
21773
+ bucket?: string | undefined;
21774
+ ruleId?: string | undefined;
21775
+ relayFeeBps?: number | undefined;
21776
+ integratorFeeBps?: number | undefined;
21777
+ totalFeeBps?: number | undefined;
21778
+ relayFee?: {
21779
+ currency?: {
21780
+ chainId?: number | undefined;
21781
+ address?: string | undefined;
21782
+ symbol?: string | undefined;
21783
+ name?: string | undefined;
21784
+ decimals?: number | undefined;
21785
+ metadata?: {
21786
+ logoURI?: string | undefined;
21787
+ verified?: boolean | undefined;
21788
+ isNative?: boolean | undefined;
21789
+ } | undefined;
21790
+ } | undefined;
21791
+ amount?: string | undefined;
21792
+ amountFormatted?: string | undefined;
21793
+ amountUsd?: string | undefined;
21794
+ minimumAmount?: string | undefined;
21795
+ } | undefined;
21796
+ integratorFee?: {
21797
+ currency?: {
21798
+ chainId?: number | undefined;
21799
+ address?: string | undefined;
21800
+ symbol?: string | undefined;
21801
+ name?: string | undefined;
21802
+ decimals?: number | undefined;
21803
+ metadata?: {
21804
+ logoURI?: string | undefined;
21805
+ verified?: boolean | undefined;
21806
+ isNative?: boolean | undefined;
21807
+ } | undefined;
21808
+ } | undefined;
21809
+ amount?: string | undefined;
21810
+ amountFormatted?: string | undefined;
21811
+ amountUsd?: string | undefined;
21812
+ minimumAmount?: string | undefined;
21813
+ } | undefined;
21814
+ totalPlatformFee?: {
21815
+ currency?: {
21816
+ chainId?: number | undefined;
21817
+ address?: string | undefined;
21818
+ symbol?: string | undefined;
21819
+ name?: string | undefined;
21820
+ decimals?: number | undefined;
21821
+ metadata?: {
21822
+ logoURI?: string | undefined;
21823
+ verified?: boolean | undefined;
21824
+ isNative?: boolean | undefined;
21825
+ } | undefined;
21826
+ } | undefined;
21827
+ amount?: string | undefined;
21828
+ amountFormatted?: string | undefined;
21829
+ amountUsd?: string | undefined;
21830
+ minimumAmount?: string | undefined;
21831
+ } | undefined;
21832
+ integratorFeeRecipient?: string | null | undefined;
21833
+ } | null | undefined;
20150
21834
  metadata?: {
20151
21835
  sender?: string | undefined;
20152
21836
  recipient?: string | undefined;
@@ -20207,6 +21891,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
20207
21891
  minimumAmount?: string | undefined;
20208
21892
  } | undefined;
20209
21893
  rate?: string | undefined;
21894
+ quoteOraclePrice?: {
21895
+ rate?: string | undefined;
21896
+ inputAmount?: string | undefined;
21897
+ outputAmount?: string | undefined;
21898
+ observedAt?: string | undefined;
21899
+ from?: {
21900
+ chainId?: number | undefined;
21901
+ address?: string | undefined;
21902
+ currencyId?: string | undefined;
21903
+ decimals?: number | undefined;
21904
+ } | undefined;
21905
+ to?: {
21906
+ chainId?: number | undefined;
21907
+ address?: string | undefined;
21908
+ currencyId?: string | undefined;
21909
+ decimals?: number | undefined;
21910
+ } | undefined;
21911
+ } | undefined;
20210
21912
  route?: {
20211
21913
  origin?: {
20212
21914
  inputCurrency?: {
@@ -20293,7 +21995,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
20293
21995
  price?: string | undefined;
20294
21996
  usesExternalLiquidity?: boolean | undefined;
20295
21997
  timeEstimate?: number | undefined;
20296
- triggeredByCcm?: boolean | undefined;
20297
21998
  triggeredByFastFill?: boolean | undefined;
20298
21999
  outTxs?: {
20299
22000
  fee?: string | undefined;
@@ -20415,11 +22116,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
20415
22116
  address?: string | undefined;
20416
22117
  depositAddressType?: "strict" | "open" | undefined;
20417
22118
  depositor?: string | null | undefined;
22119
+ depositTxHash?: string | null | undefined;
20418
22120
  } | null | undefined;
20419
22121
  data?: {
20420
22122
  slippageTolerance?: string | undefined;
20421
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
20422
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
22123
+ 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" | "N/A" | undefined;
22124
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
22125
+ supersededByRequestId?: string | null | undefined;
20423
22126
  failedTxHash?: string | undefined;
20424
22127
  failedTxBlockNumber?: number | undefined;
20425
22128
  failedCallData?: {
@@ -21114,13 +22817,75 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
21114
22817
  } | undefined;
21115
22818
  } | undefined;
21116
22819
  } | null | undefined;
21117
- paidAppFees?: {
21118
- recipient?: string | undefined;
21119
- bps?: string | undefined;
21120
- amount?: string | undefined;
21121
- amountUsd?: string | undefined;
21122
- amountUsdCurrent?: string | undefined;
21123
- }[] | undefined;
22820
+ paidAppFees?: {
22821
+ recipient?: string | undefined;
22822
+ bps?: string | undefined;
22823
+ amount?: string | undefined;
22824
+ amountUsd?: string | undefined;
22825
+ amountUsdCurrent?: string | undefined;
22826
+ }[] | undefined;
22827
+ platformFee?: {
22828
+ bucket?: string | undefined;
22829
+ ruleId?: string | undefined;
22830
+ relayFeeBps?: number | undefined;
22831
+ integratorFeeBps?: number | undefined;
22832
+ totalFeeBps?: number | undefined;
22833
+ relayFee?: {
22834
+ currency?: {
22835
+ chainId?: number | undefined;
22836
+ address?: string | undefined;
22837
+ symbol?: string | undefined;
22838
+ name?: string | undefined;
22839
+ decimals?: number | undefined;
22840
+ metadata?: {
22841
+ logoURI?: string | undefined;
22842
+ verified?: boolean | undefined;
22843
+ isNative?: boolean | undefined;
22844
+ } | undefined;
22845
+ } | undefined;
22846
+ amount?: string | undefined;
22847
+ amountFormatted?: string | undefined;
22848
+ amountUsd?: string | undefined;
22849
+ minimumAmount?: string | undefined;
22850
+ } | undefined;
22851
+ integratorFee?: {
22852
+ currency?: {
22853
+ chainId?: number | undefined;
22854
+ address?: string | undefined;
22855
+ symbol?: string | undefined;
22856
+ name?: string | undefined;
22857
+ decimals?: number | undefined;
22858
+ metadata?: {
22859
+ logoURI?: string | undefined;
22860
+ verified?: boolean | undefined;
22861
+ isNative?: boolean | undefined;
22862
+ } | undefined;
22863
+ } | undefined;
22864
+ amount?: string | undefined;
22865
+ amountFormatted?: string | undefined;
22866
+ amountUsd?: string | undefined;
22867
+ minimumAmount?: string | undefined;
22868
+ } | undefined;
22869
+ totalPlatformFee?: {
22870
+ currency?: {
22871
+ chainId?: number | undefined;
22872
+ address?: string | undefined;
22873
+ symbol?: string | undefined;
22874
+ name?: string | undefined;
22875
+ decimals?: number | undefined;
22876
+ metadata?: {
22877
+ logoURI?: string | undefined;
22878
+ verified?: boolean | undefined;
22879
+ isNative?: boolean | undefined;
22880
+ } | undefined;
22881
+ } | undefined;
22882
+ amount?: string | undefined;
22883
+ amountFormatted?: string | undefined;
22884
+ amountUsd?: string | undefined;
22885
+ minimumAmount?: string | undefined;
22886
+ } | undefined;
22887
+ integratorFeeRecipient?: string | null | undefined;
22888
+ } | null | undefined;
21124
22889
  metadata?: {
21125
22890
  sender?: string | undefined;
21126
22891
  recipient?: string | undefined;
@@ -21181,6 +22946,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
21181
22946
  minimumAmount?: string | undefined;
21182
22947
  } | undefined;
21183
22948
  rate?: string | undefined;
22949
+ quoteOraclePrice?: {
22950
+ rate?: string | undefined;
22951
+ inputAmount?: string | undefined;
22952
+ outputAmount?: string | undefined;
22953
+ observedAt?: string | undefined;
22954
+ from?: {
22955
+ chainId?: number | undefined;
22956
+ address?: string | undefined;
22957
+ currencyId?: string | undefined;
22958
+ decimals?: number | undefined;
22959
+ } | undefined;
22960
+ to?: {
22961
+ chainId?: number | undefined;
22962
+ address?: string | undefined;
22963
+ currencyId?: string | undefined;
22964
+ decimals?: number | undefined;
22965
+ } | undefined;
22966
+ } | undefined;
21184
22967
  route?: {
21185
22968
  origin?: {
21186
22969
  inputCurrency?: {
@@ -21267,7 +23050,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
21267
23050
  price?: string | undefined;
21268
23051
  usesExternalLiquidity?: boolean | undefined;
21269
23052
  timeEstimate?: number | undefined;
21270
- triggeredByCcm?: boolean | undefined;
21271
23053
  triggeredByFastFill?: boolean | undefined;
21272
23054
  outTxs?: {
21273
23055
  fee?: string | undefined;
@@ -21381,11 +23163,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
21381
23163
  address?: string | undefined;
21382
23164
  depositAddressType?: "strict" | "open" | undefined;
21383
23165
  depositor?: string | null | undefined;
23166
+ depositTxHash?: string | null | undefined;
21384
23167
  } | null | undefined;
21385
23168
  data?: {
21386
23169
  slippageTolerance?: string | undefined;
21387
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
21388
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
23170
+ 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" | "N/A" | undefined;
23171
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
23172
+ supersededByRequestId?: string | null | undefined;
21389
23173
  failedTxHash?: string | undefined;
21390
23174
  failedTxBlockNumber?: number | undefined;
21391
23175
  failedCallData?: {
@@ -22087,6 +23871,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
22087
23871
  amountUsd?: string | undefined;
22088
23872
  amountUsdCurrent?: string | undefined;
22089
23873
  }[] | undefined;
23874
+ platformFee?: {
23875
+ bucket?: string | undefined;
23876
+ ruleId?: string | undefined;
23877
+ relayFeeBps?: number | undefined;
23878
+ integratorFeeBps?: number | undefined;
23879
+ totalFeeBps?: number | undefined;
23880
+ relayFee?: {
23881
+ currency?: {
23882
+ chainId?: number | undefined;
23883
+ address?: string | undefined;
23884
+ symbol?: string | undefined;
23885
+ name?: string | undefined;
23886
+ decimals?: number | undefined;
23887
+ metadata?: {
23888
+ logoURI?: string | undefined;
23889
+ verified?: boolean | undefined;
23890
+ isNative?: boolean | undefined;
23891
+ } | undefined;
23892
+ } | undefined;
23893
+ amount?: string | undefined;
23894
+ amountFormatted?: string | undefined;
23895
+ amountUsd?: string | undefined;
23896
+ minimumAmount?: string | undefined;
23897
+ } | undefined;
23898
+ integratorFee?: {
23899
+ currency?: {
23900
+ chainId?: number | undefined;
23901
+ address?: string | undefined;
23902
+ symbol?: string | undefined;
23903
+ name?: string | undefined;
23904
+ decimals?: number | undefined;
23905
+ metadata?: {
23906
+ logoURI?: string | undefined;
23907
+ verified?: boolean | undefined;
23908
+ isNative?: boolean | undefined;
23909
+ } | undefined;
23910
+ } | undefined;
23911
+ amount?: string | undefined;
23912
+ amountFormatted?: string | undefined;
23913
+ amountUsd?: string | undefined;
23914
+ minimumAmount?: string | undefined;
23915
+ } | undefined;
23916
+ totalPlatformFee?: {
23917
+ currency?: {
23918
+ chainId?: number | undefined;
23919
+ address?: string | undefined;
23920
+ symbol?: string | undefined;
23921
+ name?: string | undefined;
23922
+ decimals?: number | undefined;
23923
+ metadata?: {
23924
+ logoURI?: string | undefined;
23925
+ verified?: boolean | undefined;
23926
+ isNative?: boolean | undefined;
23927
+ } | undefined;
23928
+ } | undefined;
23929
+ amount?: string | undefined;
23930
+ amountFormatted?: string | undefined;
23931
+ amountUsd?: string | undefined;
23932
+ minimumAmount?: string | undefined;
23933
+ } | undefined;
23934
+ integratorFeeRecipient?: string | null | undefined;
23935
+ } | null | undefined;
22090
23936
  metadata?: {
22091
23937
  sender?: string | undefined;
22092
23938
  recipient?: string | undefined;
@@ -22147,6 +23993,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
22147
23993
  minimumAmount?: string | undefined;
22148
23994
  } | undefined;
22149
23995
  rate?: string | undefined;
23996
+ quoteOraclePrice?: {
23997
+ rate?: string | undefined;
23998
+ inputAmount?: string | undefined;
23999
+ outputAmount?: string | undefined;
24000
+ observedAt?: string | undefined;
24001
+ from?: {
24002
+ chainId?: number | undefined;
24003
+ address?: string | undefined;
24004
+ currencyId?: string | undefined;
24005
+ decimals?: number | undefined;
24006
+ } | undefined;
24007
+ to?: {
24008
+ chainId?: number | undefined;
24009
+ address?: string | undefined;
24010
+ currencyId?: string | undefined;
24011
+ decimals?: number | undefined;
24012
+ } | undefined;
24013
+ } | undefined;
22150
24014
  route?: {
22151
24015
  origin?: {
22152
24016
  inputCurrency?: {
@@ -22233,7 +24097,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
22233
24097
  price?: string | undefined;
22234
24098
  usesExternalLiquidity?: boolean | undefined;
22235
24099
  timeEstimate?: number | undefined;
22236
- triggeredByCcm?: boolean | undefined;
22237
24100
  triggeredByFastFill?: boolean | undefined;
22238
24101
  outTxs?: {
22239
24102
  fee?: string | undefined;
@@ -22364,11 +24227,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
22364
24227
  address?: string | undefined;
22365
24228
  depositAddressType?: "strict" | "open" | undefined;
22366
24229
  depositor?: string | null | undefined;
24230
+ depositTxHash?: string | null | undefined;
22367
24231
  } | null | undefined;
22368
24232
  data?: {
22369
24233
  slippageTolerance?: string | undefined;
22370
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
22371
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
24234
+ 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" | "N/A" | undefined;
24235
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
24236
+ supersededByRequestId?: string | null | undefined;
22372
24237
  failedTxHash?: string | undefined;
22373
24238
  failedTxBlockNumber?: number | undefined;
22374
24239
  failedCallData?: {
@@ -23070,6 +24935,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
23070
24935
  amountUsd?: string | undefined;
23071
24936
  amountUsdCurrent?: string | undefined;
23072
24937
  }[] | undefined;
24938
+ platformFee?: {
24939
+ bucket?: string | undefined;
24940
+ ruleId?: string | undefined;
24941
+ relayFeeBps?: number | undefined;
24942
+ integratorFeeBps?: number | undefined;
24943
+ totalFeeBps?: number | undefined;
24944
+ relayFee?: {
24945
+ currency?: {
24946
+ chainId?: number | undefined;
24947
+ address?: string | undefined;
24948
+ symbol?: string | undefined;
24949
+ name?: string | undefined;
24950
+ decimals?: number | undefined;
24951
+ metadata?: {
24952
+ logoURI?: string | undefined;
24953
+ verified?: boolean | undefined;
24954
+ isNative?: boolean | undefined;
24955
+ } | undefined;
24956
+ } | undefined;
24957
+ amount?: string | undefined;
24958
+ amountFormatted?: string | undefined;
24959
+ amountUsd?: string | undefined;
24960
+ minimumAmount?: string | undefined;
24961
+ } | undefined;
24962
+ integratorFee?: {
24963
+ currency?: {
24964
+ chainId?: number | undefined;
24965
+ address?: string | undefined;
24966
+ symbol?: string | undefined;
24967
+ name?: string | undefined;
24968
+ decimals?: number | undefined;
24969
+ metadata?: {
24970
+ logoURI?: string | undefined;
24971
+ verified?: boolean | undefined;
24972
+ isNative?: boolean | undefined;
24973
+ } | undefined;
24974
+ } | undefined;
24975
+ amount?: string | undefined;
24976
+ amountFormatted?: string | undefined;
24977
+ amountUsd?: string | undefined;
24978
+ minimumAmount?: string | undefined;
24979
+ } | undefined;
24980
+ totalPlatformFee?: {
24981
+ currency?: {
24982
+ chainId?: number | undefined;
24983
+ address?: string | undefined;
24984
+ symbol?: string | undefined;
24985
+ name?: string | undefined;
24986
+ decimals?: number | undefined;
24987
+ metadata?: {
24988
+ logoURI?: string | undefined;
24989
+ verified?: boolean | undefined;
24990
+ isNative?: boolean | undefined;
24991
+ } | undefined;
24992
+ } | undefined;
24993
+ amount?: string | undefined;
24994
+ amountFormatted?: string | undefined;
24995
+ amountUsd?: string | undefined;
24996
+ minimumAmount?: string | undefined;
24997
+ } | undefined;
24998
+ integratorFeeRecipient?: string | null | undefined;
24999
+ } | null | undefined;
23073
25000
  metadata?: {
23074
25001
  sender?: string | undefined;
23075
25002
  recipient?: string | undefined;
@@ -23130,6 +25057,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
23130
25057
  minimumAmount?: string | undefined;
23131
25058
  } | undefined;
23132
25059
  rate?: string | undefined;
25060
+ quoteOraclePrice?: {
25061
+ rate?: string | undefined;
25062
+ inputAmount?: string | undefined;
25063
+ outputAmount?: string | undefined;
25064
+ observedAt?: string | undefined;
25065
+ from?: {
25066
+ chainId?: number | undefined;
25067
+ address?: string | undefined;
25068
+ currencyId?: string | undefined;
25069
+ decimals?: number | undefined;
25070
+ } | undefined;
25071
+ to?: {
25072
+ chainId?: number | undefined;
25073
+ address?: string | undefined;
25074
+ currencyId?: string | undefined;
25075
+ decimals?: number | undefined;
25076
+ } | undefined;
25077
+ } | undefined;
23133
25078
  route?: {
23134
25079
  origin?: {
23135
25080
  inputCurrency?: {
@@ -23216,7 +25161,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
23216
25161
  price?: string | undefined;
23217
25162
  usesExternalLiquidity?: boolean | undefined;
23218
25163
  timeEstimate?: number | undefined;
23219
- triggeredByCcm?: boolean | undefined;
23220
25164
  triggeredByFastFill?: boolean | undefined;
23221
25165
  outTxs?: {
23222
25166
  fee?: string | undefined;
@@ -23331,11 +25275,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
23331
25275
  address?: string | undefined;
23332
25276
  depositAddressType?: "strict" | "open" | undefined;
23333
25277
  depositor?: string | null | undefined;
25278
+ depositTxHash?: string | null | undefined;
23334
25279
  } | null | undefined;
23335
25280
  data?: {
23336
25281
  slippageTolerance?: string | undefined;
23337
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
23338
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
25282
+ 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" | "N/A" | undefined;
25283
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
25284
+ supersededByRequestId?: string | null | undefined;
23339
25285
  failedTxHash?: string | undefined;
23340
25286
  failedTxBlockNumber?: number | undefined;
23341
25287
  failedCallData?: {
@@ -24037,6 +25983,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
24037
25983
  amountUsd?: string | undefined;
24038
25984
  amountUsdCurrent?: string | undefined;
24039
25985
  }[] | undefined;
25986
+ platformFee?: {
25987
+ bucket?: string | undefined;
25988
+ ruleId?: string | undefined;
25989
+ relayFeeBps?: number | undefined;
25990
+ integratorFeeBps?: number | undefined;
25991
+ totalFeeBps?: number | undefined;
25992
+ relayFee?: {
25993
+ currency?: {
25994
+ chainId?: number | undefined;
25995
+ address?: string | undefined;
25996
+ symbol?: string | undefined;
25997
+ name?: string | undefined;
25998
+ decimals?: number | undefined;
25999
+ metadata?: {
26000
+ logoURI?: string | undefined;
26001
+ verified?: boolean | undefined;
26002
+ isNative?: boolean | undefined;
26003
+ } | undefined;
26004
+ } | undefined;
26005
+ amount?: string | undefined;
26006
+ amountFormatted?: string | undefined;
26007
+ amountUsd?: string | undefined;
26008
+ minimumAmount?: string | undefined;
26009
+ } | undefined;
26010
+ integratorFee?: {
26011
+ currency?: {
26012
+ chainId?: number | undefined;
26013
+ address?: string | undefined;
26014
+ symbol?: string | undefined;
26015
+ name?: string | undefined;
26016
+ decimals?: number | undefined;
26017
+ metadata?: {
26018
+ logoURI?: string | undefined;
26019
+ verified?: boolean | undefined;
26020
+ isNative?: boolean | undefined;
26021
+ } | undefined;
26022
+ } | undefined;
26023
+ amount?: string | undefined;
26024
+ amountFormatted?: string | undefined;
26025
+ amountUsd?: string | undefined;
26026
+ minimumAmount?: string | undefined;
26027
+ } | undefined;
26028
+ totalPlatformFee?: {
26029
+ currency?: {
26030
+ chainId?: number | undefined;
26031
+ address?: string | undefined;
26032
+ symbol?: string | undefined;
26033
+ name?: string | undefined;
26034
+ decimals?: number | undefined;
26035
+ metadata?: {
26036
+ logoURI?: string | undefined;
26037
+ verified?: boolean | undefined;
26038
+ isNative?: boolean | undefined;
26039
+ } | undefined;
26040
+ } | undefined;
26041
+ amount?: string | undefined;
26042
+ amountFormatted?: string | undefined;
26043
+ amountUsd?: string | undefined;
26044
+ minimumAmount?: string | undefined;
26045
+ } | undefined;
26046
+ integratorFeeRecipient?: string | null | undefined;
26047
+ } | null | undefined;
24040
26048
  metadata?: {
24041
26049
  sender?: string | undefined;
24042
26050
  recipient?: string | undefined;
@@ -24097,6 +26105,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
24097
26105
  minimumAmount?: string | undefined;
24098
26106
  } | undefined;
24099
26107
  rate?: string | undefined;
26108
+ quoteOraclePrice?: {
26109
+ rate?: string | undefined;
26110
+ inputAmount?: string | undefined;
26111
+ outputAmount?: string | undefined;
26112
+ observedAt?: string | undefined;
26113
+ from?: {
26114
+ chainId?: number | undefined;
26115
+ address?: string | undefined;
26116
+ currencyId?: string | undefined;
26117
+ decimals?: number | undefined;
26118
+ } | undefined;
26119
+ to?: {
26120
+ chainId?: number | undefined;
26121
+ address?: string | undefined;
26122
+ currencyId?: string | undefined;
26123
+ decimals?: number | undefined;
26124
+ } | undefined;
26125
+ } | undefined;
24100
26126
  route?: {
24101
26127
  origin?: {
24102
26128
  inputCurrency?: {
@@ -24183,7 +26209,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
24183
26209
  price?: string | undefined;
24184
26210
  usesExternalLiquidity?: boolean | undefined;
24185
26211
  timeEstimate?: number | undefined;
24186
- triggeredByCcm?: boolean | undefined;
24187
26212
  triggeredByFastFill?: boolean | undefined;
24188
26213
  outTxs?: {
24189
26214
  fee?: string | undefined;
@@ -24297,11 +26322,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
24297
26322
  address?: string | undefined;
24298
26323
  depositAddressType?: "strict" | "open" | undefined;
24299
26324
  depositor?: string | null | undefined;
26325
+ depositTxHash?: string | null | undefined;
24300
26326
  } | null | undefined;
24301
26327
  data?: {
24302
26328
  slippageTolerance?: string | undefined;
24303
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
24304
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
26329
+ 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" | "N/A" | undefined;
26330
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
26331
+ supersededByRequestId?: string | null | undefined;
24305
26332
  failedTxHash?: string | undefined;
24306
26333
  failedTxBlockNumber?: number | undefined;
24307
26334
  failedCallData?: {
@@ -25003,6 +27030,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
25003
27030
  amountUsd?: string | undefined;
25004
27031
  amountUsdCurrent?: string | undefined;
25005
27032
  }[] | undefined;
27033
+ platformFee?: {
27034
+ bucket?: string | undefined;
27035
+ ruleId?: string | undefined;
27036
+ relayFeeBps?: number | undefined;
27037
+ integratorFeeBps?: number | undefined;
27038
+ totalFeeBps?: number | undefined;
27039
+ relayFee?: {
27040
+ currency?: {
27041
+ chainId?: number | undefined;
27042
+ address?: string | undefined;
27043
+ symbol?: string | undefined;
27044
+ name?: string | undefined;
27045
+ decimals?: number | undefined;
27046
+ metadata?: {
27047
+ logoURI?: string | undefined;
27048
+ verified?: boolean | undefined;
27049
+ isNative?: boolean | undefined;
27050
+ } | undefined;
27051
+ } | undefined;
27052
+ amount?: string | undefined;
27053
+ amountFormatted?: string | undefined;
27054
+ amountUsd?: string | undefined;
27055
+ minimumAmount?: string | undefined;
27056
+ } | undefined;
27057
+ integratorFee?: {
27058
+ currency?: {
27059
+ chainId?: number | undefined;
27060
+ address?: string | undefined;
27061
+ symbol?: string | undefined;
27062
+ name?: string | undefined;
27063
+ decimals?: number | undefined;
27064
+ metadata?: {
27065
+ logoURI?: string | undefined;
27066
+ verified?: boolean | undefined;
27067
+ isNative?: boolean | undefined;
27068
+ } | undefined;
27069
+ } | undefined;
27070
+ amount?: string | undefined;
27071
+ amountFormatted?: string | undefined;
27072
+ amountUsd?: string | undefined;
27073
+ minimumAmount?: string | undefined;
27074
+ } | undefined;
27075
+ totalPlatformFee?: {
27076
+ currency?: {
27077
+ chainId?: number | undefined;
27078
+ address?: string | undefined;
27079
+ symbol?: string | undefined;
27080
+ name?: string | undefined;
27081
+ decimals?: number | undefined;
27082
+ metadata?: {
27083
+ logoURI?: string | undefined;
27084
+ verified?: boolean | undefined;
27085
+ isNative?: boolean | undefined;
27086
+ } | undefined;
27087
+ } | undefined;
27088
+ amount?: string | undefined;
27089
+ amountFormatted?: string | undefined;
27090
+ amountUsd?: string | undefined;
27091
+ minimumAmount?: string | undefined;
27092
+ } | undefined;
27093
+ integratorFeeRecipient?: string | null | undefined;
27094
+ } | null | undefined;
25006
27095
  metadata?: {
25007
27096
  sender?: string | undefined;
25008
27097
  recipient?: string | undefined;
@@ -25063,6 +27152,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
25063
27152
  minimumAmount?: string | undefined;
25064
27153
  } | undefined;
25065
27154
  rate?: string | undefined;
27155
+ quoteOraclePrice?: {
27156
+ rate?: string | undefined;
27157
+ inputAmount?: string | undefined;
27158
+ outputAmount?: string | undefined;
27159
+ observedAt?: string | undefined;
27160
+ from?: {
27161
+ chainId?: number | undefined;
27162
+ address?: string | undefined;
27163
+ currencyId?: string | undefined;
27164
+ decimals?: number | undefined;
27165
+ } | undefined;
27166
+ to?: {
27167
+ chainId?: number | undefined;
27168
+ address?: string | undefined;
27169
+ currencyId?: string | undefined;
27170
+ decimals?: number | undefined;
27171
+ } | undefined;
27172
+ } | undefined;
25066
27173
  route?: {
25067
27174
  origin?: {
25068
27175
  inputCurrency?: {
@@ -25149,7 +27256,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
25149
27256
  price?: string | undefined;
25150
27257
  usesExternalLiquidity?: boolean | undefined;
25151
27258
  timeEstimate?: number | undefined;
25152
- triggeredByCcm?: boolean | undefined;
25153
27259
  triggeredByFastFill?: boolean | undefined;
25154
27260
  outTxs?: {
25155
27261
  fee?: string | undefined;
@@ -25272,11 +27378,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
25272
27378
  address?: string | undefined;
25273
27379
  depositAddressType?: "strict" | "open" | undefined;
25274
27380
  depositor?: string | null | undefined;
27381
+ depositTxHash?: string | null | undefined;
25275
27382
  } | null | undefined;
25276
27383
  data?: {
25277
27384
  slippageTolerance?: string | undefined;
25278
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
25279
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
27385
+ 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" | "N/A" | undefined;
27386
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
27387
+ supersededByRequestId?: string | null | undefined;
25280
27388
  failedTxHash?: string | undefined;
25281
27389
  failedTxBlockNumber?: number | undefined;
25282
27390
  failedCallData?: {
@@ -25978,6 +28086,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
25978
28086
  amountUsd?: string | undefined;
25979
28087
  amountUsdCurrent?: string | undefined;
25980
28088
  }[] | undefined;
28089
+ platformFee?: {
28090
+ bucket?: string | undefined;
28091
+ ruleId?: string | undefined;
28092
+ relayFeeBps?: number | undefined;
28093
+ integratorFeeBps?: number | undefined;
28094
+ totalFeeBps?: number | undefined;
28095
+ relayFee?: {
28096
+ currency?: {
28097
+ chainId?: number | undefined;
28098
+ address?: string | undefined;
28099
+ symbol?: string | undefined;
28100
+ name?: string | undefined;
28101
+ decimals?: number | undefined;
28102
+ metadata?: {
28103
+ logoURI?: string | undefined;
28104
+ verified?: boolean | undefined;
28105
+ isNative?: boolean | undefined;
28106
+ } | undefined;
28107
+ } | undefined;
28108
+ amount?: string | undefined;
28109
+ amountFormatted?: string | undefined;
28110
+ amountUsd?: string | undefined;
28111
+ minimumAmount?: string | undefined;
28112
+ } | undefined;
28113
+ integratorFee?: {
28114
+ currency?: {
28115
+ chainId?: number | undefined;
28116
+ address?: string | undefined;
28117
+ symbol?: string | undefined;
28118
+ name?: string | undefined;
28119
+ decimals?: number | undefined;
28120
+ metadata?: {
28121
+ logoURI?: string | undefined;
28122
+ verified?: boolean | undefined;
28123
+ isNative?: boolean | undefined;
28124
+ } | undefined;
28125
+ } | undefined;
28126
+ amount?: string | undefined;
28127
+ amountFormatted?: string | undefined;
28128
+ amountUsd?: string | undefined;
28129
+ minimumAmount?: string | undefined;
28130
+ } | undefined;
28131
+ totalPlatformFee?: {
28132
+ currency?: {
28133
+ chainId?: number | undefined;
28134
+ address?: string | undefined;
28135
+ symbol?: string | undefined;
28136
+ name?: string | undefined;
28137
+ decimals?: number | undefined;
28138
+ metadata?: {
28139
+ logoURI?: string | undefined;
28140
+ verified?: boolean | undefined;
28141
+ isNative?: boolean | undefined;
28142
+ } | undefined;
28143
+ } | undefined;
28144
+ amount?: string | undefined;
28145
+ amountFormatted?: string | undefined;
28146
+ amountUsd?: string | undefined;
28147
+ minimumAmount?: string | undefined;
28148
+ } | undefined;
28149
+ integratorFeeRecipient?: string | null | undefined;
28150
+ } | null | undefined;
25981
28151
  metadata?: {
25982
28152
  sender?: string | undefined;
25983
28153
  recipient?: string | undefined;
@@ -26038,6 +28208,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
26038
28208
  minimumAmount?: string | undefined;
26039
28209
  } | undefined;
26040
28210
  rate?: string | undefined;
28211
+ quoteOraclePrice?: {
28212
+ rate?: string | undefined;
28213
+ inputAmount?: string | undefined;
28214
+ outputAmount?: string | undefined;
28215
+ observedAt?: string | undefined;
28216
+ from?: {
28217
+ chainId?: number | undefined;
28218
+ address?: string | undefined;
28219
+ currencyId?: string | undefined;
28220
+ decimals?: number | undefined;
28221
+ } | undefined;
28222
+ to?: {
28223
+ chainId?: number | undefined;
28224
+ address?: string | undefined;
28225
+ currencyId?: string | undefined;
28226
+ decimals?: number | undefined;
28227
+ } | undefined;
28228
+ } | undefined;
26041
28229
  route?: {
26042
28230
  origin?: {
26043
28231
  inputCurrency?: {
@@ -26124,7 +28312,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
26124
28312
  price?: string | undefined;
26125
28313
  usesExternalLiquidity?: boolean | undefined;
26126
28314
  timeEstimate?: number | undefined;
26127
- triggeredByCcm?: boolean | undefined;
26128
28315
  triggeredByFastFill?: boolean | undefined;
26129
28316
  outTxs?: {
26130
28317
  fee?: string | undefined;
@@ -26238,11 +28425,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
26238
28425
  address?: string | undefined;
26239
28426
  depositAddressType?: "strict" | "open" | undefined;
26240
28427
  depositor?: string | null | undefined;
28428
+ depositTxHash?: string | null | undefined;
26241
28429
  } | null | undefined;
26242
28430
  data?: {
26243
28431
  slippageTolerance?: string | undefined;
26244
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
26245
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
28432
+ 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" | "N/A" | undefined;
28433
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
28434
+ supersededByRequestId?: string | null | undefined;
26246
28435
  failedTxHash?: string | undefined;
26247
28436
  failedTxBlockNumber?: number | undefined;
26248
28437
  failedCallData?: {
@@ -26944,6 +29133,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
26944
29133
  amountUsd?: string | undefined;
26945
29134
  amountUsdCurrent?: string | undefined;
26946
29135
  }[] | undefined;
29136
+ platformFee?: {
29137
+ bucket?: string | undefined;
29138
+ ruleId?: string | undefined;
29139
+ relayFeeBps?: number | undefined;
29140
+ integratorFeeBps?: number | undefined;
29141
+ totalFeeBps?: number | undefined;
29142
+ relayFee?: {
29143
+ currency?: {
29144
+ chainId?: number | undefined;
29145
+ address?: string | undefined;
29146
+ symbol?: string | undefined;
29147
+ name?: string | undefined;
29148
+ decimals?: number | undefined;
29149
+ metadata?: {
29150
+ logoURI?: string | undefined;
29151
+ verified?: boolean | undefined;
29152
+ isNative?: boolean | undefined;
29153
+ } | undefined;
29154
+ } | undefined;
29155
+ amount?: string | undefined;
29156
+ amountFormatted?: string | undefined;
29157
+ amountUsd?: string | undefined;
29158
+ minimumAmount?: string | undefined;
29159
+ } | undefined;
29160
+ integratorFee?: {
29161
+ currency?: {
29162
+ chainId?: number | undefined;
29163
+ address?: string | undefined;
29164
+ symbol?: string | undefined;
29165
+ name?: string | undefined;
29166
+ decimals?: number | undefined;
29167
+ metadata?: {
29168
+ logoURI?: string | undefined;
29169
+ verified?: boolean | undefined;
29170
+ isNative?: boolean | undefined;
29171
+ } | undefined;
29172
+ } | undefined;
29173
+ amount?: string | undefined;
29174
+ amountFormatted?: string | undefined;
29175
+ amountUsd?: string | undefined;
29176
+ minimumAmount?: string | undefined;
29177
+ } | undefined;
29178
+ totalPlatformFee?: {
29179
+ currency?: {
29180
+ chainId?: number | undefined;
29181
+ address?: string | undefined;
29182
+ symbol?: string | undefined;
29183
+ name?: string | undefined;
29184
+ decimals?: number | undefined;
29185
+ metadata?: {
29186
+ logoURI?: string | undefined;
29187
+ verified?: boolean | undefined;
29188
+ isNative?: boolean | undefined;
29189
+ } | undefined;
29190
+ } | undefined;
29191
+ amount?: string | undefined;
29192
+ amountFormatted?: string | undefined;
29193
+ amountUsd?: string | undefined;
29194
+ minimumAmount?: string | undefined;
29195
+ } | undefined;
29196
+ integratorFeeRecipient?: string | null | undefined;
29197
+ } | null | undefined;
26947
29198
  metadata?: {
26948
29199
  sender?: string | undefined;
26949
29200
  recipient?: string | undefined;
@@ -27004,6 +29255,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
27004
29255
  minimumAmount?: string | undefined;
27005
29256
  } | undefined;
27006
29257
  rate?: string | undefined;
29258
+ quoteOraclePrice?: {
29259
+ rate?: string | undefined;
29260
+ inputAmount?: string | undefined;
29261
+ outputAmount?: string | undefined;
29262
+ observedAt?: string | undefined;
29263
+ from?: {
29264
+ chainId?: number | undefined;
29265
+ address?: string | undefined;
29266
+ currencyId?: string | undefined;
29267
+ decimals?: number | undefined;
29268
+ } | undefined;
29269
+ to?: {
29270
+ chainId?: number | undefined;
29271
+ address?: string | undefined;
29272
+ currencyId?: string | undefined;
29273
+ decimals?: number | undefined;
29274
+ } | undefined;
29275
+ } | undefined;
27007
29276
  route?: {
27008
29277
  origin?: {
27009
29278
  inputCurrency?: {
@@ -27090,7 +29359,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
27090
29359
  price?: string | undefined;
27091
29360
  usesExternalLiquidity?: boolean | undefined;
27092
29361
  timeEstimate?: number | undefined;
27093
- triggeredByCcm?: boolean | undefined;
27094
29362
  triggeredByFastFill?: boolean | undefined;
27095
29363
  outTxs?: {
27096
29364
  fee?: string | undefined;
@@ -27220,11 +29488,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
27220
29488
  address?: string | undefined;
27221
29489
  depositAddressType?: "strict" | "open" | undefined;
27222
29490
  depositor?: string | null | undefined;
29491
+ depositTxHash?: string | null | undefined;
27223
29492
  } | null | undefined;
27224
29493
  data?: {
27225
29494
  slippageTolerance?: string | undefined;
27226
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
27227
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
29495
+ 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" | "N/A" | undefined;
29496
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
29497
+ supersededByRequestId?: string | null | undefined;
27228
29498
  failedTxHash?: string | undefined;
27229
29499
  failedTxBlockNumber?: number | undefined;
27230
29500
  failedCallData?: {
@@ -27926,6 +30196,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
27926
30196
  amountUsd?: string | undefined;
27927
30197
  amountUsdCurrent?: string | undefined;
27928
30198
  }[] | undefined;
30199
+ platformFee?: {
30200
+ bucket?: string | undefined;
30201
+ ruleId?: string | undefined;
30202
+ relayFeeBps?: number | undefined;
30203
+ integratorFeeBps?: number | undefined;
30204
+ totalFeeBps?: number | undefined;
30205
+ relayFee?: {
30206
+ currency?: {
30207
+ chainId?: number | undefined;
30208
+ address?: string | undefined;
30209
+ symbol?: string | undefined;
30210
+ name?: string | undefined;
30211
+ decimals?: number | undefined;
30212
+ metadata?: {
30213
+ logoURI?: string | undefined;
30214
+ verified?: boolean | undefined;
30215
+ isNative?: boolean | undefined;
30216
+ } | undefined;
30217
+ } | undefined;
30218
+ amount?: string | undefined;
30219
+ amountFormatted?: string | undefined;
30220
+ amountUsd?: string | undefined;
30221
+ minimumAmount?: string | undefined;
30222
+ } | undefined;
30223
+ integratorFee?: {
30224
+ currency?: {
30225
+ chainId?: number | undefined;
30226
+ address?: string | undefined;
30227
+ symbol?: string | undefined;
30228
+ name?: string | undefined;
30229
+ decimals?: number | undefined;
30230
+ metadata?: {
30231
+ logoURI?: string | undefined;
30232
+ verified?: boolean | undefined;
30233
+ isNative?: boolean | undefined;
30234
+ } | undefined;
30235
+ } | undefined;
30236
+ amount?: string | undefined;
30237
+ amountFormatted?: string | undefined;
30238
+ amountUsd?: string | undefined;
30239
+ minimumAmount?: string | undefined;
30240
+ } | undefined;
30241
+ totalPlatformFee?: {
30242
+ currency?: {
30243
+ chainId?: number | undefined;
30244
+ address?: string | undefined;
30245
+ symbol?: string | undefined;
30246
+ name?: string | undefined;
30247
+ decimals?: number | undefined;
30248
+ metadata?: {
30249
+ logoURI?: string | undefined;
30250
+ verified?: boolean | undefined;
30251
+ isNative?: boolean | undefined;
30252
+ } | undefined;
30253
+ } | undefined;
30254
+ amount?: string | undefined;
30255
+ amountFormatted?: string | undefined;
30256
+ amountUsd?: string | undefined;
30257
+ minimumAmount?: string | undefined;
30258
+ } | undefined;
30259
+ integratorFeeRecipient?: string | null | undefined;
30260
+ } | null | undefined;
27929
30261
  metadata?: {
27930
30262
  sender?: string | undefined;
27931
30263
  recipient?: string | undefined;
@@ -27986,6 +30318,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
27986
30318
  minimumAmount?: string | undefined;
27987
30319
  } | undefined;
27988
30320
  rate?: string | undefined;
30321
+ quoteOraclePrice?: {
30322
+ rate?: string | undefined;
30323
+ inputAmount?: string | undefined;
30324
+ outputAmount?: string | undefined;
30325
+ observedAt?: string | undefined;
30326
+ from?: {
30327
+ chainId?: number | undefined;
30328
+ address?: string | undefined;
30329
+ currencyId?: string | undefined;
30330
+ decimals?: number | undefined;
30331
+ } | undefined;
30332
+ to?: {
30333
+ chainId?: number | undefined;
30334
+ address?: string | undefined;
30335
+ currencyId?: string | undefined;
30336
+ decimals?: number | undefined;
30337
+ } | undefined;
30338
+ } | undefined;
27989
30339
  route?: {
27990
30340
  origin?: {
27991
30341
  inputCurrency?: {
@@ -28072,7 +30422,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
28072
30422
  price?: string | undefined;
28073
30423
  usesExternalLiquidity?: boolean | undefined;
28074
30424
  timeEstimate?: number | undefined;
28075
- triggeredByCcm?: boolean | undefined;
28076
30425
  triggeredByFastFill?: boolean | undefined;
28077
30426
  outTxs?: {
28078
30427
  fee?: string | undefined;
@@ -28187,11 +30536,13 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
28187
30536
  address?: string | undefined;
28188
30537
  depositAddressType?: "strict" | "open" | undefined;
28189
30538
  depositor?: string | null | undefined;
30539
+ depositTxHash?: string | null | undefined;
28190
30540
  } | null | undefined;
28191
30541
  data?: {
28192
30542
  slippageTolerance?: string | undefined;
28193
- failReason?: "UNKNOWN" | "SLIPPAGE" | "AMOUNT_TOO_LOW_TO_REFUND" | "DEPOSIT_ADDRESS_MISMATCH" | "DEPOSIT_CHAIN_MISMATCH" | "INCORRECT_DEPOSIT_CURRENCY" | "DOUBLE_SPEND" | "SOLVER_CAPACITY_EXCEEDED" | "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" | "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" | "N/A" | undefined;
28194
- refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | undefined;
30543
+ 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" | "N/A" | undefined;
30544
+ refundFailReason?: "AMOUNT_TOO_LOW_TO_REFUND" | "NEGATIVE_NEW_AMOUNT_AFTER_FEES" | "SWAP_CURRENCY_NOT_ON_ORIGIN" | "REFUND_RECIPIENT_IS_VASP" | undefined;
30545
+ supersededByRequestId?: string | null | undefined;
28195
30546
  failedTxHash?: string | undefined;
28196
30547
  failedTxBlockNumber?: number | undefined;
28197
30548
  failedCallData?: {
@@ -28893,6 +31244,68 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
28893
31244
  amountUsd?: string | undefined;
28894
31245
  amountUsdCurrent?: string | undefined;
28895
31246
  }[] | undefined;
31247
+ platformFee?: {
31248
+ bucket?: string | undefined;
31249
+ ruleId?: string | undefined;
31250
+ relayFeeBps?: number | undefined;
31251
+ integratorFeeBps?: number | undefined;
31252
+ totalFeeBps?: number | undefined;
31253
+ relayFee?: {
31254
+ currency?: {
31255
+ chainId?: number | undefined;
31256
+ address?: string | undefined;
31257
+ symbol?: string | undefined;
31258
+ name?: string | undefined;
31259
+ decimals?: number | undefined;
31260
+ metadata?: {
31261
+ logoURI?: string | undefined;
31262
+ verified?: boolean | undefined;
31263
+ isNative?: boolean | undefined;
31264
+ } | undefined;
31265
+ } | undefined;
31266
+ amount?: string | undefined;
31267
+ amountFormatted?: string | undefined;
31268
+ amountUsd?: string | undefined;
31269
+ minimumAmount?: string | undefined;
31270
+ } | undefined;
31271
+ integratorFee?: {
31272
+ currency?: {
31273
+ chainId?: number | undefined;
31274
+ address?: string | undefined;
31275
+ symbol?: string | undefined;
31276
+ name?: string | undefined;
31277
+ decimals?: number | undefined;
31278
+ metadata?: {
31279
+ logoURI?: string | undefined;
31280
+ verified?: boolean | undefined;
31281
+ isNative?: boolean | undefined;
31282
+ } | undefined;
31283
+ } | undefined;
31284
+ amount?: string | undefined;
31285
+ amountFormatted?: string | undefined;
31286
+ amountUsd?: string | undefined;
31287
+ minimumAmount?: string | undefined;
31288
+ } | undefined;
31289
+ totalPlatformFee?: {
31290
+ currency?: {
31291
+ chainId?: number | undefined;
31292
+ address?: string | undefined;
31293
+ symbol?: string | undefined;
31294
+ name?: string | undefined;
31295
+ decimals?: number | undefined;
31296
+ metadata?: {
31297
+ logoURI?: string | undefined;
31298
+ verified?: boolean | undefined;
31299
+ isNative?: boolean | undefined;
31300
+ } | undefined;
31301
+ } | undefined;
31302
+ amount?: string | undefined;
31303
+ amountFormatted?: string | undefined;
31304
+ amountUsd?: string | undefined;
31305
+ minimumAmount?: string | undefined;
31306
+ } | undefined;
31307
+ integratorFeeRecipient?: string | null | undefined;
31308
+ } | null | undefined;
28896
31309
  metadata?: {
28897
31310
  sender?: string | undefined;
28898
31311
  recipient?: string | undefined;
@@ -28953,6 +31366,24 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
28953
31366
  minimumAmount?: string | undefined;
28954
31367
  } | undefined;
28955
31368
  rate?: string | undefined;
31369
+ quoteOraclePrice?: {
31370
+ rate?: string | undefined;
31371
+ inputAmount?: string | undefined;
31372
+ outputAmount?: string | undefined;
31373
+ observedAt?: string | undefined;
31374
+ from?: {
31375
+ chainId?: number | undefined;
31376
+ address?: string | undefined;
31377
+ currencyId?: string | undefined;
31378
+ decimals?: number | undefined;
31379
+ } | undefined;
31380
+ to?: {
31381
+ chainId?: number | undefined;
31382
+ address?: string | undefined;
31383
+ currencyId?: string | undefined;
31384
+ decimals?: number | undefined;
31385
+ } | undefined;
31386
+ } | undefined;
28956
31387
  route?: {
28957
31388
  origin?: {
28958
31389
  inputCurrency?: {
@@ -29039,7 +31470,6 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
29039
31470
  price?: string | undefined;
29040
31471
  usesExternalLiquidity?: boolean | undefined;
29041
31472
  timeEstimate?: number | undefined;
29042
- triggeredByCcm?: boolean | undefined;
29043
31473
  triggeredByFastFill?: boolean | undefined;
29044
31474
  outTxs?: {
29045
31475
  fee?: string | undefined;