@relayprotocol/relay-kit-hooks 3.0.13 → 3.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_cjs/tsconfig.build.tsbuildinfo +1 -1
- package/_esm/tsconfig.build.tsbuildinfo +1 -1
- package/_types/src/hooks/useExecutionStatus.d.ts +2 -0
- package/_types/src/hooks/useExecutionStatus.d.ts.map +1 -1
- package/_types/src/hooks/useRequests.d.ts +3288 -18
- package/_types/src/hooks/useRequests.d.ts.map +1 -1
- package/_types/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -16,6 +16,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
16
16
|
depositAddress?: {
|
|
17
17
|
address?: string | undefined;
|
|
18
18
|
depositAddressType?: "strict" | "open" | undefined;
|
|
19
|
+
depositor?: string | null | undefined;
|
|
19
20
|
} | null | undefined;
|
|
20
21
|
data?: {
|
|
21
22
|
slippageTolerance?: string | undefined;
|
|
@@ -679,6 +680,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
679
680
|
} | undefined;
|
|
680
681
|
} | undefined;
|
|
681
682
|
} | undefined;
|
|
683
|
+
expandedPriceImpact?: {
|
|
684
|
+
quoted?: {
|
|
685
|
+
swap?: {
|
|
686
|
+
usd?: string | undefined;
|
|
687
|
+
} | undefined;
|
|
688
|
+
execution?: {
|
|
689
|
+
usd?: string | undefined;
|
|
690
|
+
} | undefined;
|
|
691
|
+
relay?: {
|
|
692
|
+
usd?: string | undefined;
|
|
693
|
+
} | undefined;
|
|
694
|
+
app?: {
|
|
695
|
+
usd?: string | undefined;
|
|
696
|
+
} | undefined;
|
|
697
|
+
sponsored?: {
|
|
698
|
+
usd?: string | undefined;
|
|
699
|
+
} | undefined;
|
|
700
|
+
} | undefined;
|
|
701
|
+
actual?: {
|
|
702
|
+
swap?: {
|
|
703
|
+
usd?: string | undefined;
|
|
704
|
+
} | undefined;
|
|
705
|
+
execution?: {
|
|
706
|
+
usd?: string | undefined;
|
|
707
|
+
} | undefined;
|
|
708
|
+
relay?: {
|
|
709
|
+
usd?: string | undefined;
|
|
710
|
+
} | undefined;
|
|
711
|
+
app?: {
|
|
712
|
+
usd?: string | undefined;
|
|
713
|
+
} | undefined;
|
|
714
|
+
sponsored?: {
|
|
715
|
+
usd?: string | undefined;
|
|
716
|
+
} | undefined;
|
|
717
|
+
} | undefined;
|
|
718
|
+
} | null | undefined;
|
|
682
719
|
paidAppFees?: {
|
|
683
720
|
recipient?: string | undefined;
|
|
684
721
|
bps?: string | undefined;
|
|
@@ -846,6 +883,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
846
883
|
status?: "success" | "failure" | undefined;
|
|
847
884
|
}[] | undefined;
|
|
848
885
|
} | undefined;
|
|
886
|
+
protocol?: {
|
|
887
|
+
orderId?: string | undefined;
|
|
888
|
+
hubType?: "onchain" | undefined;
|
|
889
|
+
isWithdrawable?: boolean | undefined;
|
|
890
|
+
solver?: {
|
|
891
|
+
address?: string | undefined;
|
|
892
|
+
protocolChainId?: string | undefined;
|
|
893
|
+
chainId?: number | undefined;
|
|
894
|
+
} | undefined;
|
|
895
|
+
deposit?: {
|
|
896
|
+
origin?: {
|
|
897
|
+
amount?: string | undefined;
|
|
898
|
+
chainId?: number | undefined;
|
|
899
|
+
currency?: string | undefined;
|
|
900
|
+
depositor?: string | undefined;
|
|
901
|
+
depository?: string | undefined;
|
|
902
|
+
onchainId?: string | undefined;
|
|
903
|
+
transactionId?: string | undefined;
|
|
904
|
+
} | undefined;
|
|
905
|
+
relay?: {
|
|
906
|
+
amount?: string | undefined;
|
|
907
|
+
chainId?: number | undefined;
|
|
908
|
+
currency?: string | undefined;
|
|
909
|
+
hash?: string | undefined;
|
|
910
|
+
operation?: "mint" | undefined;
|
|
911
|
+
} | undefined;
|
|
912
|
+
attestation?: {
|
|
913
|
+
execution?: {
|
|
914
|
+
actions?: string[] | undefined;
|
|
915
|
+
idempotencyKey?: string | undefined;
|
|
916
|
+
} | undefined;
|
|
917
|
+
attestations?: {
|
|
918
|
+
oracleChainId?: string | undefined;
|
|
919
|
+
oracleContract?: string | undefined;
|
|
920
|
+
signerAddress?: string | undefined;
|
|
921
|
+
signature?: string | undefined;
|
|
922
|
+
}[] | undefined;
|
|
923
|
+
} | undefined;
|
|
924
|
+
} | undefined;
|
|
925
|
+
settlement?: {
|
|
926
|
+
destination?: {
|
|
927
|
+
fills?: {
|
|
928
|
+
chainId?: number | undefined;
|
|
929
|
+
transactionId?: string | undefined;
|
|
930
|
+
}[] | undefined;
|
|
931
|
+
refunds?: {
|
|
932
|
+
chainId?: number | undefined;
|
|
933
|
+
transactionId?: string | undefined;
|
|
934
|
+
}[] | undefined;
|
|
935
|
+
} | undefined;
|
|
936
|
+
relay?: {
|
|
937
|
+
amount?: string | undefined;
|
|
938
|
+
chainId?: number | undefined;
|
|
939
|
+
currency?: string | undefined;
|
|
940
|
+
hash?: string | undefined;
|
|
941
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
942
|
+
solver?: string | undefined;
|
|
943
|
+
} | undefined;
|
|
944
|
+
attestation?: {
|
|
945
|
+
execution?: {
|
|
946
|
+
actions?: string[] | undefined;
|
|
947
|
+
idempotencyKey?: string | undefined;
|
|
948
|
+
} | undefined;
|
|
949
|
+
attestations?: {
|
|
950
|
+
oracleChainId?: string | undefined;
|
|
951
|
+
oracleContract?: string | undefined;
|
|
952
|
+
signerAddress?: string | undefined;
|
|
953
|
+
signature?: string | undefined;
|
|
954
|
+
}[] | undefined;
|
|
955
|
+
} | undefined;
|
|
956
|
+
} | undefined;
|
|
957
|
+
} | undefined;
|
|
849
958
|
orderData?: unknown;
|
|
850
959
|
referrer?: string | undefined;
|
|
851
960
|
moonpayId?: string | undefined;
|
|
@@ -870,6 +979,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
870
979
|
depositAddress?: {
|
|
871
980
|
address?: string | undefined;
|
|
872
981
|
depositAddressType?: "strict" | "open" | undefined;
|
|
982
|
+
depositor?: string | null | undefined;
|
|
873
983
|
} | null | undefined;
|
|
874
984
|
data?: {
|
|
875
985
|
slippageTolerance?: string | undefined;
|
|
@@ -1533,6 +1643,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
1533
1643
|
} | undefined;
|
|
1534
1644
|
} | undefined;
|
|
1535
1645
|
} | undefined;
|
|
1646
|
+
expandedPriceImpact?: {
|
|
1647
|
+
quoted?: {
|
|
1648
|
+
swap?: {
|
|
1649
|
+
usd?: string | undefined;
|
|
1650
|
+
} | undefined;
|
|
1651
|
+
execution?: {
|
|
1652
|
+
usd?: string | undefined;
|
|
1653
|
+
} | undefined;
|
|
1654
|
+
relay?: {
|
|
1655
|
+
usd?: string | undefined;
|
|
1656
|
+
} | undefined;
|
|
1657
|
+
app?: {
|
|
1658
|
+
usd?: string | undefined;
|
|
1659
|
+
} | undefined;
|
|
1660
|
+
sponsored?: {
|
|
1661
|
+
usd?: string | undefined;
|
|
1662
|
+
} | undefined;
|
|
1663
|
+
} | undefined;
|
|
1664
|
+
actual?: {
|
|
1665
|
+
swap?: {
|
|
1666
|
+
usd?: string | undefined;
|
|
1667
|
+
} | undefined;
|
|
1668
|
+
execution?: {
|
|
1669
|
+
usd?: string | undefined;
|
|
1670
|
+
} | undefined;
|
|
1671
|
+
relay?: {
|
|
1672
|
+
usd?: string | undefined;
|
|
1673
|
+
} | undefined;
|
|
1674
|
+
app?: {
|
|
1675
|
+
usd?: string | undefined;
|
|
1676
|
+
} | undefined;
|
|
1677
|
+
sponsored?: {
|
|
1678
|
+
usd?: string | undefined;
|
|
1679
|
+
} | undefined;
|
|
1680
|
+
} | undefined;
|
|
1681
|
+
} | null | undefined;
|
|
1536
1682
|
paidAppFees?: {
|
|
1537
1683
|
recipient?: string | undefined;
|
|
1538
1684
|
bps?: string | undefined;
|
|
@@ -1700,6 +1846,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
1700
1846
|
status?: "success" | "failure" | undefined;
|
|
1701
1847
|
}[] | undefined;
|
|
1702
1848
|
} | undefined;
|
|
1849
|
+
protocol?: {
|
|
1850
|
+
orderId?: string | undefined;
|
|
1851
|
+
hubType?: "onchain" | undefined;
|
|
1852
|
+
isWithdrawable?: boolean | undefined;
|
|
1853
|
+
solver?: {
|
|
1854
|
+
address?: string | undefined;
|
|
1855
|
+
protocolChainId?: string | undefined;
|
|
1856
|
+
chainId?: number | undefined;
|
|
1857
|
+
} | undefined;
|
|
1858
|
+
deposit?: {
|
|
1859
|
+
origin?: {
|
|
1860
|
+
amount?: string | undefined;
|
|
1861
|
+
chainId?: number | undefined;
|
|
1862
|
+
currency?: string | undefined;
|
|
1863
|
+
depositor?: string | undefined;
|
|
1864
|
+
depository?: string | undefined;
|
|
1865
|
+
onchainId?: string | undefined;
|
|
1866
|
+
transactionId?: string | undefined;
|
|
1867
|
+
} | undefined;
|
|
1868
|
+
relay?: {
|
|
1869
|
+
amount?: string | undefined;
|
|
1870
|
+
chainId?: number | undefined;
|
|
1871
|
+
currency?: string | undefined;
|
|
1872
|
+
hash?: string | undefined;
|
|
1873
|
+
operation?: "mint" | undefined;
|
|
1874
|
+
} | undefined;
|
|
1875
|
+
attestation?: {
|
|
1876
|
+
execution?: {
|
|
1877
|
+
actions?: string[] | undefined;
|
|
1878
|
+
idempotencyKey?: string | undefined;
|
|
1879
|
+
} | undefined;
|
|
1880
|
+
attestations?: {
|
|
1881
|
+
oracleChainId?: string | undefined;
|
|
1882
|
+
oracleContract?: string | undefined;
|
|
1883
|
+
signerAddress?: string | undefined;
|
|
1884
|
+
signature?: string | undefined;
|
|
1885
|
+
}[] | undefined;
|
|
1886
|
+
} | undefined;
|
|
1887
|
+
} | undefined;
|
|
1888
|
+
settlement?: {
|
|
1889
|
+
destination?: {
|
|
1890
|
+
fills?: {
|
|
1891
|
+
chainId?: number | undefined;
|
|
1892
|
+
transactionId?: string | undefined;
|
|
1893
|
+
}[] | undefined;
|
|
1894
|
+
refunds?: {
|
|
1895
|
+
chainId?: number | undefined;
|
|
1896
|
+
transactionId?: string | undefined;
|
|
1897
|
+
}[] | undefined;
|
|
1898
|
+
} | undefined;
|
|
1899
|
+
relay?: {
|
|
1900
|
+
amount?: string | undefined;
|
|
1901
|
+
chainId?: number | undefined;
|
|
1902
|
+
currency?: string | undefined;
|
|
1903
|
+
hash?: string | undefined;
|
|
1904
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
1905
|
+
solver?: string | undefined;
|
|
1906
|
+
} | undefined;
|
|
1907
|
+
attestation?: {
|
|
1908
|
+
execution?: {
|
|
1909
|
+
actions?: string[] | undefined;
|
|
1910
|
+
idempotencyKey?: string | undefined;
|
|
1911
|
+
} | undefined;
|
|
1912
|
+
attestations?: {
|
|
1913
|
+
oracleChainId?: string | undefined;
|
|
1914
|
+
oracleContract?: string | undefined;
|
|
1915
|
+
signerAddress?: string | undefined;
|
|
1916
|
+
signature?: string | undefined;
|
|
1917
|
+
}[] | undefined;
|
|
1918
|
+
} | undefined;
|
|
1919
|
+
} | undefined;
|
|
1920
|
+
} | undefined;
|
|
1703
1921
|
orderData?: unknown;
|
|
1704
1922
|
referrer?: string | undefined;
|
|
1705
1923
|
moonpayId?: string | undefined;
|
|
@@ -1717,6 +1935,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
1717
1935
|
depositAddress?: {
|
|
1718
1936
|
address?: string | undefined;
|
|
1719
1937
|
depositAddressType?: "strict" | "open" | undefined;
|
|
1938
|
+
depositor?: string | null | undefined;
|
|
1720
1939
|
} | null | undefined;
|
|
1721
1940
|
data?: {
|
|
1722
1941
|
slippageTolerance?: string | undefined;
|
|
@@ -2380,6 +2599,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
2380
2599
|
} | undefined;
|
|
2381
2600
|
} | undefined;
|
|
2382
2601
|
} | undefined;
|
|
2602
|
+
expandedPriceImpact?: {
|
|
2603
|
+
quoted?: {
|
|
2604
|
+
swap?: {
|
|
2605
|
+
usd?: string | undefined;
|
|
2606
|
+
} | undefined;
|
|
2607
|
+
execution?: {
|
|
2608
|
+
usd?: string | undefined;
|
|
2609
|
+
} | undefined;
|
|
2610
|
+
relay?: {
|
|
2611
|
+
usd?: string | undefined;
|
|
2612
|
+
} | undefined;
|
|
2613
|
+
app?: {
|
|
2614
|
+
usd?: string | undefined;
|
|
2615
|
+
} | undefined;
|
|
2616
|
+
sponsored?: {
|
|
2617
|
+
usd?: string | undefined;
|
|
2618
|
+
} | undefined;
|
|
2619
|
+
} | undefined;
|
|
2620
|
+
actual?: {
|
|
2621
|
+
swap?: {
|
|
2622
|
+
usd?: string | undefined;
|
|
2623
|
+
} | undefined;
|
|
2624
|
+
execution?: {
|
|
2625
|
+
usd?: string | undefined;
|
|
2626
|
+
} | undefined;
|
|
2627
|
+
relay?: {
|
|
2628
|
+
usd?: string | undefined;
|
|
2629
|
+
} | undefined;
|
|
2630
|
+
app?: {
|
|
2631
|
+
usd?: string | undefined;
|
|
2632
|
+
} | undefined;
|
|
2633
|
+
sponsored?: {
|
|
2634
|
+
usd?: string | undefined;
|
|
2635
|
+
} | undefined;
|
|
2636
|
+
} | undefined;
|
|
2637
|
+
} | null | undefined;
|
|
2383
2638
|
paidAppFees?: {
|
|
2384
2639
|
recipient?: string | undefined;
|
|
2385
2640
|
bps?: string | undefined;
|
|
@@ -2547,6 +2802,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
2547
2802
|
status?: "success" | "failure" | undefined;
|
|
2548
2803
|
}[] | undefined;
|
|
2549
2804
|
} | undefined;
|
|
2805
|
+
protocol?: {
|
|
2806
|
+
orderId?: string | undefined;
|
|
2807
|
+
hubType?: "onchain" | undefined;
|
|
2808
|
+
isWithdrawable?: boolean | undefined;
|
|
2809
|
+
solver?: {
|
|
2810
|
+
address?: string | undefined;
|
|
2811
|
+
protocolChainId?: string | undefined;
|
|
2812
|
+
chainId?: number | undefined;
|
|
2813
|
+
} | undefined;
|
|
2814
|
+
deposit?: {
|
|
2815
|
+
origin?: {
|
|
2816
|
+
amount?: string | undefined;
|
|
2817
|
+
chainId?: number | undefined;
|
|
2818
|
+
currency?: string | undefined;
|
|
2819
|
+
depositor?: string | undefined;
|
|
2820
|
+
depository?: string | undefined;
|
|
2821
|
+
onchainId?: string | undefined;
|
|
2822
|
+
transactionId?: string | undefined;
|
|
2823
|
+
} | undefined;
|
|
2824
|
+
relay?: {
|
|
2825
|
+
amount?: string | undefined;
|
|
2826
|
+
chainId?: number | undefined;
|
|
2827
|
+
currency?: string | undefined;
|
|
2828
|
+
hash?: string | undefined;
|
|
2829
|
+
operation?: "mint" | undefined;
|
|
2830
|
+
} | undefined;
|
|
2831
|
+
attestation?: {
|
|
2832
|
+
execution?: {
|
|
2833
|
+
actions?: string[] | undefined;
|
|
2834
|
+
idempotencyKey?: string | undefined;
|
|
2835
|
+
} | undefined;
|
|
2836
|
+
attestations?: {
|
|
2837
|
+
oracleChainId?: string | undefined;
|
|
2838
|
+
oracleContract?: string | undefined;
|
|
2839
|
+
signerAddress?: string | undefined;
|
|
2840
|
+
signature?: string | undefined;
|
|
2841
|
+
}[] | undefined;
|
|
2842
|
+
} | undefined;
|
|
2843
|
+
} | undefined;
|
|
2844
|
+
settlement?: {
|
|
2845
|
+
destination?: {
|
|
2846
|
+
fills?: {
|
|
2847
|
+
chainId?: number | undefined;
|
|
2848
|
+
transactionId?: string | undefined;
|
|
2849
|
+
}[] | undefined;
|
|
2850
|
+
refunds?: {
|
|
2851
|
+
chainId?: number | undefined;
|
|
2852
|
+
transactionId?: string | undefined;
|
|
2853
|
+
}[] | undefined;
|
|
2854
|
+
} | undefined;
|
|
2855
|
+
relay?: {
|
|
2856
|
+
amount?: string | undefined;
|
|
2857
|
+
chainId?: number | undefined;
|
|
2858
|
+
currency?: string | undefined;
|
|
2859
|
+
hash?: string | undefined;
|
|
2860
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
2861
|
+
solver?: string | undefined;
|
|
2862
|
+
} | undefined;
|
|
2863
|
+
attestation?: {
|
|
2864
|
+
execution?: {
|
|
2865
|
+
actions?: string[] | undefined;
|
|
2866
|
+
idempotencyKey?: string | undefined;
|
|
2867
|
+
} | undefined;
|
|
2868
|
+
attestations?: {
|
|
2869
|
+
oracleChainId?: string | undefined;
|
|
2870
|
+
oracleContract?: string | undefined;
|
|
2871
|
+
signerAddress?: string | undefined;
|
|
2872
|
+
signature?: string | undefined;
|
|
2873
|
+
}[] | undefined;
|
|
2874
|
+
} | undefined;
|
|
2875
|
+
} | undefined;
|
|
2876
|
+
} | undefined;
|
|
2550
2877
|
orderData?: unknown;
|
|
2551
2878
|
referrer?: string | undefined;
|
|
2552
2879
|
moonpayId?: string | undefined;
|
|
@@ -2582,6 +2909,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
2582
2909
|
depositAddress?: {
|
|
2583
2910
|
address?: string | undefined;
|
|
2584
2911
|
depositAddressType?: "strict" | "open" | undefined;
|
|
2912
|
+
depositor?: string | null | undefined;
|
|
2585
2913
|
} | null | undefined;
|
|
2586
2914
|
data?: {
|
|
2587
2915
|
slippageTolerance?: string | undefined;
|
|
@@ -3245,6 +3573,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
3245
3573
|
} | undefined;
|
|
3246
3574
|
} | undefined;
|
|
3247
3575
|
} | undefined;
|
|
3576
|
+
expandedPriceImpact?: {
|
|
3577
|
+
quoted?: {
|
|
3578
|
+
swap?: {
|
|
3579
|
+
usd?: string | undefined;
|
|
3580
|
+
} | undefined;
|
|
3581
|
+
execution?: {
|
|
3582
|
+
usd?: string | undefined;
|
|
3583
|
+
} | undefined;
|
|
3584
|
+
relay?: {
|
|
3585
|
+
usd?: string | undefined;
|
|
3586
|
+
} | undefined;
|
|
3587
|
+
app?: {
|
|
3588
|
+
usd?: string | undefined;
|
|
3589
|
+
} | undefined;
|
|
3590
|
+
sponsored?: {
|
|
3591
|
+
usd?: string | undefined;
|
|
3592
|
+
} | undefined;
|
|
3593
|
+
} | undefined;
|
|
3594
|
+
actual?: {
|
|
3595
|
+
swap?: {
|
|
3596
|
+
usd?: string | undefined;
|
|
3597
|
+
} | undefined;
|
|
3598
|
+
execution?: {
|
|
3599
|
+
usd?: string | undefined;
|
|
3600
|
+
} | undefined;
|
|
3601
|
+
relay?: {
|
|
3602
|
+
usd?: string | undefined;
|
|
3603
|
+
} | undefined;
|
|
3604
|
+
app?: {
|
|
3605
|
+
usd?: string | undefined;
|
|
3606
|
+
} | undefined;
|
|
3607
|
+
sponsored?: {
|
|
3608
|
+
usd?: string | undefined;
|
|
3609
|
+
} | undefined;
|
|
3610
|
+
} | undefined;
|
|
3611
|
+
} | null | undefined;
|
|
3248
3612
|
paidAppFees?: {
|
|
3249
3613
|
recipient?: string | undefined;
|
|
3250
3614
|
bps?: string | undefined;
|
|
@@ -3412,6 +3776,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
3412
3776
|
status?: "success" | "failure" | undefined;
|
|
3413
3777
|
}[] | undefined;
|
|
3414
3778
|
} | undefined;
|
|
3779
|
+
protocol?: {
|
|
3780
|
+
orderId?: string | undefined;
|
|
3781
|
+
hubType?: "onchain" | undefined;
|
|
3782
|
+
isWithdrawable?: boolean | undefined;
|
|
3783
|
+
solver?: {
|
|
3784
|
+
address?: string | undefined;
|
|
3785
|
+
protocolChainId?: string | undefined;
|
|
3786
|
+
chainId?: number | undefined;
|
|
3787
|
+
} | undefined;
|
|
3788
|
+
deposit?: {
|
|
3789
|
+
origin?: {
|
|
3790
|
+
amount?: string | undefined;
|
|
3791
|
+
chainId?: number | undefined;
|
|
3792
|
+
currency?: string | undefined;
|
|
3793
|
+
depositor?: string | undefined;
|
|
3794
|
+
depository?: string | undefined;
|
|
3795
|
+
onchainId?: string | undefined;
|
|
3796
|
+
transactionId?: string | undefined;
|
|
3797
|
+
} | undefined;
|
|
3798
|
+
relay?: {
|
|
3799
|
+
amount?: string | undefined;
|
|
3800
|
+
chainId?: number | undefined;
|
|
3801
|
+
currency?: string | undefined;
|
|
3802
|
+
hash?: string | undefined;
|
|
3803
|
+
operation?: "mint" | undefined;
|
|
3804
|
+
} | undefined;
|
|
3805
|
+
attestation?: {
|
|
3806
|
+
execution?: {
|
|
3807
|
+
actions?: string[] | undefined;
|
|
3808
|
+
idempotencyKey?: string | undefined;
|
|
3809
|
+
} | undefined;
|
|
3810
|
+
attestations?: {
|
|
3811
|
+
oracleChainId?: string | undefined;
|
|
3812
|
+
oracleContract?: string | undefined;
|
|
3813
|
+
signerAddress?: string | undefined;
|
|
3814
|
+
signature?: string | undefined;
|
|
3815
|
+
}[] | undefined;
|
|
3816
|
+
} | undefined;
|
|
3817
|
+
} | undefined;
|
|
3818
|
+
settlement?: {
|
|
3819
|
+
destination?: {
|
|
3820
|
+
fills?: {
|
|
3821
|
+
chainId?: number | undefined;
|
|
3822
|
+
transactionId?: string | undefined;
|
|
3823
|
+
}[] | undefined;
|
|
3824
|
+
refunds?: {
|
|
3825
|
+
chainId?: number | undefined;
|
|
3826
|
+
transactionId?: string | undefined;
|
|
3827
|
+
}[] | undefined;
|
|
3828
|
+
} | undefined;
|
|
3829
|
+
relay?: {
|
|
3830
|
+
amount?: string | undefined;
|
|
3831
|
+
chainId?: number | undefined;
|
|
3832
|
+
currency?: string | undefined;
|
|
3833
|
+
hash?: string | undefined;
|
|
3834
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
3835
|
+
solver?: string | undefined;
|
|
3836
|
+
} | undefined;
|
|
3837
|
+
attestation?: {
|
|
3838
|
+
execution?: {
|
|
3839
|
+
actions?: string[] | undefined;
|
|
3840
|
+
idempotencyKey?: string | undefined;
|
|
3841
|
+
} | undefined;
|
|
3842
|
+
attestations?: {
|
|
3843
|
+
oracleChainId?: string | undefined;
|
|
3844
|
+
oracleContract?: string | undefined;
|
|
3845
|
+
signerAddress?: string | undefined;
|
|
3846
|
+
signature?: string | undefined;
|
|
3847
|
+
}[] | undefined;
|
|
3848
|
+
} | undefined;
|
|
3849
|
+
} | undefined;
|
|
3850
|
+
} | undefined;
|
|
3415
3851
|
orderData?: unknown;
|
|
3416
3852
|
referrer?: string | undefined;
|
|
3417
3853
|
moonpayId?: string | undefined;
|
|
@@ -3430,6 +3866,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
3430
3866
|
depositAddress?: {
|
|
3431
3867
|
address?: string | undefined;
|
|
3432
3868
|
depositAddressType?: "strict" | "open" | undefined;
|
|
3869
|
+
depositor?: string | null | undefined;
|
|
3433
3870
|
} | null | undefined;
|
|
3434
3871
|
data?: {
|
|
3435
3872
|
slippageTolerance?: string | undefined;
|
|
@@ -4093,6 +4530,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
4093
4530
|
} | undefined;
|
|
4094
4531
|
} | undefined;
|
|
4095
4532
|
} | undefined;
|
|
4533
|
+
expandedPriceImpact?: {
|
|
4534
|
+
quoted?: {
|
|
4535
|
+
swap?: {
|
|
4536
|
+
usd?: string | undefined;
|
|
4537
|
+
} | undefined;
|
|
4538
|
+
execution?: {
|
|
4539
|
+
usd?: string | undefined;
|
|
4540
|
+
} | undefined;
|
|
4541
|
+
relay?: {
|
|
4542
|
+
usd?: string | undefined;
|
|
4543
|
+
} | undefined;
|
|
4544
|
+
app?: {
|
|
4545
|
+
usd?: string | undefined;
|
|
4546
|
+
} | undefined;
|
|
4547
|
+
sponsored?: {
|
|
4548
|
+
usd?: string | undefined;
|
|
4549
|
+
} | undefined;
|
|
4550
|
+
} | undefined;
|
|
4551
|
+
actual?: {
|
|
4552
|
+
swap?: {
|
|
4553
|
+
usd?: string | undefined;
|
|
4554
|
+
} | undefined;
|
|
4555
|
+
execution?: {
|
|
4556
|
+
usd?: string | undefined;
|
|
4557
|
+
} | undefined;
|
|
4558
|
+
relay?: {
|
|
4559
|
+
usd?: string | undefined;
|
|
4560
|
+
} | undefined;
|
|
4561
|
+
app?: {
|
|
4562
|
+
usd?: string | undefined;
|
|
4563
|
+
} | undefined;
|
|
4564
|
+
sponsored?: {
|
|
4565
|
+
usd?: string | undefined;
|
|
4566
|
+
} | undefined;
|
|
4567
|
+
} | undefined;
|
|
4568
|
+
} | null | undefined;
|
|
4096
4569
|
paidAppFees?: {
|
|
4097
4570
|
recipient?: string | undefined;
|
|
4098
4571
|
bps?: string | undefined;
|
|
@@ -4260,6 +4733,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
4260
4733
|
status?: "success" | "failure" | undefined;
|
|
4261
4734
|
}[] | undefined;
|
|
4262
4735
|
} | undefined;
|
|
4736
|
+
protocol?: {
|
|
4737
|
+
orderId?: string | undefined;
|
|
4738
|
+
hubType?: "onchain" | undefined;
|
|
4739
|
+
isWithdrawable?: boolean | undefined;
|
|
4740
|
+
solver?: {
|
|
4741
|
+
address?: string | undefined;
|
|
4742
|
+
protocolChainId?: string | undefined;
|
|
4743
|
+
chainId?: number | undefined;
|
|
4744
|
+
} | undefined;
|
|
4745
|
+
deposit?: {
|
|
4746
|
+
origin?: {
|
|
4747
|
+
amount?: string | undefined;
|
|
4748
|
+
chainId?: number | undefined;
|
|
4749
|
+
currency?: string | undefined;
|
|
4750
|
+
depositor?: string | undefined;
|
|
4751
|
+
depository?: string | undefined;
|
|
4752
|
+
onchainId?: string | undefined;
|
|
4753
|
+
transactionId?: string | undefined;
|
|
4754
|
+
} | undefined;
|
|
4755
|
+
relay?: {
|
|
4756
|
+
amount?: string | undefined;
|
|
4757
|
+
chainId?: number | undefined;
|
|
4758
|
+
currency?: string | undefined;
|
|
4759
|
+
hash?: string | undefined;
|
|
4760
|
+
operation?: "mint" | undefined;
|
|
4761
|
+
} | undefined;
|
|
4762
|
+
attestation?: {
|
|
4763
|
+
execution?: {
|
|
4764
|
+
actions?: string[] | undefined;
|
|
4765
|
+
idempotencyKey?: string | undefined;
|
|
4766
|
+
} | undefined;
|
|
4767
|
+
attestations?: {
|
|
4768
|
+
oracleChainId?: string | undefined;
|
|
4769
|
+
oracleContract?: string | undefined;
|
|
4770
|
+
signerAddress?: string | undefined;
|
|
4771
|
+
signature?: string | undefined;
|
|
4772
|
+
}[] | undefined;
|
|
4773
|
+
} | undefined;
|
|
4774
|
+
} | undefined;
|
|
4775
|
+
settlement?: {
|
|
4776
|
+
destination?: {
|
|
4777
|
+
fills?: {
|
|
4778
|
+
chainId?: number | undefined;
|
|
4779
|
+
transactionId?: string | undefined;
|
|
4780
|
+
}[] | undefined;
|
|
4781
|
+
refunds?: {
|
|
4782
|
+
chainId?: number | undefined;
|
|
4783
|
+
transactionId?: string | undefined;
|
|
4784
|
+
}[] | undefined;
|
|
4785
|
+
} | undefined;
|
|
4786
|
+
relay?: {
|
|
4787
|
+
amount?: string | undefined;
|
|
4788
|
+
chainId?: number | undefined;
|
|
4789
|
+
currency?: string | undefined;
|
|
4790
|
+
hash?: string | undefined;
|
|
4791
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
4792
|
+
solver?: string | undefined;
|
|
4793
|
+
} | undefined;
|
|
4794
|
+
attestation?: {
|
|
4795
|
+
execution?: {
|
|
4796
|
+
actions?: string[] | undefined;
|
|
4797
|
+
idempotencyKey?: string | undefined;
|
|
4798
|
+
} | undefined;
|
|
4799
|
+
attestations?: {
|
|
4800
|
+
oracleChainId?: string | undefined;
|
|
4801
|
+
oracleContract?: string | undefined;
|
|
4802
|
+
signerAddress?: string | undefined;
|
|
4803
|
+
signature?: string | undefined;
|
|
4804
|
+
}[] | undefined;
|
|
4805
|
+
} | undefined;
|
|
4806
|
+
} | undefined;
|
|
4807
|
+
} | undefined;
|
|
4263
4808
|
orderData?: unknown;
|
|
4264
4809
|
referrer?: string | undefined;
|
|
4265
4810
|
moonpayId?: string | undefined;
|
|
@@ -4277,6 +4822,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
4277
4822
|
depositAddress?: {
|
|
4278
4823
|
address?: string | undefined;
|
|
4279
4824
|
depositAddressType?: "strict" | "open" | undefined;
|
|
4825
|
+
depositor?: string | null | undefined;
|
|
4280
4826
|
} | null | undefined;
|
|
4281
4827
|
data?: {
|
|
4282
4828
|
slippageTolerance?: string | undefined;
|
|
@@ -4940,6 +5486,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
4940
5486
|
} | undefined;
|
|
4941
5487
|
} | undefined;
|
|
4942
5488
|
} | undefined;
|
|
5489
|
+
expandedPriceImpact?: {
|
|
5490
|
+
quoted?: {
|
|
5491
|
+
swap?: {
|
|
5492
|
+
usd?: string | undefined;
|
|
5493
|
+
} | undefined;
|
|
5494
|
+
execution?: {
|
|
5495
|
+
usd?: string | undefined;
|
|
5496
|
+
} | undefined;
|
|
5497
|
+
relay?: {
|
|
5498
|
+
usd?: string | undefined;
|
|
5499
|
+
} | undefined;
|
|
5500
|
+
app?: {
|
|
5501
|
+
usd?: string | undefined;
|
|
5502
|
+
} | undefined;
|
|
5503
|
+
sponsored?: {
|
|
5504
|
+
usd?: string | undefined;
|
|
5505
|
+
} | undefined;
|
|
5506
|
+
} | undefined;
|
|
5507
|
+
actual?: {
|
|
5508
|
+
swap?: {
|
|
5509
|
+
usd?: string | undefined;
|
|
5510
|
+
} | undefined;
|
|
5511
|
+
execution?: {
|
|
5512
|
+
usd?: string | undefined;
|
|
5513
|
+
} | undefined;
|
|
5514
|
+
relay?: {
|
|
5515
|
+
usd?: string | undefined;
|
|
5516
|
+
} | undefined;
|
|
5517
|
+
app?: {
|
|
5518
|
+
usd?: string | undefined;
|
|
5519
|
+
} | undefined;
|
|
5520
|
+
sponsored?: {
|
|
5521
|
+
usd?: string | undefined;
|
|
5522
|
+
} | undefined;
|
|
5523
|
+
} | undefined;
|
|
5524
|
+
} | null | undefined;
|
|
4943
5525
|
paidAppFees?: {
|
|
4944
5526
|
recipient?: string | undefined;
|
|
4945
5527
|
bps?: string | undefined;
|
|
@@ -5107,6 +5689,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
5107
5689
|
status?: "success" | "failure" | undefined;
|
|
5108
5690
|
}[] | undefined;
|
|
5109
5691
|
} | undefined;
|
|
5692
|
+
protocol?: {
|
|
5693
|
+
orderId?: string | undefined;
|
|
5694
|
+
hubType?: "onchain" | undefined;
|
|
5695
|
+
isWithdrawable?: boolean | undefined;
|
|
5696
|
+
solver?: {
|
|
5697
|
+
address?: string | undefined;
|
|
5698
|
+
protocolChainId?: string | undefined;
|
|
5699
|
+
chainId?: number | undefined;
|
|
5700
|
+
} | undefined;
|
|
5701
|
+
deposit?: {
|
|
5702
|
+
origin?: {
|
|
5703
|
+
amount?: string | undefined;
|
|
5704
|
+
chainId?: number | undefined;
|
|
5705
|
+
currency?: string | undefined;
|
|
5706
|
+
depositor?: string | undefined;
|
|
5707
|
+
depository?: string | undefined;
|
|
5708
|
+
onchainId?: string | undefined;
|
|
5709
|
+
transactionId?: string | undefined;
|
|
5710
|
+
} | undefined;
|
|
5711
|
+
relay?: {
|
|
5712
|
+
amount?: string | undefined;
|
|
5713
|
+
chainId?: number | undefined;
|
|
5714
|
+
currency?: string | undefined;
|
|
5715
|
+
hash?: string | undefined;
|
|
5716
|
+
operation?: "mint" | undefined;
|
|
5717
|
+
} | undefined;
|
|
5718
|
+
attestation?: {
|
|
5719
|
+
execution?: {
|
|
5720
|
+
actions?: string[] | undefined;
|
|
5721
|
+
idempotencyKey?: string | undefined;
|
|
5722
|
+
} | undefined;
|
|
5723
|
+
attestations?: {
|
|
5724
|
+
oracleChainId?: string | undefined;
|
|
5725
|
+
oracleContract?: string | undefined;
|
|
5726
|
+
signerAddress?: string | undefined;
|
|
5727
|
+
signature?: string | undefined;
|
|
5728
|
+
}[] | undefined;
|
|
5729
|
+
} | undefined;
|
|
5730
|
+
} | undefined;
|
|
5731
|
+
settlement?: {
|
|
5732
|
+
destination?: {
|
|
5733
|
+
fills?: {
|
|
5734
|
+
chainId?: number | undefined;
|
|
5735
|
+
transactionId?: string | undefined;
|
|
5736
|
+
}[] | undefined;
|
|
5737
|
+
refunds?: {
|
|
5738
|
+
chainId?: number | undefined;
|
|
5739
|
+
transactionId?: string | undefined;
|
|
5740
|
+
}[] | undefined;
|
|
5741
|
+
} | undefined;
|
|
5742
|
+
relay?: {
|
|
5743
|
+
amount?: string | undefined;
|
|
5744
|
+
chainId?: number | undefined;
|
|
5745
|
+
currency?: string | undefined;
|
|
5746
|
+
hash?: string | undefined;
|
|
5747
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
5748
|
+
solver?: string | undefined;
|
|
5749
|
+
} | undefined;
|
|
5750
|
+
attestation?: {
|
|
5751
|
+
execution?: {
|
|
5752
|
+
actions?: string[] | undefined;
|
|
5753
|
+
idempotencyKey?: string | undefined;
|
|
5754
|
+
} | undefined;
|
|
5755
|
+
attestations?: {
|
|
5756
|
+
oracleChainId?: string | undefined;
|
|
5757
|
+
oracleContract?: string | undefined;
|
|
5758
|
+
signerAddress?: string | undefined;
|
|
5759
|
+
signature?: string | undefined;
|
|
5760
|
+
}[] | undefined;
|
|
5761
|
+
} | undefined;
|
|
5762
|
+
} | undefined;
|
|
5763
|
+
} | undefined;
|
|
5110
5764
|
orderData?: unknown;
|
|
5111
5765
|
referrer?: string | undefined;
|
|
5112
5766
|
moonpayId?: string | undefined;
|
|
@@ -5133,6 +5787,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
5133
5787
|
depositAddress?: {
|
|
5134
5788
|
address?: string | undefined;
|
|
5135
5789
|
depositAddressType?: "strict" | "open" | undefined;
|
|
5790
|
+
depositor?: string | null | undefined;
|
|
5136
5791
|
} | null | undefined;
|
|
5137
5792
|
data?: {
|
|
5138
5793
|
slippageTolerance?: string | undefined;
|
|
@@ -5796,6 +6451,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
5796
6451
|
} | undefined;
|
|
5797
6452
|
} | undefined;
|
|
5798
6453
|
} | undefined;
|
|
6454
|
+
expandedPriceImpact?: {
|
|
6455
|
+
quoted?: {
|
|
6456
|
+
swap?: {
|
|
6457
|
+
usd?: string | undefined;
|
|
6458
|
+
} | undefined;
|
|
6459
|
+
execution?: {
|
|
6460
|
+
usd?: string | undefined;
|
|
6461
|
+
} | undefined;
|
|
6462
|
+
relay?: {
|
|
6463
|
+
usd?: string | undefined;
|
|
6464
|
+
} | undefined;
|
|
6465
|
+
app?: {
|
|
6466
|
+
usd?: string | undefined;
|
|
6467
|
+
} | undefined;
|
|
6468
|
+
sponsored?: {
|
|
6469
|
+
usd?: string | undefined;
|
|
6470
|
+
} | undefined;
|
|
6471
|
+
} | undefined;
|
|
6472
|
+
actual?: {
|
|
6473
|
+
swap?: {
|
|
6474
|
+
usd?: string | undefined;
|
|
6475
|
+
} | undefined;
|
|
6476
|
+
execution?: {
|
|
6477
|
+
usd?: string | undefined;
|
|
6478
|
+
} | undefined;
|
|
6479
|
+
relay?: {
|
|
6480
|
+
usd?: string | undefined;
|
|
6481
|
+
} | undefined;
|
|
6482
|
+
app?: {
|
|
6483
|
+
usd?: string | undefined;
|
|
6484
|
+
} | undefined;
|
|
6485
|
+
sponsored?: {
|
|
6486
|
+
usd?: string | undefined;
|
|
6487
|
+
} | undefined;
|
|
6488
|
+
} | undefined;
|
|
6489
|
+
} | null | undefined;
|
|
5799
6490
|
paidAppFees?: {
|
|
5800
6491
|
recipient?: string | undefined;
|
|
5801
6492
|
bps?: string | undefined;
|
|
@@ -5963,24 +6654,97 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
5963
6654
|
status?: "success" | "failure" | undefined;
|
|
5964
6655
|
}[] | undefined;
|
|
5965
6656
|
} | undefined;
|
|
5966
|
-
|
|
5967
|
-
|
|
5968
|
-
|
|
5969
|
-
|
|
5970
|
-
|
|
5971
|
-
|
|
5972
|
-
|
|
5973
|
-
|
|
5974
|
-
|
|
5975
|
-
|
|
5976
|
-
|
|
5977
|
-
|
|
5978
|
-
|
|
5979
|
-
|
|
5980
|
-
|
|
5981
|
-
|
|
5982
|
-
|
|
5983
|
-
|
|
6657
|
+
protocol?: {
|
|
6658
|
+
orderId?: string | undefined;
|
|
6659
|
+
hubType?: "onchain" | undefined;
|
|
6660
|
+
isWithdrawable?: boolean | undefined;
|
|
6661
|
+
solver?: {
|
|
6662
|
+
address?: string | undefined;
|
|
6663
|
+
protocolChainId?: string | undefined;
|
|
6664
|
+
chainId?: number | undefined;
|
|
6665
|
+
} | undefined;
|
|
6666
|
+
deposit?: {
|
|
6667
|
+
origin?: {
|
|
6668
|
+
amount?: string | undefined;
|
|
6669
|
+
chainId?: number | undefined;
|
|
6670
|
+
currency?: string | undefined;
|
|
6671
|
+
depositor?: string | undefined;
|
|
6672
|
+
depository?: string | undefined;
|
|
6673
|
+
onchainId?: string | undefined;
|
|
6674
|
+
transactionId?: string | undefined;
|
|
6675
|
+
} | undefined;
|
|
6676
|
+
relay?: {
|
|
6677
|
+
amount?: string | undefined;
|
|
6678
|
+
chainId?: number | undefined;
|
|
6679
|
+
currency?: string | undefined;
|
|
6680
|
+
hash?: string | undefined;
|
|
6681
|
+
operation?: "mint" | undefined;
|
|
6682
|
+
} | undefined;
|
|
6683
|
+
attestation?: {
|
|
6684
|
+
execution?: {
|
|
6685
|
+
actions?: string[] | undefined;
|
|
6686
|
+
idempotencyKey?: string | undefined;
|
|
6687
|
+
} | undefined;
|
|
6688
|
+
attestations?: {
|
|
6689
|
+
oracleChainId?: string | undefined;
|
|
6690
|
+
oracleContract?: string | undefined;
|
|
6691
|
+
signerAddress?: string | undefined;
|
|
6692
|
+
signature?: string | undefined;
|
|
6693
|
+
}[] | undefined;
|
|
6694
|
+
} | undefined;
|
|
6695
|
+
} | undefined;
|
|
6696
|
+
settlement?: {
|
|
6697
|
+
destination?: {
|
|
6698
|
+
fills?: {
|
|
6699
|
+
chainId?: number | undefined;
|
|
6700
|
+
transactionId?: string | undefined;
|
|
6701
|
+
}[] | undefined;
|
|
6702
|
+
refunds?: {
|
|
6703
|
+
chainId?: number | undefined;
|
|
6704
|
+
transactionId?: string | undefined;
|
|
6705
|
+
}[] | undefined;
|
|
6706
|
+
} | undefined;
|
|
6707
|
+
relay?: {
|
|
6708
|
+
amount?: string | undefined;
|
|
6709
|
+
chainId?: number | undefined;
|
|
6710
|
+
currency?: string | undefined;
|
|
6711
|
+
hash?: string | undefined;
|
|
6712
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
6713
|
+
solver?: string | undefined;
|
|
6714
|
+
} | undefined;
|
|
6715
|
+
attestation?: {
|
|
6716
|
+
execution?: {
|
|
6717
|
+
actions?: string[] | undefined;
|
|
6718
|
+
idempotencyKey?: string | undefined;
|
|
6719
|
+
} | undefined;
|
|
6720
|
+
attestations?: {
|
|
6721
|
+
oracleChainId?: string | undefined;
|
|
6722
|
+
oracleContract?: string | undefined;
|
|
6723
|
+
signerAddress?: string | undefined;
|
|
6724
|
+
signature?: string | undefined;
|
|
6725
|
+
}[] | undefined;
|
|
6726
|
+
} | undefined;
|
|
6727
|
+
} | undefined;
|
|
6728
|
+
} | undefined;
|
|
6729
|
+
orderData?: unknown;
|
|
6730
|
+
referrer?: string | undefined;
|
|
6731
|
+
moonpayId?: string | undefined;
|
|
6732
|
+
createdAt?: string | undefined;
|
|
6733
|
+
updatedAt?: string | undefined;
|
|
6734
|
+
}[] | undefined;
|
|
6735
|
+
continuation?: string | undefined;
|
|
6736
|
+
}, unknown>, Error>>;
|
|
6737
|
+
fetchPreviousPage: (options?: import("@tanstack/react-query").FetchPreviousPageOptions | undefined) => Promise<import("@tanstack/react-query").InfiniteQueryObserverResult<InfiniteData<{
|
|
6738
|
+
requests?: {
|
|
6739
|
+
id?: string | undefined;
|
|
6740
|
+
status?: "success" | "failure" | "refund" | "pending" | "depositing" | "waiting" | undefined;
|
|
6741
|
+
user?: string | undefined;
|
|
6742
|
+
recipient?: string | undefined;
|
|
6743
|
+
depositAddress?: {
|
|
6744
|
+
address?: string | undefined;
|
|
6745
|
+
depositAddressType?: "strict" | "open" | undefined;
|
|
6746
|
+
depositor?: string | null | undefined;
|
|
6747
|
+
} | null | undefined;
|
|
5984
6748
|
data?: {
|
|
5985
6749
|
slippageTolerance?: string | undefined;
|
|
5986
6750
|
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;
|
|
@@ -6643,6 +7407,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
6643
7407
|
} | undefined;
|
|
6644
7408
|
} | undefined;
|
|
6645
7409
|
} | undefined;
|
|
7410
|
+
expandedPriceImpact?: {
|
|
7411
|
+
quoted?: {
|
|
7412
|
+
swap?: {
|
|
7413
|
+
usd?: string | undefined;
|
|
7414
|
+
} | undefined;
|
|
7415
|
+
execution?: {
|
|
7416
|
+
usd?: string | undefined;
|
|
7417
|
+
} | undefined;
|
|
7418
|
+
relay?: {
|
|
7419
|
+
usd?: string | undefined;
|
|
7420
|
+
} | undefined;
|
|
7421
|
+
app?: {
|
|
7422
|
+
usd?: string | undefined;
|
|
7423
|
+
} | undefined;
|
|
7424
|
+
sponsored?: {
|
|
7425
|
+
usd?: string | undefined;
|
|
7426
|
+
} | undefined;
|
|
7427
|
+
} | undefined;
|
|
7428
|
+
actual?: {
|
|
7429
|
+
swap?: {
|
|
7430
|
+
usd?: string | undefined;
|
|
7431
|
+
} | undefined;
|
|
7432
|
+
execution?: {
|
|
7433
|
+
usd?: string | undefined;
|
|
7434
|
+
} | undefined;
|
|
7435
|
+
relay?: {
|
|
7436
|
+
usd?: string | undefined;
|
|
7437
|
+
} | undefined;
|
|
7438
|
+
app?: {
|
|
7439
|
+
usd?: string | undefined;
|
|
7440
|
+
} | undefined;
|
|
7441
|
+
sponsored?: {
|
|
7442
|
+
usd?: string | undefined;
|
|
7443
|
+
} | undefined;
|
|
7444
|
+
} | undefined;
|
|
7445
|
+
} | null | undefined;
|
|
6646
7446
|
paidAppFees?: {
|
|
6647
7447
|
recipient?: string | undefined;
|
|
6648
7448
|
bps?: string | undefined;
|
|
@@ -6810,6 +7610,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
6810
7610
|
status?: "success" | "failure" | undefined;
|
|
6811
7611
|
}[] | undefined;
|
|
6812
7612
|
} | undefined;
|
|
7613
|
+
protocol?: {
|
|
7614
|
+
orderId?: string | undefined;
|
|
7615
|
+
hubType?: "onchain" | undefined;
|
|
7616
|
+
isWithdrawable?: boolean | undefined;
|
|
7617
|
+
solver?: {
|
|
7618
|
+
address?: string | undefined;
|
|
7619
|
+
protocolChainId?: string | undefined;
|
|
7620
|
+
chainId?: number | undefined;
|
|
7621
|
+
} | undefined;
|
|
7622
|
+
deposit?: {
|
|
7623
|
+
origin?: {
|
|
7624
|
+
amount?: string | undefined;
|
|
7625
|
+
chainId?: number | undefined;
|
|
7626
|
+
currency?: string | undefined;
|
|
7627
|
+
depositor?: string | undefined;
|
|
7628
|
+
depository?: string | undefined;
|
|
7629
|
+
onchainId?: string | undefined;
|
|
7630
|
+
transactionId?: string | undefined;
|
|
7631
|
+
} | undefined;
|
|
7632
|
+
relay?: {
|
|
7633
|
+
amount?: string | undefined;
|
|
7634
|
+
chainId?: number | undefined;
|
|
7635
|
+
currency?: string | undefined;
|
|
7636
|
+
hash?: string | undefined;
|
|
7637
|
+
operation?: "mint" | undefined;
|
|
7638
|
+
} | undefined;
|
|
7639
|
+
attestation?: {
|
|
7640
|
+
execution?: {
|
|
7641
|
+
actions?: string[] | undefined;
|
|
7642
|
+
idempotencyKey?: string | undefined;
|
|
7643
|
+
} | undefined;
|
|
7644
|
+
attestations?: {
|
|
7645
|
+
oracleChainId?: string | undefined;
|
|
7646
|
+
oracleContract?: string | undefined;
|
|
7647
|
+
signerAddress?: string | undefined;
|
|
7648
|
+
signature?: string | undefined;
|
|
7649
|
+
}[] | undefined;
|
|
7650
|
+
} | undefined;
|
|
7651
|
+
} | undefined;
|
|
7652
|
+
settlement?: {
|
|
7653
|
+
destination?: {
|
|
7654
|
+
fills?: {
|
|
7655
|
+
chainId?: number | undefined;
|
|
7656
|
+
transactionId?: string | undefined;
|
|
7657
|
+
}[] | undefined;
|
|
7658
|
+
refunds?: {
|
|
7659
|
+
chainId?: number | undefined;
|
|
7660
|
+
transactionId?: string | undefined;
|
|
7661
|
+
}[] | undefined;
|
|
7662
|
+
} | undefined;
|
|
7663
|
+
relay?: {
|
|
7664
|
+
amount?: string | undefined;
|
|
7665
|
+
chainId?: number | undefined;
|
|
7666
|
+
currency?: string | undefined;
|
|
7667
|
+
hash?: string | undefined;
|
|
7668
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
7669
|
+
solver?: string | undefined;
|
|
7670
|
+
} | undefined;
|
|
7671
|
+
attestation?: {
|
|
7672
|
+
execution?: {
|
|
7673
|
+
actions?: string[] | undefined;
|
|
7674
|
+
idempotencyKey?: string | undefined;
|
|
7675
|
+
} | undefined;
|
|
7676
|
+
attestations?: {
|
|
7677
|
+
oracleChainId?: string | undefined;
|
|
7678
|
+
oracleContract?: string | undefined;
|
|
7679
|
+
signerAddress?: string | undefined;
|
|
7680
|
+
signature?: string | undefined;
|
|
7681
|
+
}[] | undefined;
|
|
7682
|
+
} | undefined;
|
|
7683
|
+
} | undefined;
|
|
7684
|
+
} | undefined;
|
|
6813
7685
|
orderData?: unknown;
|
|
6814
7686
|
referrer?: string | undefined;
|
|
6815
7687
|
moonpayId?: string | undefined;
|
|
@@ -6843,6 +7715,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
6843
7715
|
depositAddress?: {
|
|
6844
7716
|
address?: string | undefined;
|
|
6845
7717
|
depositAddressType?: "strict" | "open" | undefined;
|
|
7718
|
+
depositor?: string | null | undefined;
|
|
6846
7719
|
} | null | undefined;
|
|
6847
7720
|
data?: {
|
|
6848
7721
|
slippageTolerance?: string | undefined;
|
|
@@ -7506,6 +8379,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
7506
8379
|
} | undefined;
|
|
7507
8380
|
} | undefined;
|
|
7508
8381
|
} | undefined;
|
|
8382
|
+
expandedPriceImpact?: {
|
|
8383
|
+
quoted?: {
|
|
8384
|
+
swap?: {
|
|
8385
|
+
usd?: string | undefined;
|
|
8386
|
+
} | undefined;
|
|
8387
|
+
execution?: {
|
|
8388
|
+
usd?: string | undefined;
|
|
8389
|
+
} | undefined;
|
|
8390
|
+
relay?: {
|
|
8391
|
+
usd?: string | undefined;
|
|
8392
|
+
} | undefined;
|
|
8393
|
+
app?: {
|
|
8394
|
+
usd?: string | undefined;
|
|
8395
|
+
} | undefined;
|
|
8396
|
+
sponsored?: {
|
|
8397
|
+
usd?: string | undefined;
|
|
8398
|
+
} | undefined;
|
|
8399
|
+
} | undefined;
|
|
8400
|
+
actual?: {
|
|
8401
|
+
swap?: {
|
|
8402
|
+
usd?: string | undefined;
|
|
8403
|
+
} | undefined;
|
|
8404
|
+
execution?: {
|
|
8405
|
+
usd?: string | undefined;
|
|
8406
|
+
} | undefined;
|
|
8407
|
+
relay?: {
|
|
8408
|
+
usd?: string | undefined;
|
|
8409
|
+
} | undefined;
|
|
8410
|
+
app?: {
|
|
8411
|
+
usd?: string | undefined;
|
|
8412
|
+
} | undefined;
|
|
8413
|
+
sponsored?: {
|
|
8414
|
+
usd?: string | undefined;
|
|
8415
|
+
} | undefined;
|
|
8416
|
+
} | undefined;
|
|
8417
|
+
} | null | undefined;
|
|
7509
8418
|
paidAppFees?: {
|
|
7510
8419
|
recipient?: string | undefined;
|
|
7511
8420
|
bps?: string | undefined;
|
|
@@ -7673,6 +8582,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
7673
8582
|
status?: "success" | "failure" | undefined;
|
|
7674
8583
|
}[] | undefined;
|
|
7675
8584
|
} | undefined;
|
|
8585
|
+
protocol?: {
|
|
8586
|
+
orderId?: string | undefined;
|
|
8587
|
+
hubType?: "onchain" | undefined;
|
|
8588
|
+
isWithdrawable?: boolean | undefined;
|
|
8589
|
+
solver?: {
|
|
8590
|
+
address?: string | undefined;
|
|
8591
|
+
protocolChainId?: string | undefined;
|
|
8592
|
+
chainId?: number | undefined;
|
|
8593
|
+
} | undefined;
|
|
8594
|
+
deposit?: {
|
|
8595
|
+
origin?: {
|
|
8596
|
+
amount?: string | undefined;
|
|
8597
|
+
chainId?: number | undefined;
|
|
8598
|
+
currency?: string | undefined;
|
|
8599
|
+
depositor?: string | undefined;
|
|
8600
|
+
depository?: string | undefined;
|
|
8601
|
+
onchainId?: string | undefined;
|
|
8602
|
+
transactionId?: string | undefined;
|
|
8603
|
+
} | undefined;
|
|
8604
|
+
relay?: {
|
|
8605
|
+
amount?: string | undefined;
|
|
8606
|
+
chainId?: number | undefined;
|
|
8607
|
+
currency?: string | undefined;
|
|
8608
|
+
hash?: string | undefined;
|
|
8609
|
+
operation?: "mint" | undefined;
|
|
8610
|
+
} | undefined;
|
|
8611
|
+
attestation?: {
|
|
8612
|
+
execution?: {
|
|
8613
|
+
actions?: string[] | undefined;
|
|
8614
|
+
idempotencyKey?: string | undefined;
|
|
8615
|
+
} | undefined;
|
|
8616
|
+
attestations?: {
|
|
8617
|
+
oracleChainId?: string | undefined;
|
|
8618
|
+
oracleContract?: string | undefined;
|
|
8619
|
+
signerAddress?: string | undefined;
|
|
8620
|
+
signature?: string | undefined;
|
|
8621
|
+
}[] | undefined;
|
|
8622
|
+
} | undefined;
|
|
8623
|
+
} | undefined;
|
|
8624
|
+
settlement?: {
|
|
8625
|
+
destination?: {
|
|
8626
|
+
fills?: {
|
|
8627
|
+
chainId?: number | undefined;
|
|
8628
|
+
transactionId?: string | undefined;
|
|
8629
|
+
}[] | undefined;
|
|
8630
|
+
refunds?: {
|
|
8631
|
+
chainId?: number | undefined;
|
|
8632
|
+
transactionId?: string | undefined;
|
|
8633
|
+
}[] | undefined;
|
|
8634
|
+
} | undefined;
|
|
8635
|
+
relay?: {
|
|
8636
|
+
amount?: string | undefined;
|
|
8637
|
+
chainId?: number | undefined;
|
|
8638
|
+
currency?: string | undefined;
|
|
8639
|
+
hash?: string | undefined;
|
|
8640
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
8641
|
+
solver?: string | undefined;
|
|
8642
|
+
} | undefined;
|
|
8643
|
+
attestation?: {
|
|
8644
|
+
execution?: {
|
|
8645
|
+
actions?: string[] | undefined;
|
|
8646
|
+
idempotencyKey?: string | undefined;
|
|
8647
|
+
} | undefined;
|
|
8648
|
+
attestations?: {
|
|
8649
|
+
oracleChainId?: string | undefined;
|
|
8650
|
+
oracleContract?: string | undefined;
|
|
8651
|
+
signerAddress?: string | undefined;
|
|
8652
|
+
signature?: string | undefined;
|
|
8653
|
+
}[] | undefined;
|
|
8654
|
+
} | undefined;
|
|
8655
|
+
} | undefined;
|
|
8656
|
+
} | undefined;
|
|
7676
8657
|
orderData?: unknown;
|
|
7677
8658
|
referrer?: string | undefined;
|
|
7678
8659
|
moonpayId?: string | undefined;
|
|
@@ -7691,6 +8672,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
7691
8672
|
depositAddress?: {
|
|
7692
8673
|
address?: string | undefined;
|
|
7693
8674
|
depositAddressType?: "strict" | "open" | undefined;
|
|
8675
|
+
depositor?: string | null | undefined;
|
|
7694
8676
|
} | null | undefined;
|
|
7695
8677
|
data?: {
|
|
7696
8678
|
slippageTolerance?: string | undefined;
|
|
@@ -8354,6 +9336,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
8354
9336
|
} | undefined;
|
|
8355
9337
|
} | undefined;
|
|
8356
9338
|
} | undefined;
|
|
9339
|
+
expandedPriceImpact?: {
|
|
9340
|
+
quoted?: {
|
|
9341
|
+
swap?: {
|
|
9342
|
+
usd?: string | undefined;
|
|
9343
|
+
} | undefined;
|
|
9344
|
+
execution?: {
|
|
9345
|
+
usd?: string | undefined;
|
|
9346
|
+
} | undefined;
|
|
9347
|
+
relay?: {
|
|
9348
|
+
usd?: string | undefined;
|
|
9349
|
+
} | undefined;
|
|
9350
|
+
app?: {
|
|
9351
|
+
usd?: string | undefined;
|
|
9352
|
+
} | undefined;
|
|
9353
|
+
sponsored?: {
|
|
9354
|
+
usd?: string | undefined;
|
|
9355
|
+
} | undefined;
|
|
9356
|
+
} | undefined;
|
|
9357
|
+
actual?: {
|
|
9358
|
+
swap?: {
|
|
9359
|
+
usd?: string | undefined;
|
|
9360
|
+
} | undefined;
|
|
9361
|
+
execution?: {
|
|
9362
|
+
usd?: string | undefined;
|
|
9363
|
+
} | undefined;
|
|
9364
|
+
relay?: {
|
|
9365
|
+
usd?: string | undefined;
|
|
9366
|
+
} | undefined;
|
|
9367
|
+
app?: {
|
|
9368
|
+
usd?: string | undefined;
|
|
9369
|
+
} | undefined;
|
|
9370
|
+
sponsored?: {
|
|
9371
|
+
usd?: string | undefined;
|
|
9372
|
+
} | undefined;
|
|
9373
|
+
} | undefined;
|
|
9374
|
+
} | null | undefined;
|
|
8357
9375
|
paidAppFees?: {
|
|
8358
9376
|
recipient?: string | undefined;
|
|
8359
9377
|
bps?: string | undefined;
|
|
@@ -8521,6 +9539,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
8521
9539
|
status?: "success" | "failure" | undefined;
|
|
8522
9540
|
}[] | undefined;
|
|
8523
9541
|
} | undefined;
|
|
9542
|
+
protocol?: {
|
|
9543
|
+
orderId?: string | undefined;
|
|
9544
|
+
hubType?: "onchain" | undefined;
|
|
9545
|
+
isWithdrawable?: boolean | undefined;
|
|
9546
|
+
solver?: {
|
|
9547
|
+
address?: string | undefined;
|
|
9548
|
+
protocolChainId?: string | undefined;
|
|
9549
|
+
chainId?: number | undefined;
|
|
9550
|
+
} | undefined;
|
|
9551
|
+
deposit?: {
|
|
9552
|
+
origin?: {
|
|
9553
|
+
amount?: string | undefined;
|
|
9554
|
+
chainId?: number | undefined;
|
|
9555
|
+
currency?: string | undefined;
|
|
9556
|
+
depositor?: string | undefined;
|
|
9557
|
+
depository?: string | undefined;
|
|
9558
|
+
onchainId?: string | undefined;
|
|
9559
|
+
transactionId?: string | undefined;
|
|
9560
|
+
} | undefined;
|
|
9561
|
+
relay?: {
|
|
9562
|
+
amount?: string | undefined;
|
|
9563
|
+
chainId?: number | undefined;
|
|
9564
|
+
currency?: string | undefined;
|
|
9565
|
+
hash?: string | undefined;
|
|
9566
|
+
operation?: "mint" | undefined;
|
|
9567
|
+
} | undefined;
|
|
9568
|
+
attestation?: {
|
|
9569
|
+
execution?: {
|
|
9570
|
+
actions?: string[] | undefined;
|
|
9571
|
+
idempotencyKey?: string | undefined;
|
|
9572
|
+
} | undefined;
|
|
9573
|
+
attestations?: {
|
|
9574
|
+
oracleChainId?: string | undefined;
|
|
9575
|
+
oracleContract?: string | undefined;
|
|
9576
|
+
signerAddress?: string | undefined;
|
|
9577
|
+
signature?: string | undefined;
|
|
9578
|
+
}[] | undefined;
|
|
9579
|
+
} | undefined;
|
|
9580
|
+
} | undefined;
|
|
9581
|
+
settlement?: {
|
|
9582
|
+
destination?: {
|
|
9583
|
+
fills?: {
|
|
9584
|
+
chainId?: number | undefined;
|
|
9585
|
+
transactionId?: string | undefined;
|
|
9586
|
+
}[] | undefined;
|
|
9587
|
+
refunds?: {
|
|
9588
|
+
chainId?: number | undefined;
|
|
9589
|
+
transactionId?: string | undefined;
|
|
9590
|
+
}[] | undefined;
|
|
9591
|
+
} | undefined;
|
|
9592
|
+
relay?: {
|
|
9593
|
+
amount?: string | undefined;
|
|
9594
|
+
chainId?: number | undefined;
|
|
9595
|
+
currency?: string | undefined;
|
|
9596
|
+
hash?: string | undefined;
|
|
9597
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
9598
|
+
solver?: string | undefined;
|
|
9599
|
+
} | undefined;
|
|
9600
|
+
attestation?: {
|
|
9601
|
+
execution?: {
|
|
9602
|
+
actions?: string[] | undefined;
|
|
9603
|
+
idempotencyKey?: string | undefined;
|
|
9604
|
+
} | undefined;
|
|
9605
|
+
attestations?: {
|
|
9606
|
+
oracleChainId?: string | undefined;
|
|
9607
|
+
oracleContract?: string | undefined;
|
|
9608
|
+
signerAddress?: string | undefined;
|
|
9609
|
+
signature?: string | undefined;
|
|
9610
|
+
}[] | undefined;
|
|
9611
|
+
} | undefined;
|
|
9612
|
+
} | undefined;
|
|
9613
|
+
} | undefined;
|
|
8524
9614
|
orderData?: unknown;
|
|
8525
9615
|
referrer?: string | undefined;
|
|
8526
9616
|
moonpayId?: string | undefined;
|
|
@@ -8538,6 +9628,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
8538
9628
|
depositAddress?: {
|
|
8539
9629
|
address?: string | undefined;
|
|
8540
9630
|
depositAddressType?: "strict" | "open" | undefined;
|
|
9631
|
+
depositor?: string | null | undefined;
|
|
8541
9632
|
} | null | undefined;
|
|
8542
9633
|
data?: {
|
|
8543
9634
|
slippageTolerance?: string | undefined;
|
|
@@ -9201,6 +10292,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
9201
10292
|
} | undefined;
|
|
9202
10293
|
} | undefined;
|
|
9203
10294
|
} | undefined;
|
|
10295
|
+
expandedPriceImpact?: {
|
|
10296
|
+
quoted?: {
|
|
10297
|
+
swap?: {
|
|
10298
|
+
usd?: string | undefined;
|
|
10299
|
+
} | undefined;
|
|
10300
|
+
execution?: {
|
|
10301
|
+
usd?: string | undefined;
|
|
10302
|
+
} | undefined;
|
|
10303
|
+
relay?: {
|
|
10304
|
+
usd?: string | undefined;
|
|
10305
|
+
} | undefined;
|
|
10306
|
+
app?: {
|
|
10307
|
+
usd?: string | undefined;
|
|
10308
|
+
} | undefined;
|
|
10309
|
+
sponsored?: {
|
|
10310
|
+
usd?: string | undefined;
|
|
10311
|
+
} | undefined;
|
|
10312
|
+
} | undefined;
|
|
10313
|
+
actual?: {
|
|
10314
|
+
swap?: {
|
|
10315
|
+
usd?: string | undefined;
|
|
10316
|
+
} | undefined;
|
|
10317
|
+
execution?: {
|
|
10318
|
+
usd?: string | undefined;
|
|
10319
|
+
} | undefined;
|
|
10320
|
+
relay?: {
|
|
10321
|
+
usd?: string | undefined;
|
|
10322
|
+
} | undefined;
|
|
10323
|
+
app?: {
|
|
10324
|
+
usd?: string | undefined;
|
|
10325
|
+
} | undefined;
|
|
10326
|
+
sponsored?: {
|
|
10327
|
+
usd?: string | undefined;
|
|
10328
|
+
} | undefined;
|
|
10329
|
+
} | undefined;
|
|
10330
|
+
} | null | undefined;
|
|
9204
10331
|
paidAppFees?: {
|
|
9205
10332
|
recipient?: string | undefined;
|
|
9206
10333
|
bps?: string | undefined;
|
|
@@ -9368,6 +10495,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
9368
10495
|
status?: "success" | "failure" | undefined;
|
|
9369
10496
|
}[] | undefined;
|
|
9370
10497
|
} | undefined;
|
|
10498
|
+
protocol?: {
|
|
10499
|
+
orderId?: string | undefined;
|
|
10500
|
+
hubType?: "onchain" | undefined;
|
|
10501
|
+
isWithdrawable?: boolean | undefined;
|
|
10502
|
+
solver?: {
|
|
10503
|
+
address?: string | undefined;
|
|
10504
|
+
protocolChainId?: string | undefined;
|
|
10505
|
+
chainId?: number | undefined;
|
|
10506
|
+
} | undefined;
|
|
10507
|
+
deposit?: {
|
|
10508
|
+
origin?: {
|
|
10509
|
+
amount?: string | undefined;
|
|
10510
|
+
chainId?: number | undefined;
|
|
10511
|
+
currency?: string | undefined;
|
|
10512
|
+
depositor?: string | undefined;
|
|
10513
|
+
depository?: string | undefined;
|
|
10514
|
+
onchainId?: string | undefined;
|
|
10515
|
+
transactionId?: string | undefined;
|
|
10516
|
+
} | undefined;
|
|
10517
|
+
relay?: {
|
|
10518
|
+
amount?: string | undefined;
|
|
10519
|
+
chainId?: number | undefined;
|
|
10520
|
+
currency?: string | undefined;
|
|
10521
|
+
hash?: string | undefined;
|
|
10522
|
+
operation?: "mint" | undefined;
|
|
10523
|
+
} | undefined;
|
|
10524
|
+
attestation?: {
|
|
10525
|
+
execution?: {
|
|
10526
|
+
actions?: string[] | undefined;
|
|
10527
|
+
idempotencyKey?: string | undefined;
|
|
10528
|
+
} | undefined;
|
|
10529
|
+
attestations?: {
|
|
10530
|
+
oracleChainId?: string | undefined;
|
|
10531
|
+
oracleContract?: string | undefined;
|
|
10532
|
+
signerAddress?: string | undefined;
|
|
10533
|
+
signature?: string | undefined;
|
|
10534
|
+
}[] | undefined;
|
|
10535
|
+
} | undefined;
|
|
10536
|
+
} | undefined;
|
|
10537
|
+
settlement?: {
|
|
10538
|
+
destination?: {
|
|
10539
|
+
fills?: {
|
|
10540
|
+
chainId?: number | undefined;
|
|
10541
|
+
transactionId?: string | undefined;
|
|
10542
|
+
}[] | undefined;
|
|
10543
|
+
refunds?: {
|
|
10544
|
+
chainId?: number | undefined;
|
|
10545
|
+
transactionId?: string | undefined;
|
|
10546
|
+
}[] | undefined;
|
|
10547
|
+
} | undefined;
|
|
10548
|
+
relay?: {
|
|
10549
|
+
amount?: string | undefined;
|
|
10550
|
+
chainId?: number | undefined;
|
|
10551
|
+
currency?: string | undefined;
|
|
10552
|
+
hash?: string | undefined;
|
|
10553
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
10554
|
+
solver?: string | undefined;
|
|
10555
|
+
} | undefined;
|
|
10556
|
+
attestation?: {
|
|
10557
|
+
execution?: {
|
|
10558
|
+
actions?: string[] | undefined;
|
|
10559
|
+
idempotencyKey?: string | undefined;
|
|
10560
|
+
} | undefined;
|
|
10561
|
+
attestations?: {
|
|
10562
|
+
oracleChainId?: string | undefined;
|
|
10563
|
+
oracleContract?: string | undefined;
|
|
10564
|
+
signerAddress?: string | undefined;
|
|
10565
|
+
signature?: string | undefined;
|
|
10566
|
+
}[] | undefined;
|
|
10567
|
+
} | undefined;
|
|
10568
|
+
} | undefined;
|
|
10569
|
+
} | undefined;
|
|
9371
10570
|
orderData?: unknown;
|
|
9372
10571
|
referrer?: string | undefined;
|
|
9373
10572
|
moonpayId?: string | undefined;
|
|
@@ -9394,6 +10593,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
9394
10593
|
depositAddress?: {
|
|
9395
10594
|
address?: string | undefined;
|
|
9396
10595
|
depositAddressType?: "strict" | "open" | undefined;
|
|
10596
|
+
depositor?: string | null | undefined;
|
|
9397
10597
|
} | null | undefined;
|
|
9398
10598
|
data?: {
|
|
9399
10599
|
slippageTolerance?: string | undefined;
|
|
@@ -10057,6 +11257,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
10057
11257
|
} | undefined;
|
|
10058
11258
|
} | undefined;
|
|
10059
11259
|
} | undefined;
|
|
11260
|
+
expandedPriceImpact?: {
|
|
11261
|
+
quoted?: {
|
|
11262
|
+
swap?: {
|
|
11263
|
+
usd?: string | undefined;
|
|
11264
|
+
} | undefined;
|
|
11265
|
+
execution?: {
|
|
11266
|
+
usd?: string | undefined;
|
|
11267
|
+
} | undefined;
|
|
11268
|
+
relay?: {
|
|
11269
|
+
usd?: string | undefined;
|
|
11270
|
+
} | undefined;
|
|
11271
|
+
app?: {
|
|
11272
|
+
usd?: string | undefined;
|
|
11273
|
+
} | undefined;
|
|
11274
|
+
sponsored?: {
|
|
11275
|
+
usd?: string | undefined;
|
|
11276
|
+
} | undefined;
|
|
11277
|
+
} | undefined;
|
|
11278
|
+
actual?: {
|
|
11279
|
+
swap?: {
|
|
11280
|
+
usd?: string | undefined;
|
|
11281
|
+
} | undefined;
|
|
11282
|
+
execution?: {
|
|
11283
|
+
usd?: string | undefined;
|
|
11284
|
+
} | undefined;
|
|
11285
|
+
relay?: {
|
|
11286
|
+
usd?: string | undefined;
|
|
11287
|
+
} | undefined;
|
|
11288
|
+
app?: {
|
|
11289
|
+
usd?: string | undefined;
|
|
11290
|
+
} | undefined;
|
|
11291
|
+
sponsored?: {
|
|
11292
|
+
usd?: string | undefined;
|
|
11293
|
+
} | undefined;
|
|
11294
|
+
} | undefined;
|
|
11295
|
+
} | null | undefined;
|
|
10060
11296
|
paidAppFees?: {
|
|
10061
11297
|
recipient?: string | undefined;
|
|
10062
11298
|
bps?: string | undefined;
|
|
@@ -10224,6 +11460,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
10224
11460
|
status?: "success" | "failure" | undefined;
|
|
10225
11461
|
}[] | undefined;
|
|
10226
11462
|
} | undefined;
|
|
11463
|
+
protocol?: {
|
|
11464
|
+
orderId?: string | undefined;
|
|
11465
|
+
hubType?: "onchain" | undefined;
|
|
11466
|
+
isWithdrawable?: boolean | undefined;
|
|
11467
|
+
solver?: {
|
|
11468
|
+
address?: string | undefined;
|
|
11469
|
+
protocolChainId?: string | undefined;
|
|
11470
|
+
chainId?: number | undefined;
|
|
11471
|
+
} | undefined;
|
|
11472
|
+
deposit?: {
|
|
11473
|
+
origin?: {
|
|
11474
|
+
amount?: string | undefined;
|
|
11475
|
+
chainId?: number | undefined;
|
|
11476
|
+
currency?: string | undefined;
|
|
11477
|
+
depositor?: string | undefined;
|
|
11478
|
+
depository?: string | undefined;
|
|
11479
|
+
onchainId?: string | undefined;
|
|
11480
|
+
transactionId?: string | undefined;
|
|
11481
|
+
} | undefined;
|
|
11482
|
+
relay?: {
|
|
11483
|
+
amount?: string | undefined;
|
|
11484
|
+
chainId?: number | undefined;
|
|
11485
|
+
currency?: string | undefined;
|
|
11486
|
+
hash?: string | undefined;
|
|
11487
|
+
operation?: "mint" | undefined;
|
|
11488
|
+
} | undefined;
|
|
11489
|
+
attestation?: {
|
|
11490
|
+
execution?: {
|
|
11491
|
+
actions?: string[] | undefined;
|
|
11492
|
+
idempotencyKey?: string | undefined;
|
|
11493
|
+
} | undefined;
|
|
11494
|
+
attestations?: {
|
|
11495
|
+
oracleChainId?: string | undefined;
|
|
11496
|
+
oracleContract?: string | undefined;
|
|
11497
|
+
signerAddress?: string | undefined;
|
|
11498
|
+
signature?: string | undefined;
|
|
11499
|
+
}[] | undefined;
|
|
11500
|
+
} | undefined;
|
|
11501
|
+
} | undefined;
|
|
11502
|
+
settlement?: {
|
|
11503
|
+
destination?: {
|
|
11504
|
+
fills?: {
|
|
11505
|
+
chainId?: number | undefined;
|
|
11506
|
+
transactionId?: string | undefined;
|
|
11507
|
+
}[] | undefined;
|
|
11508
|
+
refunds?: {
|
|
11509
|
+
chainId?: number | undefined;
|
|
11510
|
+
transactionId?: string | undefined;
|
|
11511
|
+
}[] | undefined;
|
|
11512
|
+
} | undefined;
|
|
11513
|
+
relay?: {
|
|
11514
|
+
amount?: string | undefined;
|
|
11515
|
+
chainId?: number | undefined;
|
|
11516
|
+
currency?: string | undefined;
|
|
11517
|
+
hash?: string | undefined;
|
|
11518
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
11519
|
+
solver?: string | undefined;
|
|
11520
|
+
} | undefined;
|
|
11521
|
+
attestation?: {
|
|
11522
|
+
execution?: {
|
|
11523
|
+
actions?: string[] | undefined;
|
|
11524
|
+
idempotencyKey?: string | undefined;
|
|
11525
|
+
} | undefined;
|
|
11526
|
+
attestations?: {
|
|
11527
|
+
oracleChainId?: string | undefined;
|
|
11528
|
+
oracleContract?: string | undefined;
|
|
11529
|
+
signerAddress?: string | undefined;
|
|
11530
|
+
signature?: string | undefined;
|
|
11531
|
+
}[] | undefined;
|
|
11532
|
+
} | undefined;
|
|
11533
|
+
} | undefined;
|
|
11534
|
+
} | undefined;
|
|
10227
11535
|
orderData?: unknown;
|
|
10228
11536
|
referrer?: string | undefined;
|
|
10229
11537
|
moonpayId?: string | undefined;
|
|
@@ -10241,6 +11549,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
10241
11549
|
depositAddress?: {
|
|
10242
11550
|
address?: string | undefined;
|
|
10243
11551
|
depositAddressType?: "strict" | "open" | undefined;
|
|
11552
|
+
depositor?: string | null | undefined;
|
|
10244
11553
|
} | null | undefined;
|
|
10245
11554
|
data?: {
|
|
10246
11555
|
slippageTolerance?: string | undefined;
|
|
@@ -10904,6 +12213,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
10904
12213
|
} | undefined;
|
|
10905
12214
|
} | undefined;
|
|
10906
12215
|
} | undefined;
|
|
12216
|
+
expandedPriceImpact?: {
|
|
12217
|
+
quoted?: {
|
|
12218
|
+
swap?: {
|
|
12219
|
+
usd?: string | undefined;
|
|
12220
|
+
} | undefined;
|
|
12221
|
+
execution?: {
|
|
12222
|
+
usd?: string | undefined;
|
|
12223
|
+
} | undefined;
|
|
12224
|
+
relay?: {
|
|
12225
|
+
usd?: string | undefined;
|
|
12226
|
+
} | undefined;
|
|
12227
|
+
app?: {
|
|
12228
|
+
usd?: string | undefined;
|
|
12229
|
+
} | undefined;
|
|
12230
|
+
sponsored?: {
|
|
12231
|
+
usd?: string | undefined;
|
|
12232
|
+
} | undefined;
|
|
12233
|
+
} | undefined;
|
|
12234
|
+
actual?: {
|
|
12235
|
+
swap?: {
|
|
12236
|
+
usd?: string | undefined;
|
|
12237
|
+
} | undefined;
|
|
12238
|
+
execution?: {
|
|
12239
|
+
usd?: string | undefined;
|
|
12240
|
+
} | undefined;
|
|
12241
|
+
relay?: {
|
|
12242
|
+
usd?: string | undefined;
|
|
12243
|
+
} | undefined;
|
|
12244
|
+
app?: {
|
|
12245
|
+
usd?: string | undefined;
|
|
12246
|
+
} | undefined;
|
|
12247
|
+
sponsored?: {
|
|
12248
|
+
usd?: string | undefined;
|
|
12249
|
+
} | undefined;
|
|
12250
|
+
} | undefined;
|
|
12251
|
+
} | null | undefined;
|
|
10907
12252
|
paidAppFees?: {
|
|
10908
12253
|
recipient?: string | undefined;
|
|
10909
12254
|
bps?: string | undefined;
|
|
@@ -11071,6 +12416,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
11071
12416
|
status?: "success" | "failure" | undefined;
|
|
11072
12417
|
}[] | undefined;
|
|
11073
12418
|
} | undefined;
|
|
12419
|
+
protocol?: {
|
|
12420
|
+
orderId?: string | undefined;
|
|
12421
|
+
hubType?: "onchain" | undefined;
|
|
12422
|
+
isWithdrawable?: boolean | undefined;
|
|
12423
|
+
solver?: {
|
|
12424
|
+
address?: string | undefined;
|
|
12425
|
+
protocolChainId?: string | undefined;
|
|
12426
|
+
chainId?: number | undefined;
|
|
12427
|
+
} | undefined;
|
|
12428
|
+
deposit?: {
|
|
12429
|
+
origin?: {
|
|
12430
|
+
amount?: string | undefined;
|
|
12431
|
+
chainId?: number | undefined;
|
|
12432
|
+
currency?: string | undefined;
|
|
12433
|
+
depositor?: string | undefined;
|
|
12434
|
+
depository?: string | undefined;
|
|
12435
|
+
onchainId?: string | undefined;
|
|
12436
|
+
transactionId?: string | undefined;
|
|
12437
|
+
} | undefined;
|
|
12438
|
+
relay?: {
|
|
12439
|
+
amount?: string | undefined;
|
|
12440
|
+
chainId?: number | undefined;
|
|
12441
|
+
currency?: string | undefined;
|
|
12442
|
+
hash?: string | undefined;
|
|
12443
|
+
operation?: "mint" | undefined;
|
|
12444
|
+
} | undefined;
|
|
12445
|
+
attestation?: {
|
|
12446
|
+
execution?: {
|
|
12447
|
+
actions?: string[] | undefined;
|
|
12448
|
+
idempotencyKey?: string | undefined;
|
|
12449
|
+
} | undefined;
|
|
12450
|
+
attestations?: {
|
|
12451
|
+
oracleChainId?: string | undefined;
|
|
12452
|
+
oracleContract?: string | undefined;
|
|
12453
|
+
signerAddress?: string | undefined;
|
|
12454
|
+
signature?: string | undefined;
|
|
12455
|
+
}[] | undefined;
|
|
12456
|
+
} | undefined;
|
|
12457
|
+
} | undefined;
|
|
12458
|
+
settlement?: {
|
|
12459
|
+
destination?: {
|
|
12460
|
+
fills?: {
|
|
12461
|
+
chainId?: number | undefined;
|
|
12462
|
+
transactionId?: string | undefined;
|
|
12463
|
+
}[] | undefined;
|
|
12464
|
+
refunds?: {
|
|
12465
|
+
chainId?: number | undefined;
|
|
12466
|
+
transactionId?: string | undefined;
|
|
12467
|
+
}[] | undefined;
|
|
12468
|
+
} | undefined;
|
|
12469
|
+
relay?: {
|
|
12470
|
+
amount?: string | undefined;
|
|
12471
|
+
chainId?: number | undefined;
|
|
12472
|
+
currency?: string | undefined;
|
|
12473
|
+
hash?: string | undefined;
|
|
12474
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
12475
|
+
solver?: string | undefined;
|
|
12476
|
+
} | undefined;
|
|
12477
|
+
attestation?: {
|
|
12478
|
+
execution?: {
|
|
12479
|
+
actions?: string[] | undefined;
|
|
12480
|
+
idempotencyKey?: string | undefined;
|
|
12481
|
+
} | undefined;
|
|
12482
|
+
attestations?: {
|
|
12483
|
+
oracleChainId?: string | undefined;
|
|
12484
|
+
oracleContract?: string | undefined;
|
|
12485
|
+
signerAddress?: string | undefined;
|
|
12486
|
+
signature?: string | undefined;
|
|
12487
|
+
}[] | undefined;
|
|
12488
|
+
} | undefined;
|
|
12489
|
+
} | undefined;
|
|
12490
|
+
} | undefined;
|
|
11074
12491
|
orderData?: unknown;
|
|
11075
12492
|
referrer?: string | undefined;
|
|
11076
12493
|
moonpayId?: string | undefined;
|
|
@@ -11104,6 +12521,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
11104
12521
|
depositAddress?: {
|
|
11105
12522
|
address?: string | undefined;
|
|
11106
12523
|
depositAddressType?: "strict" | "open" | undefined;
|
|
12524
|
+
depositor?: string | null | undefined;
|
|
11107
12525
|
} | null | undefined;
|
|
11108
12526
|
data?: {
|
|
11109
12527
|
slippageTolerance?: string | undefined;
|
|
@@ -11767,6 +13185,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
11767
13185
|
} | undefined;
|
|
11768
13186
|
} | undefined;
|
|
11769
13187
|
} | undefined;
|
|
13188
|
+
expandedPriceImpact?: {
|
|
13189
|
+
quoted?: {
|
|
13190
|
+
swap?: {
|
|
13191
|
+
usd?: string | undefined;
|
|
13192
|
+
} | undefined;
|
|
13193
|
+
execution?: {
|
|
13194
|
+
usd?: string | undefined;
|
|
13195
|
+
} | undefined;
|
|
13196
|
+
relay?: {
|
|
13197
|
+
usd?: string | undefined;
|
|
13198
|
+
} | undefined;
|
|
13199
|
+
app?: {
|
|
13200
|
+
usd?: string | undefined;
|
|
13201
|
+
} | undefined;
|
|
13202
|
+
sponsored?: {
|
|
13203
|
+
usd?: string | undefined;
|
|
13204
|
+
} | undefined;
|
|
13205
|
+
} | undefined;
|
|
13206
|
+
actual?: {
|
|
13207
|
+
swap?: {
|
|
13208
|
+
usd?: string | undefined;
|
|
13209
|
+
} | undefined;
|
|
13210
|
+
execution?: {
|
|
13211
|
+
usd?: string | undefined;
|
|
13212
|
+
} | undefined;
|
|
13213
|
+
relay?: {
|
|
13214
|
+
usd?: string | undefined;
|
|
13215
|
+
} | undefined;
|
|
13216
|
+
app?: {
|
|
13217
|
+
usd?: string | undefined;
|
|
13218
|
+
} | undefined;
|
|
13219
|
+
sponsored?: {
|
|
13220
|
+
usd?: string | undefined;
|
|
13221
|
+
} | undefined;
|
|
13222
|
+
} | undefined;
|
|
13223
|
+
} | null | undefined;
|
|
11770
13224
|
paidAppFees?: {
|
|
11771
13225
|
recipient?: string | undefined;
|
|
11772
13226
|
bps?: string | undefined;
|
|
@@ -11934,6 +13388,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
11934
13388
|
status?: "success" | "failure" | undefined;
|
|
11935
13389
|
}[] | undefined;
|
|
11936
13390
|
} | undefined;
|
|
13391
|
+
protocol?: {
|
|
13392
|
+
orderId?: string | undefined;
|
|
13393
|
+
hubType?: "onchain" | undefined;
|
|
13394
|
+
isWithdrawable?: boolean | undefined;
|
|
13395
|
+
solver?: {
|
|
13396
|
+
address?: string | undefined;
|
|
13397
|
+
protocolChainId?: string | undefined;
|
|
13398
|
+
chainId?: number | undefined;
|
|
13399
|
+
} | undefined;
|
|
13400
|
+
deposit?: {
|
|
13401
|
+
origin?: {
|
|
13402
|
+
amount?: string | undefined;
|
|
13403
|
+
chainId?: number | undefined;
|
|
13404
|
+
currency?: string | undefined;
|
|
13405
|
+
depositor?: string | undefined;
|
|
13406
|
+
depository?: string | undefined;
|
|
13407
|
+
onchainId?: string | undefined;
|
|
13408
|
+
transactionId?: string | undefined;
|
|
13409
|
+
} | undefined;
|
|
13410
|
+
relay?: {
|
|
13411
|
+
amount?: string | undefined;
|
|
13412
|
+
chainId?: number | undefined;
|
|
13413
|
+
currency?: string | undefined;
|
|
13414
|
+
hash?: string | undefined;
|
|
13415
|
+
operation?: "mint" | undefined;
|
|
13416
|
+
} | undefined;
|
|
13417
|
+
attestation?: {
|
|
13418
|
+
execution?: {
|
|
13419
|
+
actions?: string[] | undefined;
|
|
13420
|
+
idempotencyKey?: string | undefined;
|
|
13421
|
+
} | undefined;
|
|
13422
|
+
attestations?: {
|
|
13423
|
+
oracleChainId?: string | undefined;
|
|
13424
|
+
oracleContract?: string | undefined;
|
|
13425
|
+
signerAddress?: string | undefined;
|
|
13426
|
+
signature?: string | undefined;
|
|
13427
|
+
}[] | undefined;
|
|
13428
|
+
} | undefined;
|
|
13429
|
+
} | undefined;
|
|
13430
|
+
settlement?: {
|
|
13431
|
+
destination?: {
|
|
13432
|
+
fills?: {
|
|
13433
|
+
chainId?: number | undefined;
|
|
13434
|
+
transactionId?: string | undefined;
|
|
13435
|
+
}[] | undefined;
|
|
13436
|
+
refunds?: {
|
|
13437
|
+
chainId?: number | undefined;
|
|
13438
|
+
transactionId?: string | undefined;
|
|
13439
|
+
}[] | undefined;
|
|
13440
|
+
} | undefined;
|
|
13441
|
+
relay?: {
|
|
13442
|
+
amount?: string | undefined;
|
|
13443
|
+
chainId?: number | undefined;
|
|
13444
|
+
currency?: string | undefined;
|
|
13445
|
+
hash?: string | undefined;
|
|
13446
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
13447
|
+
solver?: string | undefined;
|
|
13448
|
+
} | undefined;
|
|
13449
|
+
attestation?: {
|
|
13450
|
+
execution?: {
|
|
13451
|
+
actions?: string[] | undefined;
|
|
13452
|
+
idempotencyKey?: string | undefined;
|
|
13453
|
+
} | undefined;
|
|
13454
|
+
attestations?: {
|
|
13455
|
+
oracleChainId?: string | undefined;
|
|
13456
|
+
oracleContract?: string | undefined;
|
|
13457
|
+
signerAddress?: string | undefined;
|
|
13458
|
+
signature?: string | undefined;
|
|
13459
|
+
}[] | undefined;
|
|
13460
|
+
} | undefined;
|
|
13461
|
+
} | undefined;
|
|
13462
|
+
} | undefined;
|
|
11937
13463
|
orderData?: unknown;
|
|
11938
13464
|
referrer?: string | undefined;
|
|
11939
13465
|
moonpayId?: string | undefined;
|
|
@@ -11952,6 +13478,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
11952
13478
|
depositAddress?: {
|
|
11953
13479
|
address?: string | undefined;
|
|
11954
13480
|
depositAddressType?: "strict" | "open" | undefined;
|
|
13481
|
+
depositor?: string | null | undefined;
|
|
11955
13482
|
} | null | undefined;
|
|
11956
13483
|
data?: {
|
|
11957
13484
|
slippageTolerance?: string | undefined;
|
|
@@ -12615,6 +14142,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
12615
14142
|
} | undefined;
|
|
12616
14143
|
} | undefined;
|
|
12617
14144
|
} | undefined;
|
|
14145
|
+
expandedPriceImpact?: {
|
|
14146
|
+
quoted?: {
|
|
14147
|
+
swap?: {
|
|
14148
|
+
usd?: string | undefined;
|
|
14149
|
+
} | undefined;
|
|
14150
|
+
execution?: {
|
|
14151
|
+
usd?: string | undefined;
|
|
14152
|
+
} | undefined;
|
|
14153
|
+
relay?: {
|
|
14154
|
+
usd?: string | undefined;
|
|
14155
|
+
} | undefined;
|
|
14156
|
+
app?: {
|
|
14157
|
+
usd?: string | undefined;
|
|
14158
|
+
} | undefined;
|
|
14159
|
+
sponsored?: {
|
|
14160
|
+
usd?: string | undefined;
|
|
14161
|
+
} | undefined;
|
|
14162
|
+
} | undefined;
|
|
14163
|
+
actual?: {
|
|
14164
|
+
swap?: {
|
|
14165
|
+
usd?: string | undefined;
|
|
14166
|
+
} | undefined;
|
|
14167
|
+
execution?: {
|
|
14168
|
+
usd?: string | undefined;
|
|
14169
|
+
} | undefined;
|
|
14170
|
+
relay?: {
|
|
14171
|
+
usd?: string | undefined;
|
|
14172
|
+
} | undefined;
|
|
14173
|
+
app?: {
|
|
14174
|
+
usd?: string | undefined;
|
|
14175
|
+
} | undefined;
|
|
14176
|
+
sponsored?: {
|
|
14177
|
+
usd?: string | undefined;
|
|
14178
|
+
} | undefined;
|
|
14179
|
+
} | undefined;
|
|
14180
|
+
} | null | undefined;
|
|
12618
14181
|
paidAppFees?: {
|
|
12619
14182
|
recipient?: string | undefined;
|
|
12620
14183
|
bps?: string | undefined;
|
|
@@ -12782,6 +14345,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
12782
14345
|
status?: "success" | "failure" | undefined;
|
|
12783
14346
|
}[] | undefined;
|
|
12784
14347
|
} | undefined;
|
|
14348
|
+
protocol?: {
|
|
14349
|
+
orderId?: string | undefined;
|
|
14350
|
+
hubType?: "onchain" | undefined;
|
|
14351
|
+
isWithdrawable?: boolean | undefined;
|
|
14352
|
+
solver?: {
|
|
14353
|
+
address?: string | undefined;
|
|
14354
|
+
protocolChainId?: string | undefined;
|
|
14355
|
+
chainId?: number | undefined;
|
|
14356
|
+
} | undefined;
|
|
14357
|
+
deposit?: {
|
|
14358
|
+
origin?: {
|
|
14359
|
+
amount?: string | undefined;
|
|
14360
|
+
chainId?: number | undefined;
|
|
14361
|
+
currency?: string | undefined;
|
|
14362
|
+
depositor?: string | undefined;
|
|
14363
|
+
depository?: string | undefined;
|
|
14364
|
+
onchainId?: string | undefined;
|
|
14365
|
+
transactionId?: string | undefined;
|
|
14366
|
+
} | undefined;
|
|
14367
|
+
relay?: {
|
|
14368
|
+
amount?: string | undefined;
|
|
14369
|
+
chainId?: number | undefined;
|
|
14370
|
+
currency?: string | undefined;
|
|
14371
|
+
hash?: string | undefined;
|
|
14372
|
+
operation?: "mint" | undefined;
|
|
14373
|
+
} | undefined;
|
|
14374
|
+
attestation?: {
|
|
14375
|
+
execution?: {
|
|
14376
|
+
actions?: string[] | undefined;
|
|
14377
|
+
idempotencyKey?: string | undefined;
|
|
14378
|
+
} | undefined;
|
|
14379
|
+
attestations?: {
|
|
14380
|
+
oracleChainId?: string | undefined;
|
|
14381
|
+
oracleContract?: string | undefined;
|
|
14382
|
+
signerAddress?: string | undefined;
|
|
14383
|
+
signature?: string | undefined;
|
|
14384
|
+
}[] | undefined;
|
|
14385
|
+
} | undefined;
|
|
14386
|
+
} | undefined;
|
|
14387
|
+
settlement?: {
|
|
14388
|
+
destination?: {
|
|
14389
|
+
fills?: {
|
|
14390
|
+
chainId?: number | undefined;
|
|
14391
|
+
transactionId?: string | undefined;
|
|
14392
|
+
}[] | undefined;
|
|
14393
|
+
refunds?: {
|
|
14394
|
+
chainId?: number | undefined;
|
|
14395
|
+
transactionId?: string | undefined;
|
|
14396
|
+
}[] | undefined;
|
|
14397
|
+
} | undefined;
|
|
14398
|
+
relay?: {
|
|
14399
|
+
amount?: string | undefined;
|
|
14400
|
+
chainId?: number | undefined;
|
|
14401
|
+
currency?: string | undefined;
|
|
14402
|
+
hash?: string | undefined;
|
|
14403
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
14404
|
+
solver?: string | undefined;
|
|
14405
|
+
} | undefined;
|
|
14406
|
+
attestation?: {
|
|
14407
|
+
execution?: {
|
|
14408
|
+
actions?: string[] | undefined;
|
|
14409
|
+
idempotencyKey?: string | undefined;
|
|
14410
|
+
} | undefined;
|
|
14411
|
+
attestations?: {
|
|
14412
|
+
oracleChainId?: string | undefined;
|
|
14413
|
+
oracleContract?: string | undefined;
|
|
14414
|
+
signerAddress?: string | undefined;
|
|
14415
|
+
signature?: string | undefined;
|
|
14416
|
+
}[] | undefined;
|
|
14417
|
+
} | undefined;
|
|
14418
|
+
} | undefined;
|
|
14419
|
+
} | undefined;
|
|
12785
14420
|
orderData?: unknown;
|
|
12786
14421
|
referrer?: string | undefined;
|
|
12787
14422
|
moonpayId?: string | undefined;
|
|
@@ -12799,6 +14434,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
12799
14434
|
depositAddress?: {
|
|
12800
14435
|
address?: string | undefined;
|
|
12801
14436
|
depositAddressType?: "strict" | "open" | undefined;
|
|
14437
|
+
depositor?: string | null | undefined;
|
|
12802
14438
|
} | null | undefined;
|
|
12803
14439
|
data?: {
|
|
12804
14440
|
slippageTolerance?: string | undefined;
|
|
@@ -13462,6 +15098,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
13462
15098
|
} | undefined;
|
|
13463
15099
|
} | undefined;
|
|
13464
15100
|
} | undefined;
|
|
15101
|
+
expandedPriceImpact?: {
|
|
15102
|
+
quoted?: {
|
|
15103
|
+
swap?: {
|
|
15104
|
+
usd?: string | undefined;
|
|
15105
|
+
} | undefined;
|
|
15106
|
+
execution?: {
|
|
15107
|
+
usd?: string | undefined;
|
|
15108
|
+
} | undefined;
|
|
15109
|
+
relay?: {
|
|
15110
|
+
usd?: string | undefined;
|
|
15111
|
+
} | undefined;
|
|
15112
|
+
app?: {
|
|
15113
|
+
usd?: string | undefined;
|
|
15114
|
+
} | undefined;
|
|
15115
|
+
sponsored?: {
|
|
15116
|
+
usd?: string | undefined;
|
|
15117
|
+
} | undefined;
|
|
15118
|
+
} | undefined;
|
|
15119
|
+
actual?: {
|
|
15120
|
+
swap?: {
|
|
15121
|
+
usd?: string | undefined;
|
|
15122
|
+
} | undefined;
|
|
15123
|
+
execution?: {
|
|
15124
|
+
usd?: string | undefined;
|
|
15125
|
+
} | undefined;
|
|
15126
|
+
relay?: {
|
|
15127
|
+
usd?: string | undefined;
|
|
15128
|
+
} | undefined;
|
|
15129
|
+
app?: {
|
|
15130
|
+
usd?: string | undefined;
|
|
15131
|
+
} | undefined;
|
|
15132
|
+
sponsored?: {
|
|
15133
|
+
usd?: string | undefined;
|
|
15134
|
+
} | undefined;
|
|
15135
|
+
} | undefined;
|
|
15136
|
+
} | null | undefined;
|
|
13465
15137
|
paidAppFees?: {
|
|
13466
15138
|
recipient?: string | undefined;
|
|
13467
15139
|
bps?: string | undefined;
|
|
@@ -13629,6 +15301,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
13629
15301
|
status?: "success" | "failure" | undefined;
|
|
13630
15302
|
}[] | undefined;
|
|
13631
15303
|
} | undefined;
|
|
15304
|
+
protocol?: {
|
|
15305
|
+
orderId?: string | undefined;
|
|
15306
|
+
hubType?: "onchain" | undefined;
|
|
15307
|
+
isWithdrawable?: boolean | undefined;
|
|
15308
|
+
solver?: {
|
|
15309
|
+
address?: string | undefined;
|
|
15310
|
+
protocolChainId?: string | undefined;
|
|
15311
|
+
chainId?: number | undefined;
|
|
15312
|
+
} | undefined;
|
|
15313
|
+
deposit?: {
|
|
15314
|
+
origin?: {
|
|
15315
|
+
amount?: string | undefined;
|
|
15316
|
+
chainId?: number | undefined;
|
|
15317
|
+
currency?: string | undefined;
|
|
15318
|
+
depositor?: string | undefined;
|
|
15319
|
+
depository?: string | undefined;
|
|
15320
|
+
onchainId?: string | undefined;
|
|
15321
|
+
transactionId?: string | undefined;
|
|
15322
|
+
} | undefined;
|
|
15323
|
+
relay?: {
|
|
15324
|
+
amount?: string | undefined;
|
|
15325
|
+
chainId?: number | undefined;
|
|
15326
|
+
currency?: string | undefined;
|
|
15327
|
+
hash?: string | undefined;
|
|
15328
|
+
operation?: "mint" | undefined;
|
|
15329
|
+
} | undefined;
|
|
15330
|
+
attestation?: {
|
|
15331
|
+
execution?: {
|
|
15332
|
+
actions?: string[] | undefined;
|
|
15333
|
+
idempotencyKey?: string | undefined;
|
|
15334
|
+
} | undefined;
|
|
15335
|
+
attestations?: {
|
|
15336
|
+
oracleChainId?: string | undefined;
|
|
15337
|
+
oracleContract?: string | undefined;
|
|
15338
|
+
signerAddress?: string | undefined;
|
|
15339
|
+
signature?: string | undefined;
|
|
15340
|
+
}[] | undefined;
|
|
15341
|
+
} | undefined;
|
|
15342
|
+
} | undefined;
|
|
15343
|
+
settlement?: {
|
|
15344
|
+
destination?: {
|
|
15345
|
+
fills?: {
|
|
15346
|
+
chainId?: number | undefined;
|
|
15347
|
+
transactionId?: string | undefined;
|
|
15348
|
+
}[] | undefined;
|
|
15349
|
+
refunds?: {
|
|
15350
|
+
chainId?: number | undefined;
|
|
15351
|
+
transactionId?: string | undefined;
|
|
15352
|
+
}[] | undefined;
|
|
15353
|
+
} | undefined;
|
|
15354
|
+
relay?: {
|
|
15355
|
+
amount?: string | undefined;
|
|
15356
|
+
chainId?: number | undefined;
|
|
15357
|
+
currency?: string | undefined;
|
|
15358
|
+
hash?: string | undefined;
|
|
15359
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
15360
|
+
solver?: string | undefined;
|
|
15361
|
+
} | undefined;
|
|
15362
|
+
attestation?: {
|
|
15363
|
+
execution?: {
|
|
15364
|
+
actions?: string[] | undefined;
|
|
15365
|
+
idempotencyKey?: string | undefined;
|
|
15366
|
+
} | undefined;
|
|
15367
|
+
attestations?: {
|
|
15368
|
+
oracleChainId?: string | undefined;
|
|
15369
|
+
oracleContract?: string | undefined;
|
|
15370
|
+
signerAddress?: string | undefined;
|
|
15371
|
+
signature?: string | undefined;
|
|
15372
|
+
}[] | undefined;
|
|
15373
|
+
} | undefined;
|
|
15374
|
+
} | undefined;
|
|
15375
|
+
} | undefined;
|
|
13632
15376
|
orderData?: unknown;
|
|
13633
15377
|
referrer?: string | undefined;
|
|
13634
15378
|
moonpayId?: string | undefined;
|
|
@@ -13655,6 +15399,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
13655
15399
|
depositAddress?: {
|
|
13656
15400
|
address?: string | undefined;
|
|
13657
15401
|
depositAddressType?: "strict" | "open" | undefined;
|
|
15402
|
+
depositor?: string | null | undefined;
|
|
13658
15403
|
} | null | undefined;
|
|
13659
15404
|
data?: {
|
|
13660
15405
|
slippageTolerance?: string | undefined;
|
|
@@ -14318,6 +16063,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
14318
16063
|
} | undefined;
|
|
14319
16064
|
} | undefined;
|
|
14320
16065
|
} | undefined;
|
|
16066
|
+
expandedPriceImpact?: {
|
|
16067
|
+
quoted?: {
|
|
16068
|
+
swap?: {
|
|
16069
|
+
usd?: string | undefined;
|
|
16070
|
+
} | undefined;
|
|
16071
|
+
execution?: {
|
|
16072
|
+
usd?: string | undefined;
|
|
16073
|
+
} | undefined;
|
|
16074
|
+
relay?: {
|
|
16075
|
+
usd?: string | undefined;
|
|
16076
|
+
} | undefined;
|
|
16077
|
+
app?: {
|
|
16078
|
+
usd?: string | undefined;
|
|
16079
|
+
} | undefined;
|
|
16080
|
+
sponsored?: {
|
|
16081
|
+
usd?: string | undefined;
|
|
16082
|
+
} | undefined;
|
|
16083
|
+
} | undefined;
|
|
16084
|
+
actual?: {
|
|
16085
|
+
swap?: {
|
|
16086
|
+
usd?: string | undefined;
|
|
16087
|
+
} | undefined;
|
|
16088
|
+
execution?: {
|
|
16089
|
+
usd?: string | undefined;
|
|
16090
|
+
} | undefined;
|
|
16091
|
+
relay?: {
|
|
16092
|
+
usd?: string | undefined;
|
|
16093
|
+
} | undefined;
|
|
16094
|
+
app?: {
|
|
16095
|
+
usd?: string | undefined;
|
|
16096
|
+
} | undefined;
|
|
16097
|
+
sponsored?: {
|
|
16098
|
+
usd?: string | undefined;
|
|
16099
|
+
} | undefined;
|
|
16100
|
+
} | undefined;
|
|
16101
|
+
} | null | undefined;
|
|
14321
16102
|
paidAppFees?: {
|
|
14322
16103
|
recipient?: string | undefined;
|
|
14323
16104
|
bps?: string | undefined;
|
|
@@ -14485,6 +16266,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
14485
16266
|
status?: "success" | "failure" | undefined;
|
|
14486
16267
|
}[] | undefined;
|
|
14487
16268
|
} | undefined;
|
|
16269
|
+
protocol?: {
|
|
16270
|
+
orderId?: string | undefined;
|
|
16271
|
+
hubType?: "onchain" | undefined;
|
|
16272
|
+
isWithdrawable?: boolean | undefined;
|
|
16273
|
+
solver?: {
|
|
16274
|
+
address?: string | undefined;
|
|
16275
|
+
protocolChainId?: string | undefined;
|
|
16276
|
+
chainId?: number | undefined;
|
|
16277
|
+
} | undefined;
|
|
16278
|
+
deposit?: {
|
|
16279
|
+
origin?: {
|
|
16280
|
+
amount?: string | undefined;
|
|
16281
|
+
chainId?: number | undefined;
|
|
16282
|
+
currency?: string | undefined;
|
|
16283
|
+
depositor?: string | undefined;
|
|
16284
|
+
depository?: string | undefined;
|
|
16285
|
+
onchainId?: string | undefined;
|
|
16286
|
+
transactionId?: string | undefined;
|
|
16287
|
+
} | undefined;
|
|
16288
|
+
relay?: {
|
|
16289
|
+
amount?: string | undefined;
|
|
16290
|
+
chainId?: number | undefined;
|
|
16291
|
+
currency?: string | undefined;
|
|
16292
|
+
hash?: string | undefined;
|
|
16293
|
+
operation?: "mint" | undefined;
|
|
16294
|
+
} | undefined;
|
|
16295
|
+
attestation?: {
|
|
16296
|
+
execution?: {
|
|
16297
|
+
actions?: string[] | undefined;
|
|
16298
|
+
idempotencyKey?: string | undefined;
|
|
16299
|
+
} | undefined;
|
|
16300
|
+
attestations?: {
|
|
16301
|
+
oracleChainId?: string | undefined;
|
|
16302
|
+
oracleContract?: string | undefined;
|
|
16303
|
+
signerAddress?: string | undefined;
|
|
16304
|
+
signature?: string | undefined;
|
|
16305
|
+
}[] | undefined;
|
|
16306
|
+
} | undefined;
|
|
16307
|
+
} | undefined;
|
|
16308
|
+
settlement?: {
|
|
16309
|
+
destination?: {
|
|
16310
|
+
fills?: {
|
|
16311
|
+
chainId?: number | undefined;
|
|
16312
|
+
transactionId?: string | undefined;
|
|
16313
|
+
}[] | undefined;
|
|
16314
|
+
refunds?: {
|
|
16315
|
+
chainId?: number | undefined;
|
|
16316
|
+
transactionId?: string | undefined;
|
|
16317
|
+
}[] | undefined;
|
|
16318
|
+
} | undefined;
|
|
16319
|
+
relay?: {
|
|
16320
|
+
amount?: string | undefined;
|
|
16321
|
+
chainId?: number | undefined;
|
|
16322
|
+
currency?: string | undefined;
|
|
16323
|
+
hash?: string | undefined;
|
|
16324
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
16325
|
+
solver?: string | undefined;
|
|
16326
|
+
} | undefined;
|
|
16327
|
+
attestation?: {
|
|
16328
|
+
execution?: {
|
|
16329
|
+
actions?: string[] | undefined;
|
|
16330
|
+
idempotencyKey?: string | undefined;
|
|
16331
|
+
} | undefined;
|
|
16332
|
+
attestations?: {
|
|
16333
|
+
oracleChainId?: string | undefined;
|
|
16334
|
+
oracleContract?: string | undefined;
|
|
16335
|
+
signerAddress?: string | undefined;
|
|
16336
|
+
signature?: string | undefined;
|
|
16337
|
+
}[] | undefined;
|
|
16338
|
+
} | undefined;
|
|
16339
|
+
} | undefined;
|
|
16340
|
+
} | undefined;
|
|
14488
16341
|
orderData?: unknown;
|
|
14489
16342
|
referrer?: string | undefined;
|
|
14490
16343
|
moonpayId?: string | undefined;
|
|
@@ -14502,6 +16355,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
14502
16355
|
depositAddress?: {
|
|
14503
16356
|
address?: string | undefined;
|
|
14504
16357
|
depositAddressType?: "strict" | "open" | undefined;
|
|
16358
|
+
depositor?: string | null | undefined;
|
|
14505
16359
|
} | null | undefined;
|
|
14506
16360
|
data?: {
|
|
14507
16361
|
slippageTolerance?: string | undefined;
|
|
@@ -15165,6 +17019,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
15165
17019
|
} | undefined;
|
|
15166
17020
|
} | undefined;
|
|
15167
17021
|
} | undefined;
|
|
17022
|
+
expandedPriceImpact?: {
|
|
17023
|
+
quoted?: {
|
|
17024
|
+
swap?: {
|
|
17025
|
+
usd?: string | undefined;
|
|
17026
|
+
} | undefined;
|
|
17027
|
+
execution?: {
|
|
17028
|
+
usd?: string | undefined;
|
|
17029
|
+
} | undefined;
|
|
17030
|
+
relay?: {
|
|
17031
|
+
usd?: string | undefined;
|
|
17032
|
+
} | undefined;
|
|
17033
|
+
app?: {
|
|
17034
|
+
usd?: string | undefined;
|
|
17035
|
+
} | undefined;
|
|
17036
|
+
sponsored?: {
|
|
17037
|
+
usd?: string | undefined;
|
|
17038
|
+
} | undefined;
|
|
17039
|
+
} | undefined;
|
|
17040
|
+
actual?: {
|
|
17041
|
+
swap?: {
|
|
17042
|
+
usd?: string | undefined;
|
|
17043
|
+
} | undefined;
|
|
17044
|
+
execution?: {
|
|
17045
|
+
usd?: string | undefined;
|
|
17046
|
+
} | undefined;
|
|
17047
|
+
relay?: {
|
|
17048
|
+
usd?: string | undefined;
|
|
17049
|
+
} | undefined;
|
|
17050
|
+
app?: {
|
|
17051
|
+
usd?: string | undefined;
|
|
17052
|
+
} | undefined;
|
|
17053
|
+
sponsored?: {
|
|
17054
|
+
usd?: string | undefined;
|
|
17055
|
+
} | undefined;
|
|
17056
|
+
} | undefined;
|
|
17057
|
+
} | null | undefined;
|
|
15168
17058
|
paidAppFees?: {
|
|
15169
17059
|
recipient?: string | undefined;
|
|
15170
17060
|
bps?: string | undefined;
|
|
@@ -15332,6 +17222,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
15332
17222
|
status?: "success" | "failure" | undefined;
|
|
15333
17223
|
}[] | undefined;
|
|
15334
17224
|
} | undefined;
|
|
17225
|
+
protocol?: {
|
|
17226
|
+
orderId?: string | undefined;
|
|
17227
|
+
hubType?: "onchain" | undefined;
|
|
17228
|
+
isWithdrawable?: boolean | undefined;
|
|
17229
|
+
solver?: {
|
|
17230
|
+
address?: string | undefined;
|
|
17231
|
+
protocolChainId?: string | undefined;
|
|
17232
|
+
chainId?: number | undefined;
|
|
17233
|
+
} | undefined;
|
|
17234
|
+
deposit?: {
|
|
17235
|
+
origin?: {
|
|
17236
|
+
amount?: string | undefined;
|
|
17237
|
+
chainId?: number | undefined;
|
|
17238
|
+
currency?: string | undefined;
|
|
17239
|
+
depositor?: string | undefined;
|
|
17240
|
+
depository?: string | undefined;
|
|
17241
|
+
onchainId?: string | undefined;
|
|
17242
|
+
transactionId?: string | undefined;
|
|
17243
|
+
} | undefined;
|
|
17244
|
+
relay?: {
|
|
17245
|
+
amount?: string | undefined;
|
|
17246
|
+
chainId?: number | undefined;
|
|
17247
|
+
currency?: string | undefined;
|
|
17248
|
+
hash?: string | undefined;
|
|
17249
|
+
operation?: "mint" | undefined;
|
|
17250
|
+
} | undefined;
|
|
17251
|
+
attestation?: {
|
|
17252
|
+
execution?: {
|
|
17253
|
+
actions?: string[] | undefined;
|
|
17254
|
+
idempotencyKey?: string | undefined;
|
|
17255
|
+
} | undefined;
|
|
17256
|
+
attestations?: {
|
|
17257
|
+
oracleChainId?: string | undefined;
|
|
17258
|
+
oracleContract?: string | undefined;
|
|
17259
|
+
signerAddress?: string | undefined;
|
|
17260
|
+
signature?: string | undefined;
|
|
17261
|
+
}[] | undefined;
|
|
17262
|
+
} | undefined;
|
|
17263
|
+
} | undefined;
|
|
17264
|
+
settlement?: {
|
|
17265
|
+
destination?: {
|
|
17266
|
+
fills?: {
|
|
17267
|
+
chainId?: number | undefined;
|
|
17268
|
+
transactionId?: string | undefined;
|
|
17269
|
+
}[] | undefined;
|
|
17270
|
+
refunds?: {
|
|
17271
|
+
chainId?: number | undefined;
|
|
17272
|
+
transactionId?: string | undefined;
|
|
17273
|
+
}[] | undefined;
|
|
17274
|
+
} | undefined;
|
|
17275
|
+
relay?: {
|
|
17276
|
+
amount?: string | undefined;
|
|
17277
|
+
chainId?: number | undefined;
|
|
17278
|
+
currency?: string | undefined;
|
|
17279
|
+
hash?: string | undefined;
|
|
17280
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
17281
|
+
solver?: string | undefined;
|
|
17282
|
+
} | undefined;
|
|
17283
|
+
attestation?: {
|
|
17284
|
+
execution?: {
|
|
17285
|
+
actions?: string[] | undefined;
|
|
17286
|
+
idempotencyKey?: string | undefined;
|
|
17287
|
+
} | undefined;
|
|
17288
|
+
attestations?: {
|
|
17289
|
+
oracleChainId?: string | undefined;
|
|
17290
|
+
oracleContract?: string | undefined;
|
|
17291
|
+
signerAddress?: string | undefined;
|
|
17292
|
+
signature?: string | undefined;
|
|
17293
|
+
}[] | undefined;
|
|
17294
|
+
} | undefined;
|
|
17295
|
+
} | undefined;
|
|
17296
|
+
} | undefined;
|
|
15335
17297
|
orderData?: unknown;
|
|
15336
17298
|
referrer?: string | undefined;
|
|
15337
17299
|
moonpayId?: string | undefined;
|
|
@@ -15365,6 +17327,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
15365
17327
|
depositAddress?: {
|
|
15366
17328
|
address?: string | undefined;
|
|
15367
17329
|
depositAddressType?: "strict" | "open" | undefined;
|
|
17330
|
+
depositor?: string | null | undefined;
|
|
15368
17331
|
} | null | undefined;
|
|
15369
17332
|
data?: {
|
|
15370
17333
|
slippageTolerance?: string | undefined;
|
|
@@ -16028,6 +17991,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
16028
17991
|
} | undefined;
|
|
16029
17992
|
} | undefined;
|
|
16030
17993
|
} | undefined;
|
|
17994
|
+
expandedPriceImpact?: {
|
|
17995
|
+
quoted?: {
|
|
17996
|
+
swap?: {
|
|
17997
|
+
usd?: string | undefined;
|
|
17998
|
+
} | undefined;
|
|
17999
|
+
execution?: {
|
|
18000
|
+
usd?: string | undefined;
|
|
18001
|
+
} | undefined;
|
|
18002
|
+
relay?: {
|
|
18003
|
+
usd?: string | undefined;
|
|
18004
|
+
} | undefined;
|
|
18005
|
+
app?: {
|
|
18006
|
+
usd?: string | undefined;
|
|
18007
|
+
} | undefined;
|
|
18008
|
+
sponsored?: {
|
|
18009
|
+
usd?: string | undefined;
|
|
18010
|
+
} | undefined;
|
|
18011
|
+
} | undefined;
|
|
18012
|
+
actual?: {
|
|
18013
|
+
swap?: {
|
|
18014
|
+
usd?: string | undefined;
|
|
18015
|
+
} | undefined;
|
|
18016
|
+
execution?: {
|
|
18017
|
+
usd?: string | undefined;
|
|
18018
|
+
} | undefined;
|
|
18019
|
+
relay?: {
|
|
18020
|
+
usd?: string | undefined;
|
|
18021
|
+
} | undefined;
|
|
18022
|
+
app?: {
|
|
18023
|
+
usd?: string | undefined;
|
|
18024
|
+
} | undefined;
|
|
18025
|
+
sponsored?: {
|
|
18026
|
+
usd?: string | undefined;
|
|
18027
|
+
} | undefined;
|
|
18028
|
+
} | undefined;
|
|
18029
|
+
} | null | undefined;
|
|
16031
18030
|
paidAppFees?: {
|
|
16032
18031
|
recipient?: string | undefined;
|
|
16033
18032
|
bps?: string | undefined;
|
|
@@ -16195,6 +18194,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
16195
18194
|
status?: "success" | "failure" | undefined;
|
|
16196
18195
|
}[] | undefined;
|
|
16197
18196
|
} | undefined;
|
|
18197
|
+
protocol?: {
|
|
18198
|
+
orderId?: string | undefined;
|
|
18199
|
+
hubType?: "onchain" | undefined;
|
|
18200
|
+
isWithdrawable?: boolean | undefined;
|
|
18201
|
+
solver?: {
|
|
18202
|
+
address?: string | undefined;
|
|
18203
|
+
protocolChainId?: string | undefined;
|
|
18204
|
+
chainId?: number | undefined;
|
|
18205
|
+
} | undefined;
|
|
18206
|
+
deposit?: {
|
|
18207
|
+
origin?: {
|
|
18208
|
+
amount?: string | undefined;
|
|
18209
|
+
chainId?: number | undefined;
|
|
18210
|
+
currency?: string | undefined;
|
|
18211
|
+
depositor?: string | undefined;
|
|
18212
|
+
depository?: string | undefined;
|
|
18213
|
+
onchainId?: string | undefined;
|
|
18214
|
+
transactionId?: string | undefined;
|
|
18215
|
+
} | undefined;
|
|
18216
|
+
relay?: {
|
|
18217
|
+
amount?: string | undefined;
|
|
18218
|
+
chainId?: number | undefined;
|
|
18219
|
+
currency?: string | undefined;
|
|
18220
|
+
hash?: string | undefined;
|
|
18221
|
+
operation?: "mint" | undefined;
|
|
18222
|
+
} | undefined;
|
|
18223
|
+
attestation?: {
|
|
18224
|
+
execution?: {
|
|
18225
|
+
actions?: string[] | undefined;
|
|
18226
|
+
idempotencyKey?: string | undefined;
|
|
18227
|
+
} | undefined;
|
|
18228
|
+
attestations?: {
|
|
18229
|
+
oracleChainId?: string | undefined;
|
|
18230
|
+
oracleContract?: string | undefined;
|
|
18231
|
+
signerAddress?: string | undefined;
|
|
18232
|
+
signature?: string | undefined;
|
|
18233
|
+
}[] | undefined;
|
|
18234
|
+
} | undefined;
|
|
18235
|
+
} | undefined;
|
|
18236
|
+
settlement?: {
|
|
18237
|
+
destination?: {
|
|
18238
|
+
fills?: {
|
|
18239
|
+
chainId?: number | undefined;
|
|
18240
|
+
transactionId?: string | undefined;
|
|
18241
|
+
}[] | undefined;
|
|
18242
|
+
refunds?: {
|
|
18243
|
+
chainId?: number | undefined;
|
|
18244
|
+
transactionId?: string | undefined;
|
|
18245
|
+
}[] | undefined;
|
|
18246
|
+
} | undefined;
|
|
18247
|
+
relay?: {
|
|
18248
|
+
amount?: string | undefined;
|
|
18249
|
+
chainId?: number | undefined;
|
|
18250
|
+
currency?: string | undefined;
|
|
18251
|
+
hash?: string | undefined;
|
|
18252
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
18253
|
+
solver?: string | undefined;
|
|
18254
|
+
} | undefined;
|
|
18255
|
+
attestation?: {
|
|
18256
|
+
execution?: {
|
|
18257
|
+
actions?: string[] | undefined;
|
|
18258
|
+
idempotencyKey?: string | undefined;
|
|
18259
|
+
} | undefined;
|
|
18260
|
+
attestations?: {
|
|
18261
|
+
oracleChainId?: string | undefined;
|
|
18262
|
+
oracleContract?: string | undefined;
|
|
18263
|
+
signerAddress?: string | undefined;
|
|
18264
|
+
signature?: string | undefined;
|
|
18265
|
+
}[] | undefined;
|
|
18266
|
+
} | undefined;
|
|
18267
|
+
} | undefined;
|
|
18268
|
+
} | undefined;
|
|
16198
18269
|
orderData?: unknown;
|
|
16199
18270
|
referrer?: string | undefined;
|
|
16200
18271
|
moonpayId?: string | undefined;
|
|
@@ -16213,6 +18284,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
16213
18284
|
depositAddress?: {
|
|
16214
18285
|
address?: string | undefined;
|
|
16215
18286
|
depositAddressType?: "strict" | "open" | undefined;
|
|
18287
|
+
depositor?: string | null | undefined;
|
|
16216
18288
|
} | null | undefined;
|
|
16217
18289
|
data?: {
|
|
16218
18290
|
slippageTolerance?: string | undefined;
|
|
@@ -16876,6 +18948,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
16876
18948
|
} | undefined;
|
|
16877
18949
|
} | undefined;
|
|
16878
18950
|
} | undefined;
|
|
18951
|
+
expandedPriceImpact?: {
|
|
18952
|
+
quoted?: {
|
|
18953
|
+
swap?: {
|
|
18954
|
+
usd?: string | undefined;
|
|
18955
|
+
} | undefined;
|
|
18956
|
+
execution?: {
|
|
18957
|
+
usd?: string | undefined;
|
|
18958
|
+
} | undefined;
|
|
18959
|
+
relay?: {
|
|
18960
|
+
usd?: string | undefined;
|
|
18961
|
+
} | undefined;
|
|
18962
|
+
app?: {
|
|
18963
|
+
usd?: string | undefined;
|
|
18964
|
+
} | undefined;
|
|
18965
|
+
sponsored?: {
|
|
18966
|
+
usd?: string | undefined;
|
|
18967
|
+
} | undefined;
|
|
18968
|
+
} | undefined;
|
|
18969
|
+
actual?: {
|
|
18970
|
+
swap?: {
|
|
18971
|
+
usd?: string | undefined;
|
|
18972
|
+
} | undefined;
|
|
18973
|
+
execution?: {
|
|
18974
|
+
usd?: string | undefined;
|
|
18975
|
+
} | undefined;
|
|
18976
|
+
relay?: {
|
|
18977
|
+
usd?: string | undefined;
|
|
18978
|
+
} | undefined;
|
|
18979
|
+
app?: {
|
|
18980
|
+
usd?: string | undefined;
|
|
18981
|
+
} | undefined;
|
|
18982
|
+
sponsored?: {
|
|
18983
|
+
usd?: string | undefined;
|
|
18984
|
+
} | undefined;
|
|
18985
|
+
} | undefined;
|
|
18986
|
+
} | null | undefined;
|
|
16879
18987
|
paidAppFees?: {
|
|
16880
18988
|
recipient?: string | undefined;
|
|
16881
18989
|
bps?: string | undefined;
|
|
@@ -17043,6 +19151,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
17043
19151
|
status?: "success" | "failure" | undefined;
|
|
17044
19152
|
}[] | undefined;
|
|
17045
19153
|
} | undefined;
|
|
19154
|
+
protocol?: {
|
|
19155
|
+
orderId?: string | undefined;
|
|
19156
|
+
hubType?: "onchain" | undefined;
|
|
19157
|
+
isWithdrawable?: boolean | undefined;
|
|
19158
|
+
solver?: {
|
|
19159
|
+
address?: string | undefined;
|
|
19160
|
+
protocolChainId?: string | undefined;
|
|
19161
|
+
chainId?: number | undefined;
|
|
19162
|
+
} | undefined;
|
|
19163
|
+
deposit?: {
|
|
19164
|
+
origin?: {
|
|
19165
|
+
amount?: string | undefined;
|
|
19166
|
+
chainId?: number | undefined;
|
|
19167
|
+
currency?: string | undefined;
|
|
19168
|
+
depositor?: string | undefined;
|
|
19169
|
+
depository?: string | undefined;
|
|
19170
|
+
onchainId?: string | undefined;
|
|
19171
|
+
transactionId?: string | undefined;
|
|
19172
|
+
} | undefined;
|
|
19173
|
+
relay?: {
|
|
19174
|
+
amount?: string | undefined;
|
|
19175
|
+
chainId?: number | undefined;
|
|
19176
|
+
currency?: string | undefined;
|
|
19177
|
+
hash?: string | undefined;
|
|
19178
|
+
operation?: "mint" | undefined;
|
|
19179
|
+
} | undefined;
|
|
19180
|
+
attestation?: {
|
|
19181
|
+
execution?: {
|
|
19182
|
+
actions?: string[] | undefined;
|
|
19183
|
+
idempotencyKey?: string | undefined;
|
|
19184
|
+
} | undefined;
|
|
19185
|
+
attestations?: {
|
|
19186
|
+
oracleChainId?: string | undefined;
|
|
19187
|
+
oracleContract?: string | undefined;
|
|
19188
|
+
signerAddress?: string | undefined;
|
|
19189
|
+
signature?: string | undefined;
|
|
19190
|
+
}[] | undefined;
|
|
19191
|
+
} | undefined;
|
|
19192
|
+
} | undefined;
|
|
19193
|
+
settlement?: {
|
|
19194
|
+
destination?: {
|
|
19195
|
+
fills?: {
|
|
19196
|
+
chainId?: number | undefined;
|
|
19197
|
+
transactionId?: string | undefined;
|
|
19198
|
+
}[] | undefined;
|
|
19199
|
+
refunds?: {
|
|
19200
|
+
chainId?: number | undefined;
|
|
19201
|
+
transactionId?: string | undefined;
|
|
19202
|
+
}[] | undefined;
|
|
19203
|
+
} | undefined;
|
|
19204
|
+
relay?: {
|
|
19205
|
+
amount?: string | undefined;
|
|
19206
|
+
chainId?: number | undefined;
|
|
19207
|
+
currency?: string | undefined;
|
|
19208
|
+
hash?: string | undefined;
|
|
19209
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
19210
|
+
solver?: string | undefined;
|
|
19211
|
+
} | undefined;
|
|
19212
|
+
attestation?: {
|
|
19213
|
+
execution?: {
|
|
19214
|
+
actions?: string[] | undefined;
|
|
19215
|
+
idempotencyKey?: string | undefined;
|
|
19216
|
+
} | undefined;
|
|
19217
|
+
attestations?: {
|
|
19218
|
+
oracleChainId?: string | undefined;
|
|
19219
|
+
oracleContract?: string | undefined;
|
|
19220
|
+
signerAddress?: string | undefined;
|
|
19221
|
+
signature?: string | undefined;
|
|
19222
|
+
}[] | undefined;
|
|
19223
|
+
} | undefined;
|
|
19224
|
+
} | undefined;
|
|
19225
|
+
} | undefined;
|
|
17046
19226
|
orderData?: unknown;
|
|
17047
19227
|
referrer?: string | undefined;
|
|
17048
19228
|
moonpayId?: string | undefined;
|
|
@@ -17060,6 +19240,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
17060
19240
|
depositAddress?: {
|
|
17061
19241
|
address?: string | undefined;
|
|
17062
19242
|
depositAddressType?: "strict" | "open" | undefined;
|
|
19243
|
+
depositor?: string | null | undefined;
|
|
17063
19244
|
} | null | undefined;
|
|
17064
19245
|
data?: {
|
|
17065
19246
|
slippageTolerance?: string | undefined;
|
|
@@ -17723,6 +19904,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
17723
19904
|
} | undefined;
|
|
17724
19905
|
} | undefined;
|
|
17725
19906
|
} | undefined;
|
|
19907
|
+
expandedPriceImpact?: {
|
|
19908
|
+
quoted?: {
|
|
19909
|
+
swap?: {
|
|
19910
|
+
usd?: string | undefined;
|
|
19911
|
+
} | undefined;
|
|
19912
|
+
execution?: {
|
|
19913
|
+
usd?: string | undefined;
|
|
19914
|
+
} | undefined;
|
|
19915
|
+
relay?: {
|
|
19916
|
+
usd?: string | undefined;
|
|
19917
|
+
} | undefined;
|
|
19918
|
+
app?: {
|
|
19919
|
+
usd?: string | undefined;
|
|
19920
|
+
} | undefined;
|
|
19921
|
+
sponsored?: {
|
|
19922
|
+
usd?: string | undefined;
|
|
19923
|
+
} | undefined;
|
|
19924
|
+
} | undefined;
|
|
19925
|
+
actual?: {
|
|
19926
|
+
swap?: {
|
|
19927
|
+
usd?: string | undefined;
|
|
19928
|
+
} | undefined;
|
|
19929
|
+
execution?: {
|
|
19930
|
+
usd?: string | undefined;
|
|
19931
|
+
} | undefined;
|
|
19932
|
+
relay?: {
|
|
19933
|
+
usd?: string | undefined;
|
|
19934
|
+
} | undefined;
|
|
19935
|
+
app?: {
|
|
19936
|
+
usd?: string | undefined;
|
|
19937
|
+
} | undefined;
|
|
19938
|
+
sponsored?: {
|
|
19939
|
+
usd?: string | undefined;
|
|
19940
|
+
} | undefined;
|
|
19941
|
+
} | undefined;
|
|
19942
|
+
} | null | undefined;
|
|
17726
19943
|
paidAppFees?: {
|
|
17727
19944
|
recipient?: string | undefined;
|
|
17728
19945
|
bps?: string | undefined;
|
|
@@ -17890,6 +20107,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
17890
20107
|
status?: "success" | "failure" | undefined;
|
|
17891
20108
|
}[] | undefined;
|
|
17892
20109
|
} | undefined;
|
|
20110
|
+
protocol?: {
|
|
20111
|
+
orderId?: string | undefined;
|
|
20112
|
+
hubType?: "onchain" | undefined;
|
|
20113
|
+
isWithdrawable?: boolean | undefined;
|
|
20114
|
+
solver?: {
|
|
20115
|
+
address?: string | undefined;
|
|
20116
|
+
protocolChainId?: string | undefined;
|
|
20117
|
+
chainId?: number | undefined;
|
|
20118
|
+
} | undefined;
|
|
20119
|
+
deposit?: {
|
|
20120
|
+
origin?: {
|
|
20121
|
+
amount?: string | undefined;
|
|
20122
|
+
chainId?: number | undefined;
|
|
20123
|
+
currency?: string | undefined;
|
|
20124
|
+
depositor?: string | undefined;
|
|
20125
|
+
depository?: string | undefined;
|
|
20126
|
+
onchainId?: string | undefined;
|
|
20127
|
+
transactionId?: string | undefined;
|
|
20128
|
+
} | undefined;
|
|
20129
|
+
relay?: {
|
|
20130
|
+
amount?: string | undefined;
|
|
20131
|
+
chainId?: number | undefined;
|
|
20132
|
+
currency?: string | undefined;
|
|
20133
|
+
hash?: string | undefined;
|
|
20134
|
+
operation?: "mint" | undefined;
|
|
20135
|
+
} | undefined;
|
|
20136
|
+
attestation?: {
|
|
20137
|
+
execution?: {
|
|
20138
|
+
actions?: string[] | undefined;
|
|
20139
|
+
idempotencyKey?: string | undefined;
|
|
20140
|
+
} | undefined;
|
|
20141
|
+
attestations?: {
|
|
20142
|
+
oracleChainId?: string | undefined;
|
|
20143
|
+
oracleContract?: string | undefined;
|
|
20144
|
+
signerAddress?: string | undefined;
|
|
20145
|
+
signature?: string | undefined;
|
|
20146
|
+
}[] | undefined;
|
|
20147
|
+
} | undefined;
|
|
20148
|
+
} | undefined;
|
|
20149
|
+
settlement?: {
|
|
20150
|
+
destination?: {
|
|
20151
|
+
fills?: {
|
|
20152
|
+
chainId?: number | undefined;
|
|
20153
|
+
transactionId?: string | undefined;
|
|
20154
|
+
}[] | undefined;
|
|
20155
|
+
refunds?: {
|
|
20156
|
+
chainId?: number | undefined;
|
|
20157
|
+
transactionId?: string | undefined;
|
|
20158
|
+
}[] | undefined;
|
|
20159
|
+
} | undefined;
|
|
20160
|
+
relay?: {
|
|
20161
|
+
amount?: string | undefined;
|
|
20162
|
+
chainId?: number | undefined;
|
|
20163
|
+
currency?: string | undefined;
|
|
20164
|
+
hash?: string | undefined;
|
|
20165
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
20166
|
+
solver?: string | undefined;
|
|
20167
|
+
} | undefined;
|
|
20168
|
+
attestation?: {
|
|
20169
|
+
execution?: {
|
|
20170
|
+
actions?: string[] | undefined;
|
|
20171
|
+
idempotencyKey?: string | undefined;
|
|
20172
|
+
} | undefined;
|
|
20173
|
+
attestations?: {
|
|
20174
|
+
oracleChainId?: string | undefined;
|
|
20175
|
+
oracleContract?: string | undefined;
|
|
20176
|
+
signerAddress?: string | undefined;
|
|
20177
|
+
signature?: string | undefined;
|
|
20178
|
+
}[] | undefined;
|
|
20179
|
+
} | undefined;
|
|
20180
|
+
} | undefined;
|
|
20181
|
+
} | undefined;
|
|
17893
20182
|
orderData?: unknown;
|
|
17894
20183
|
referrer?: string | undefined;
|
|
17895
20184
|
moonpayId?: string | undefined;
|
|
@@ -17915,6 +20204,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
17915
20204
|
depositAddress?: {
|
|
17916
20205
|
address?: string | undefined;
|
|
17917
20206
|
depositAddressType?: "strict" | "open" | undefined;
|
|
20207
|
+
depositor?: string | null | undefined;
|
|
17918
20208
|
} | null | undefined;
|
|
17919
20209
|
data?: {
|
|
17920
20210
|
slippageTolerance?: string | undefined;
|
|
@@ -18578,6 +20868,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
18578
20868
|
} | undefined;
|
|
18579
20869
|
} | undefined;
|
|
18580
20870
|
} | undefined;
|
|
20871
|
+
expandedPriceImpact?: {
|
|
20872
|
+
quoted?: {
|
|
20873
|
+
swap?: {
|
|
20874
|
+
usd?: string | undefined;
|
|
20875
|
+
} | undefined;
|
|
20876
|
+
execution?: {
|
|
20877
|
+
usd?: string | undefined;
|
|
20878
|
+
} | undefined;
|
|
20879
|
+
relay?: {
|
|
20880
|
+
usd?: string | undefined;
|
|
20881
|
+
} | undefined;
|
|
20882
|
+
app?: {
|
|
20883
|
+
usd?: string | undefined;
|
|
20884
|
+
} | undefined;
|
|
20885
|
+
sponsored?: {
|
|
20886
|
+
usd?: string | undefined;
|
|
20887
|
+
} | undefined;
|
|
20888
|
+
} | undefined;
|
|
20889
|
+
actual?: {
|
|
20890
|
+
swap?: {
|
|
20891
|
+
usd?: string | undefined;
|
|
20892
|
+
} | undefined;
|
|
20893
|
+
execution?: {
|
|
20894
|
+
usd?: string | undefined;
|
|
20895
|
+
} | undefined;
|
|
20896
|
+
relay?: {
|
|
20897
|
+
usd?: string | undefined;
|
|
20898
|
+
} | undefined;
|
|
20899
|
+
app?: {
|
|
20900
|
+
usd?: string | undefined;
|
|
20901
|
+
} | undefined;
|
|
20902
|
+
sponsored?: {
|
|
20903
|
+
usd?: string | undefined;
|
|
20904
|
+
} | undefined;
|
|
20905
|
+
} | undefined;
|
|
20906
|
+
} | null | undefined;
|
|
18581
20907
|
paidAppFees?: {
|
|
18582
20908
|
recipient?: string | undefined;
|
|
18583
20909
|
bps?: string | undefined;
|
|
@@ -18745,6 +21071,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
18745
21071
|
status?: "success" | "failure" | undefined;
|
|
18746
21072
|
}[] | undefined;
|
|
18747
21073
|
} | undefined;
|
|
21074
|
+
protocol?: {
|
|
21075
|
+
orderId?: string | undefined;
|
|
21076
|
+
hubType?: "onchain" | undefined;
|
|
21077
|
+
isWithdrawable?: boolean | undefined;
|
|
21078
|
+
solver?: {
|
|
21079
|
+
address?: string | undefined;
|
|
21080
|
+
protocolChainId?: string | undefined;
|
|
21081
|
+
chainId?: number | undefined;
|
|
21082
|
+
} | undefined;
|
|
21083
|
+
deposit?: {
|
|
21084
|
+
origin?: {
|
|
21085
|
+
amount?: string | undefined;
|
|
21086
|
+
chainId?: number | undefined;
|
|
21087
|
+
currency?: string | undefined;
|
|
21088
|
+
depositor?: string | undefined;
|
|
21089
|
+
depository?: string | undefined;
|
|
21090
|
+
onchainId?: string | undefined;
|
|
21091
|
+
transactionId?: string | undefined;
|
|
21092
|
+
} | undefined;
|
|
21093
|
+
relay?: {
|
|
21094
|
+
amount?: string | undefined;
|
|
21095
|
+
chainId?: number | undefined;
|
|
21096
|
+
currency?: string | undefined;
|
|
21097
|
+
hash?: string | undefined;
|
|
21098
|
+
operation?: "mint" | undefined;
|
|
21099
|
+
} | undefined;
|
|
21100
|
+
attestation?: {
|
|
21101
|
+
execution?: {
|
|
21102
|
+
actions?: string[] | undefined;
|
|
21103
|
+
idempotencyKey?: string | undefined;
|
|
21104
|
+
} | undefined;
|
|
21105
|
+
attestations?: {
|
|
21106
|
+
oracleChainId?: string | undefined;
|
|
21107
|
+
oracleContract?: string | undefined;
|
|
21108
|
+
signerAddress?: string | undefined;
|
|
21109
|
+
signature?: string | undefined;
|
|
21110
|
+
}[] | undefined;
|
|
21111
|
+
} | undefined;
|
|
21112
|
+
} | undefined;
|
|
21113
|
+
settlement?: {
|
|
21114
|
+
destination?: {
|
|
21115
|
+
fills?: {
|
|
21116
|
+
chainId?: number | undefined;
|
|
21117
|
+
transactionId?: string | undefined;
|
|
21118
|
+
}[] | undefined;
|
|
21119
|
+
refunds?: {
|
|
21120
|
+
chainId?: number | undefined;
|
|
21121
|
+
transactionId?: string | undefined;
|
|
21122
|
+
}[] | undefined;
|
|
21123
|
+
} | undefined;
|
|
21124
|
+
relay?: {
|
|
21125
|
+
amount?: string | undefined;
|
|
21126
|
+
chainId?: number | undefined;
|
|
21127
|
+
currency?: string | undefined;
|
|
21128
|
+
hash?: string | undefined;
|
|
21129
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
21130
|
+
solver?: string | undefined;
|
|
21131
|
+
} | undefined;
|
|
21132
|
+
attestation?: {
|
|
21133
|
+
execution?: {
|
|
21134
|
+
actions?: string[] | undefined;
|
|
21135
|
+
idempotencyKey?: string | undefined;
|
|
21136
|
+
} | undefined;
|
|
21137
|
+
attestations?: {
|
|
21138
|
+
oracleChainId?: string | undefined;
|
|
21139
|
+
oracleContract?: string | undefined;
|
|
21140
|
+
signerAddress?: string | undefined;
|
|
21141
|
+
signature?: string | undefined;
|
|
21142
|
+
}[] | undefined;
|
|
21143
|
+
} | undefined;
|
|
21144
|
+
} | undefined;
|
|
21145
|
+
} | undefined;
|
|
18748
21146
|
orderData?: unknown;
|
|
18749
21147
|
referrer?: string | undefined;
|
|
18750
21148
|
moonpayId?: string | undefined;
|
|
@@ -18762,6 +21160,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
18762
21160
|
depositAddress?: {
|
|
18763
21161
|
address?: string | undefined;
|
|
18764
21162
|
depositAddressType?: "strict" | "open" | undefined;
|
|
21163
|
+
depositor?: string | null | undefined;
|
|
18765
21164
|
} | null | undefined;
|
|
18766
21165
|
data?: {
|
|
18767
21166
|
slippageTolerance?: string | undefined;
|
|
@@ -19425,6 +21824,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
19425
21824
|
} | undefined;
|
|
19426
21825
|
} | undefined;
|
|
19427
21826
|
} | undefined;
|
|
21827
|
+
expandedPriceImpact?: {
|
|
21828
|
+
quoted?: {
|
|
21829
|
+
swap?: {
|
|
21830
|
+
usd?: string | undefined;
|
|
21831
|
+
} | undefined;
|
|
21832
|
+
execution?: {
|
|
21833
|
+
usd?: string | undefined;
|
|
21834
|
+
} | undefined;
|
|
21835
|
+
relay?: {
|
|
21836
|
+
usd?: string | undefined;
|
|
21837
|
+
} | undefined;
|
|
21838
|
+
app?: {
|
|
21839
|
+
usd?: string | undefined;
|
|
21840
|
+
} | undefined;
|
|
21841
|
+
sponsored?: {
|
|
21842
|
+
usd?: string | undefined;
|
|
21843
|
+
} | undefined;
|
|
21844
|
+
} | undefined;
|
|
21845
|
+
actual?: {
|
|
21846
|
+
swap?: {
|
|
21847
|
+
usd?: string | undefined;
|
|
21848
|
+
} | undefined;
|
|
21849
|
+
execution?: {
|
|
21850
|
+
usd?: string | undefined;
|
|
21851
|
+
} | undefined;
|
|
21852
|
+
relay?: {
|
|
21853
|
+
usd?: string | undefined;
|
|
21854
|
+
} | undefined;
|
|
21855
|
+
app?: {
|
|
21856
|
+
usd?: string | undefined;
|
|
21857
|
+
} | undefined;
|
|
21858
|
+
sponsored?: {
|
|
21859
|
+
usd?: string | undefined;
|
|
21860
|
+
} | undefined;
|
|
21861
|
+
} | undefined;
|
|
21862
|
+
} | null | undefined;
|
|
19428
21863
|
paidAppFees?: {
|
|
19429
21864
|
recipient?: string | undefined;
|
|
19430
21865
|
bps?: string | undefined;
|
|
@@ -19592,6 +22027,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
19592
22027
|
status?: "success" | "failure" | undefined;
|
|
19593
22028
|
}[] | undefined;
|
|
19594
22029
|
} | undefined;
|
|
22030
|
+
protocol?: {
|
|
22031
|
+
orderId?: string | undefined;
|
|
22032
|
+
hubType?: "onchain" | undefined;
|
|
22033
|
+
isWithdrawable?: boolean | undefined;
|
|
22034
|
+
solver?: {
|
|
22035
|
+
address?: string | undefined;
|
|
22036
|
+
protocolChainId?: string | undefined;
|
|
22037
|
+
chainId?: number | undefined;
|
|
22038
|
+
} | undefined;
|
|
22039
|
+
deposit?: {
|
|
22040
|
+
origin?: {
|
|
22041
|
+
amount?: string | undefined;
|
|
22042
|
+
chainId?: number | undefined;
|
|
22043
|
+
currency?: string | undefined;
|
|
22044
|
+
depositor?: string | undefined;
|
|
22045
|
+
depository?: string | undefined;
|
|
22046
|
+
onchainId?: string | undefined;
|
|
22047
|
+
transactionId?: string | undefined;
|
|
22048
|
+
} | undefined;
|
|
22049
|
+
relay?: {
|
|
22050
|
+
amount?: string | undefined;
|
|
22051
|
+
chainId?: number | undefined;
|
|
22052
|
+
currency?: string | undefined;
|
|
22053
|
+
hash?: string | undefined;
|
|
22054
|
+
operation?: "mint" | undefined;
|
|
22055
|
+
} | undefined;
|
|
22056
|
+
attestation?: {
|
|
22057
|
+
execution?: {
|
|
22058
|
+
actions?: string[] | undefined;
|
|
22059
|
+
idempotencyKey?: string | undefined;
|
|
22060
|
+
} | undefined;
|
|
22061
|
+
attestations?: {
|
|
22062
|
+
oracleChainId?: string | undefined;
|
|
22063
|
+
oracleContract?: string | undefined;
|
|
22064
|
+
signerAddress?: string | undefined;
|
|
22065
|
+
signature?: string | undefined;
|
|
22066
|
+
}[] | undefined;
|
|
22067
|
+
} | undefined;
|
|
22068
|
+
} | undefined;
|
|
22069
|
+
settlement?: {
|
|
22070
|
+
destination?: {
|
|
22071
|
+
fills?: {
|
|
22072
|
+
chainId?: number | undefined;
|
|
22073
|
+
transactionId?: string | undefined;
|
|
22074
|
+
}[] | undefined;
|
|
22075
|
+
refunds?: {
|
|
22076
|
+
chainId?: number | undefined;
|
|
22077
|
+
transactionId?: string | undefined;
|
|
22078
|
+
}[] | undefined;
|
|
22079
|
+
} | undefined;
|
|
22080
|
+
relay?: {
|
|
22081
|
+
amount?: string | undefined;
|
|
22082
|
+
chainId?: number | undefined;
|
|
22083
|
+
currency?: string | undefined;
|
|
22084
|
+
hash?: string | undefined;
|
|
22085
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
22086
|
+
solver?: string | undefined;
|
|
22087
|
+
} | undefined;
|
|
22088
|
+
attestation?: {
|
|
22089
|
+
execution?: {
|
|
22090
|
+
actions?: string[] | undefined;
|
|
22091
|
+
idempotencyKey?: string | undefined;
|
|
22092
|
+
} | undefined;
|
|
22093
|
+
attestations?: {
|
|
22094
|
+
oracleChainId?: string | undefined;
|
|
22095
|
+
oracleContract?: string | undefined;
|
|
22096
|
+
signerAddress?: string | undefined;
|
|
22097
|
+
signature?: string | undefined;
|
|
22098
|
+
}[] | undefined;
|
|
22099
|
+
} | undefined;
|
|
22100
|
+
} | undefined;
|
|
22101
|
+
} | undefined;
|
|
19595
22102
|
orderData?: unknown;
|
|
19596
22103
|
referrer?: string | undefined;
|
|
19597
22104
|
moonpayId?: string | undefined;
|
|
@@ -19626,6 +22133,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
19626
22133
|
depositAddress?: {
|
|
19627
22134
|
address?: string | undefined;
|
|
19628
22135
|
depositAddressType?: "strict" | "open" | undefined;
|
|
22136
|
+
depositor?: string | null | undefined;
|
|
19629
22137
|
} | null | undefined;
|
|
19630
22138
|
data?: {
|
|
19631
22139
|
slippageTolerance?: string | undefined;
|
|
@@ -20289,6 +22797,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
20289
22797
|
} | undefined;
|
|
20290
22798
|
} | undefined;
|
|
20291
22799
|
} | undefined;
|
|
22800
|
+
expandedPriceImpact?: {
|
|
22801
|
+
quoted?: {
|
|
22802
|
+
swap?: {
|
|
22803
|
+
usd?: string | undefined;
|
|
22804
|
+
} | undefined;
|
|
22805
|
+
execution?: {
|
|
22806
|
+
usd?: string | undefined;
|
|
22807
|
+
} | undefined;
|
|
22808
|
+
relay?: {
|
|
22809
|
+
usd?: string | undefined;
|
|
22810
|
+
} | undefined;
|
|
22811
|
+
app?: {
|
|
22812
|
+
usd?: string | undefined;
|
|
22813
|
+
} | undefined;
|
|
22814
|
+
sponsored?: {
|
|
22815
|
+
usd?: string | undefined;
|
|
22816
|
+
} | undefined;
|
|
22817
|
+
} | undefined;
|
|
22818
|
+
actual?: {
|
|
22819
|
+
swap?: {
|
|
22820
|
+
usd?: string | undefined;
|
|
22821
|
+
} | undefined;
|
|
22822
|
+
execution?: {
|
|
22823
|
+
usd?: string | undefined;
|
|
22824
|
+
} | undefined;
|
|
22825
|
+
relay?: {
|
|
22826
|
+
usd?: string | undefined;
|
|
22827
|
+
} | undefined;
|
|
22828
|
+
app?: {
|
|
22829
|
+
usd?: string | undefined;
|
|
22830
|
+
} | undefined;
|
|
22831
|
+
sponsored?: {
|
|
22832
|
+
usd?: string | undefined;
|
|
22833
|
+
} | undefined;
|
|
22834
|
+
} | undefined;
|
|
22835
|
+
} | null | undefined;
|
|
20292
22836
|
paidAppFees?: {
|
|
20293
22837
|
recipient?: string | undefined;
|
|
20294
22838
|
bps?: string | undefined;
|
|
@@ -20456,6 +23000,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
20456
23000
|
status?: "success" | "failure" | undefined;
|
|
20457
23001
|
}[] | undefined;
|
|
20458
23002
|
} | undefined;
|
|
23003
|
+
protocol?: {
|
|
23004
|
+
orderId?: string | undefined;
|
|
23005
|
+
hubType?: "onchain" | undefined;
|
|
23006
|
+
isWithdrawable?: boolean | undefined;
|
|
23007
|
+
solver?: {
|
|
23008
|
+
address?: string | undefined;
|
|
23009
|
+
protocolChainId?: string | undefined;
|
|
23010
|
+
chainId?: number | undefined;
|
|
23011
|
+
} | undefined;
|
|
23012
|
+
deposit?: {
|
|
23013
|
+
origin?: {
|
|
23014
|
+
amount?: string | undefined;
|
|
23015
|
+
chainId?: number | undefined;
|
|
23016
|
+
currency?: string | undefined;
|
|
23017
|
+
depositor?: string | undefined;
|
|
23018
|
+
depository?: string | undefined;
|
|
23019
|
+
onchainId?: string | undefined;
|
|
23020
|
+
transactionId?: string | undefined;
|
|
23021
|
+
} | undefined;
|
|
23022
|
+
relay?: {
|
|
23023
|
+
amount?: string | undefined;
|
|
23024
|
+
chainId?: number | undefined;
|
|
23025
|
+
currency?: string | undefined;
|
|
23026
|
+
hash?: string | undefined;
|
|
23027
|
+
operation?: "mint" | undefined;
|
|
23028
|
+
} | undefined;
|
|
23029
|
+
attestation?: {
|
|
23030
|
+
execution?: {
|
|
23031
|
+
actions?: string[] | undefined;
|
|
23032
|
+
idempotencyKey?: string | undefined;
|
|
23033
|
+
} | undefined;
|
|
23034
|
+
attestations?: {
|
|
23035
|
+
oracleChainId?: string | undefined;
|
|
23036
|
+
oracleContract?: string | undefined;
|
|
23037
|
+
signerAddress?: string | undefined;
|
|
23038
|
+
signature?: string | undefined;
|
|
23039
|
+
}[] | undefined;
|
|
23040
|
+
} | undefined;
|
|
23041
|
+
} | undefined;
|
|
23042
|
+
settlement?: {
|
|
23043
|
+
destination?: {
|
|
23044
|
+
fills?: {
|
|
23045
|
+
chainId?: number | undefined;
|
|
23046
|
+
transactionId?: string | undefined;
|
|
23047
|
+
}[] | undefined;
|
|
23048
|
+
refunds?: {
|
|
23049
|
+
chainId?: number | undefined;
|
|
23050
|
+
transactionId?: string | undefined;
|
|
23051
|
+
}[] | undefined;
|
|
23052
|
+
} | undefined;
|
|
23053
|
+
relay?: {
|
|
23054
|
+
amount?: string | undefined;
|
|
23055
|
+
chainId?: number | undefined;
|
|
23056
|
+
currency?: string | undefined;
|
|
23057
|
+
hash?: string | undefined;
|
|
23058
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
23059
|
+
solver?: string | undefined;
|
|
23060
|
+
} | undefined;
|
|
23061
|
+
attestation?: {
|
|
23062
|
+
execution?: {
|
|
23063
|
+
actions?: string[] | undefined;
|
|
23064
|
+
idempotencyKey?: string | undefined;
|
|
23065
|
+
} | undefined;
|
|
23066
|
+
attestations?: {
|
|
23067
|
+
oracleChainId?: string | undefined;
|
|
23068
|
+
oracleContract?: string | undefined;
|
|
23069
|
+
signerAddress?: string | undefined;
|
|
23070
|
+
signature?: string | undefined;
|
|
23071
|
+
}[] | undefined;
|
|
23072
|
+
} | undefined;
|
|
23073
|
+
} | undefined;
|
|
23074
|
+
} | undefined;
|
|
20459
23075
|
orderData?: unknown;
|
|
20460
23076
|
referrer?: string | undefined;
|
|
20461
23077
|
moonpayId?: string | undefined;
|
|
@@ -20474,6 +23090,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
20474
23090
|
depositAddress?: {
|
|
20475
23091
|
address?: string | undefined;
|
|
20476
23092
|
depositAddressType?: "strict" | "open" | undefined;
|
|
23093
|
+
depositor?: string | null | undefined;
|
|
20477
23094
|
} | null | undefined;
|
|
20478
23095
|
data?: {
|
|
20479
23096
|
slippageTolerance?: string | undefined;
|
|
@@ -21137,6 +23754,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
21137
23754
|
} | undefined;
|
|
21138
23755
|
} | undefined;
|
|
21139
23756
|
} | undefined;
|
|
23757
|
+
expandedPriceImpact?: {
|
|
23758
|
+
quoted?: {
|
|
23759
|
+
swap?: {
|
|
23760
|
+
usd?: string | undefined;
|
|
23761
|
+
} | undefined;
|
|
23762
|
+
execution?: {
|
|
23763
|
+
usd?: string | undefined;
|
|
23764
|
+
} | undefined;
|
|
23765
|
+
relay?: {
|
|
23766
|
+
usd?: string | undefined;
|
|
23767
|
+
} | undefined;
|
|
23768
|
+
app?: {
|
|
23769
|
+
usd?: string | undefined;
|
|
23770
|
+
} | undefined;
|
|
23771
|
+
sponsored?: {
|
|
23772
|
+
usd?: string | undefined;
|
|
23773
|
+
} | undefined;
|
|
23774
|
+
} | undefined;
|
|
23775
|
+
actual?: {
|
|
23776
|
+
swap?: {
|
|
23777
|
+
usd?: string | undefined;
|
|
23778
|
+
} | undefined;
|
|
23779
|
+
execution?: {
|
|
23780
|
+
usd?: string | undefined;
|
|
23781
|
+
} | undefined;
|
|
23782
|
+
relay?: {
|
|
23783
|
+
usd?: string | undefined;
|
|
23784
|
+
} | undefined;
|
|
23785
|
+
app?: {
|
|
23786
|
+
usd?: string | undefined;
|
|
23787
|
+
} | undefined;
|
|
23788
|
+
sponsored?: {
|
|
23789
|
+
usd?: string | undefined;
|
|
23790
|
+
} | undefined;
|
|
23791
|
+
} | undefined;
|
|
23792
|
+
} | null | undefined;
|
|
21140
23793
|
paidAppFees?: {
|
|
21141
23794
|
recipient?: string | undefined;
|
|
21142
23795
|
bps?: string | undefined;
|
|
@@ -21304,6 +23957,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
21304
23957
|
status?: "success" | "failure" | undefined;
|
|
21305
23958
|
}[] | undefined;
|
|
21306
23959
|
} | undefined;
|
|
23960
|
+
protocol?: {
|
|
23961
|
+
orderId?: string | undefined;
|
|
23962
|
+
hubType?: "onchain" | undefined;
|
|
23963
|
+
isWithdrawable?: boolean | undefined;
|
|
23964
|
+
solver?: {
|
|
23965
|
+
address?: string | undefined;
|
|
23966
|
+
protocolChainId?: string | undefined;
|
|
23967
|
+
chainId?: number | undefined;
|
|
23968
|
+
} | undefined;
|
|
23969
|
+
deposit?: {
|
|
23970
|
+
origin?: {
|
|
23971
|
+
amount?: string | undefined;
|
|
23972
|
+
chainId?: number | undefined;
|
|
23973
|
+
currency?: string | undefined;
|
|
23974
|
+
depositor?: string | undefined;
|
|
23975
|
+
depository?: string | undefined;
|
|
23976
|
+
onchainId?: string | undefined;
|
|
23977
|
+
transactionId?: string | undefined;
|
|
23978
|
+
} | undefined;
|
|
23979
|
+
relay?: {
|
|
23980
|
+
amount?: string | undefined;
|
|
23981
|
+
chainId?: number | undefined;
|
|
23982
|
+
currency?: string | undefined;
|
|
23983
|
+
hash?: string | undefined;
|
|
23984
|
+
operation?: "mint" | undefined;
|
|
23985
|
+
} | undefined;
|
|
23986
|
+
attestation?: {
|
|
23987
|
+
execution?: {
|
|
23988
|
+
actions?: string[] | undefined;
|
|
23989
|
+
idempotencyKey?: string | undefined;
|
|
23990
|
+
} | undefined;
|
|
23991
|
+
attestations?: {
|
|
23992
|
+
oracleChainId?: string | undefined;
|
|
23993
|
+
oracleContract?: string | undefined;
|
|
23994
|
+
signerAddress?: string | undefined;
|
|
23995
|
+
signature?: string | undefined;
|
|
23996
|
+
}[] | undefined;
|
|
23997
|
+
} | undefined;
|
|
23998
|
+
} | undefined;
|
|
23999
|
+
settlement?: {
|
|
24000
|
+
destination?: {
|
|
24001
|
+
fills?: {
|
|
24002
|
+
chainId?: number | undefined;
|
|
24003
|
+
transactionId?: string | undefined;
|
|
24004
|
+
}[] | undefined;
|
|
24005
|
+
refunds?: {
|
|
24006
|
+
chainId?: number | undefined;
|
|
24007
|
+
transactionId?: string | undefined;
|
|
24008
|
+
}[] | undefined;
|
|
24009
|
+
} | undefined;
|
|
24010
|
+
relay?: {
|
|
24011
|
+
amount?: string | undefined;
|
|
24012
|
+
chainId?: number | undefined;
|
|
24013
|
+
currency?: string | undefined;
|
|
24014
|
+
hash?: string | undefined;
|
|
24015
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
24016
|
+
solver?: string | undefined;
|
|
24017
|
+
} | undefined;
|
|
24018
|
+
attestation?: {
|
|
24019
|
+
execution?: {
|
|
24020
|
+
actions?: string[] | undefined;
|
|
24021
|
+
idempotencyKey?: string | undefined;
|
|
24022
|
+
} | undefined;
|
|
24023
|
+
attestations?: {
|
|
24024
|
+
oracleChainId?: string | undefined;
|
|
24025
|
+
oracleContract?: string | undefined;
|
|
24026
|
+
signerAddress?: string | undefined;
|
|
24027
|
+
signature?: string | undefined;
|
|
24028
|
+
}[] | undefined;
|
|
24029
|
+
} | undefined;
|
|
24030
|
+
} | undefined;
|
|
24031
|
+
} | undefined;
|
|
21307
24032
|
orderData?: unknown;
|
|
21308
24033
|
referrer?: string | undefined;
|
|
21309
24034
|
moonpayId?: string | undefined;
|
|
@@ -21321,6 +24046,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
21321
24046
|
depositAddress?: {
|
|
21322
24047
|
address?: string | undefined;
|
|
21323
24048
|
depositAddressType?: "strict" | "open" | undefined;
|
|
24049
|
+
depositor?: string | null | undefined;
|
|
21324
24050
|
} | null | undefined;
|
|
21325
24051
|
data?: {
|
|
21326
24052
|
slippageTolerance?: string | undefined;
|
|
@@ -21984,6 +24710,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
21984
24710
|
} | undefined;
|
|
21985
24711
|
} | undefined;
|
|
21986
24712
|
} | undefined;
|
|
24713
|
+
expandedPriceImpact?: {
|
|
24714
|
+
quoted?: {
|
|
24715
|
+
swap?: {
|
|
24716
|
+
usd?: string | undefined;
|
|
24717
|
+
} | undefined;
|
|
24718
|
+
execution?: {
|
|
24719
|
+
usd?: string | undefined;
|
|
24720
|
+
} | undefined;
|
|
24721
|
+
relay?: {
|
|
24722
|
+
usd?: string | undefined;
|
|
24723
|
+
} | undefined;
|
|
24724
|
+
app?: {
|
|
24725
|
+
usd?: string | undefined;
|
|
24726
|
+
} | undefined;
|
|
24727
|
+
sponsored?: {
|
|
24728
|
+
usd?: string | undefined;
|
|
24729
|
+
} | undefined;
|
|
24730
|
+
} | undefined;
|
|
24731
|
+
actual?: {
|
|
24732
|
+
swap?: {
|
|
24733
|
+
usd?: string | undefined;
|
|
24734
|
+
} | undefined;
|
|
24735
|
+
execution?: {
|
|
24736
|
+
usd?: string | undefined;
|
|
24737
|
+
} | undefined;
|
|
24738
|
+
relay?: {
|
|
24739
|
+
usd?: string | undefined;
|
|
24740
|
+
} | undefined;
|
|
24741
|
+
app?: {
|
|
24742
|
+
usd?: string | undefined;
|
|
24743
|
+
} | undefined;
|
|
24744
|
+
sponsored?: {
|
|
24745
|
+
usd?: string | undefined;
|
|
24746
|
+
} | undefined;
|
|
24747
|
+
} | undefined;
|
|
24748
|
+
} | null | undefined;
|
|
21987
24749
|
paidAppFees?: {
|
|
21988
24750
|
recipient?: string | undefined;
|
|
21989
24751
|
bps?: string | undefined;
|
|
@@ -22151,6 +24913,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
22151
24913
|
status?: "success" | "failure" | undefined;
|
|
22152
24914
|
}[] | undefined;
|
|
22153
24915
|
} | undefined;
|
|
24916
|
+
protocol?: {
|
|
24917
|
+
orderId?: string | undefined;
|
|
24918
|
+
hubType?: "onchain" | undefined;
|
|
24919
|
+
isWithdrawable?: boolean | undefined;
|
|
24920
|
+
solver?: {
|
|
24921
|
+
address?: string | undefined;
|
|
24922
|
+
protocolChainId?: string | undefined;
|
|
24923
|
+
chainId?: number | undefined;
|
|
24924
|
+
} | undefined;
|
|
24925
|
+
deposit?: {
|
|
24926
|
+
origin?: {
|
|
24927
|
+
amount?: string | undefined;
|
|
24928
|
+
chainId?: number | undefined;
|
|
24929
|
+
currency?: string | undefined;
|
|
24930
|
+
depositor?: string | undefined;
|
|
24931
|
+
depository?: string | undefined;
|
|
24932
|
+
onchainId?: string | undefined;
|
|
24933
|
+
transactionId?: string | undefined;
|
|
24934
|
+
} | undefined;
|
|
24935
|
+
relay?: {
|
|
24936
|
+
amount?: string | undefined;
|
|
24937
|
+
chainId?: number | undefined;
|
|
24938
|
+
currency?: string | undefined;
|
|
24939
|
+
hash?: string | undefined;
|
|
24940
|
+
operation?: "mint" | undefined;
|
|
24941
|
+
} | undefined;
|
|
24942
|
+
attestation?: {
|
|
24943
|
+
execution?: {
|
|
24944
|
+
actions?: string[] | undefined;
|
|
24945
|
+
idempotencyKey?: string | undefined;
|
|
24946
|
+
} | undefined;
|
|
24947
|
+
attestations?: {
|
|
24948
|
+
oracleChainId?: string | undefined;
|
|
24949
|
+
oracleContract?: string | undefined;
|
|
24950
|
+
signerAddress?: string | undefined;
|
|
24951
|
+
signature?: string | undefined;
|
|
24952
|
+
}[] | undefined;
|
|
24953
|
+
} | undefined;
|
|
24954
|
+
} | undefined;
|
|
24955
|
+
settlement?: {
|
|
24956
|
+
destination?: {
|
|
24957
|
+
fills?: {
|
|
24958
|
+
chainId?: number | undefined;
|
|
24959
|
+
transactionId?: string | undefined;
|
|
24960
|
+
}[] | undefined;
|
|
24961
|
+
refunds?: {
|
|
24962
|
+
chainId?: number | undefined;
|
|
24963
|
+
transactionId?: string | undefined;
|
|
24964
|
+
}[] | undefined;
|
|
24965
|
+
} | undefined;
|
|
24966
|
+
relay?: {
|
|
24967
|
+
amount?: string | undefined;
|
|
24968
|
+
chainId?: number | undefined;
|
|
24969
|
+
currency?: string | undefined;
|
|
24970
|
+
hash?: string | undefined;
|
|
24971
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
24972
|
+
solver?: string | undefined;
|
|
24973
|
+
} | undefined;
|
|
24974
|
+
attestation?: {
|
|
24975
|
+
execution?: {
|
|
24976
|
+
actions?: string[] | undefined;
|
|
24977
|
+
idempotencyKey?: string | undefined;
|
|
24978
|
+
} | undefined;
|
|
24979
|
+
attestations?: {
|
|
24980
|
+
oracleChainId?: string | undefined;
|
|
24981
|
+
oracleContract?: string | undefined;
|
|
24982
|
+
signerAddress?: string | undefined;
|
|
24983
|
+
signature?: string | undefined;
|
|
24984
|
+
}[] | undefined;
|
|
24985
|
+
} | undefined;
|
|
24986
|
+
} | undefined;
|
|
24987
|
+
} | undefined;
|
|
22154
24988
|
orderData?: unknown;
|
|
22155
24989
|
referrer?: string | undefined;
|
|
22156
24990
|
moonpayId?: string | undefined;
|
|
@@ -22177,6 +25011,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
22177
25011
|
depositAddress?: {
|
|
22178
25012
|
address?: string | undefined;
|
|
22179
25013
|
depositAddressType?: "strict" | "open" | undefined;
|
|
25014
|
+
depositor?: string | null | undefined;
|
|
22180
25015
|
} | null | undefined;
|
|
22181
25016
|
data?: {
|
|
22182
25017
|
slippageTolerance?: string | undefined;
|
|
@@ -22840,6 +25675,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
22840
25675
|
} | undefined;
|
|
22841
25676
|
} | undefined;
|
|
22842
25677
|
} | undefined;
|
|
25678
|
+
expandedPriceImpact?: {
|
|
25679
|
+
quoted?: {
|
|
25680
|
+
swap?: {
|
|
25681
|
+
usd?: string | undefined;
|
|
25682
|
+
} | undefined;
|
|
25683
|
+
execution?: {
|
|
25684
|
+
usd?: string | undefined;
|
|
25685
|
+
} | undefined;
|
|
25686
|
+
relay?: {
|
|
25687
|
+
usd?: string | undefined;
|
|
25688
|
+
} | undefined;
|
|
25689
|
+
app?: {
|
|
25690
|
+
usd?: string | undefined;
|
|
25691
|
+
} | undefined;
|
|
25692
|
+
sponsored?: {
|
|
25693
|
+
usd?: string | undefined;
|
|
25694
|
+
} | undefined;
|
|
25695
|
+
} | undefined;
|
|
25696
|
+
actual?: {
|
|
25697
|
+
swap?: {
|
|
25698
|
+
usd?: string | undefined;
|
|
25699
|
+
} | undefined;
|
|
25700
|
+
execution?: {
|
|
25701
|
+
usd?: string | undefined;
|
|
25702
|
+
} | undefined;
|
|
25703
|
+
relay?: {
|
|
25704
|
+
usd?: string | undefined;
|
|
25705
|
+
} | undefined;
|
|
25706
|
+
app?: {
|
|
25707
|
+
usd?: string | undefined;
|
|
25708
|
+
} | undefined;
|
|
25709
|
+
sponsored?: {
|
|
25710
|
+
usd?: string | undefined;
|
|
25711
|
+
} | undefined;
|
|
25712
|
+
} | undefined;
|
|
25713
|
+
} | null | undefined;
|
|
22843
25714
|
paidAppFees?: {
|
|
22844
25715
|
recipient?: string | undefined;
|
|
22845
25716
|
bps?: string | undefined;
|
|
@@ -23007,6 +25878,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
23007
25878
|
status?: "success" | "failure" | undefined;
|
|
23008
25879
|
}[] | undefined;
|
|
23009
25880
|
} | undefined;
|
|
25881
|
+
protocol?: {
|
|
25882
|
+
orderId?: string | undefined;
|
|
25883
|
+
hubType?: "onchain" | undefined;
|
|
25884
|
+
isWithdrawable?: boolean | undefined;
|
|
25885
|
+
solver?: {
|
|
25886
|
+
address?: string | undefined;
|
|
25887
|
+
protocolChainId?: string | undefined;
|
|
25888
|
+
chainId?: number | undefined;
|
|
25889
|
+
} | undefined;
|
|
25890
|
+
deposit?: {
|
|
25891
|
+
origin?: {
|
|
25892
|
+
amount?: string | undefined;
|
|
25893
|
+
chainId?: number | undefined;
|
|
25894
|
+
currency?: string | undefined;
|
|
25895
|
+
depositor?: string | undefined;
|
|
25896
|
+
depository?: string | undefined;
|
|
25897
|
+
onchainId?: string | undefined;
|
|
25898
|
+
transactionId?: string | undefined;
|
|
25899
|
+
} | undefined;
|
|
25900
|
+
relay?: {
|
|
25901
|
+
amount?: string | undefined;
|
|
25902
|
+
chainId?: number | undefined;
|
|
25903
|
+
currency?: string | undefined;
|
|
25904
|
+
hash?: string | undefined;
|
|
25905
|
+
operation?: "mint" | undefined;
|
|
25906
|
+
} | undefined;
|
|
25907
|
+
attestation?: {
|
|
25908
|
+
execution?: {
|
|
25909
|
+
actions?: string[] | undefined;
|
|
25910
|
+
idempotencyKey?: string | undefined;
|
|
25911
|
+
} | undefined;
|
|
25912
|
+
attestations?: {
|
|
25913
|
+
oracleChainId?: string | undefined;
|
|
25914
|
+
oracleContract?: string | undefined;
|
|
25915
|
+
signerAddress?: string | undefined;
|
|
25916
|
+
signature?: string | undefined;
|
|
25917
|
+
}[] | undefined;
|
|
25918
|
+
} | undefined;
|
|
25919
|
+
} | undefined;
|
|
25920
|
+
settlement?: {
|
|
25921
|
+
destination?: {
|
|
25922
|
+
fills?: {
|
|
25923
|
+
chainId?: number | undefined;
|
|
25924
|
+
transactionId?: string | undefined;
|
|
25925
|
+
}[] | undefined;
|
|
25926
|
+
refunds?: {
|
|
25927
|
+
chainId?: number | undefined;
|
|
25928
|
+
transactionId?: string | undefined;
|
|
25929
|
+
}[] | undefined;
|
|
25930
|
+
} | undefined;
|
|
25931
|
+
relay?: {
|
|
25932
|
+
amount?: string | undefined;
|
|
25933
|
+
chainId?: number | undefined;
|
|
25934
|
+
currency?: string | undefined;
|
|
25935
|
+
hash?: string | undefined;
|
|
25936
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
25937
|
+
solver?: string | undefined;
|
|
25938
|
+
} | undefined;
|
|
25939
|
+
attestation?: {
|
|
25940
|
+
execution?: {
|
|
25941
|
+
actions?: string[] | undefined;
|
|
25942
|
+
idempotencyKey?: string | undefined;
|
|
25943
|
+
} | undefined;
|
|
25944
|
+
attestations?: {
|
|
25945
|
+
oracleChainId?: string | undefined;
|
|
25946
|
+
oracleContract?: string | undefined;
|
|
25947
|
+
signerAddress?: string | undefined;
|
|
25948
|
+
signature?: string | undefined;
|
|
25949
|
+
}[] | undefined;
|
|
25950
|
+
} | undefined;
|
|
25951
|
+
} | undefined;
|
|
25952
|
+
} | undefined;
|
|
23010
25953
|
orderData?: unknown;
|
|
23011
25954
|
referrer?: string | undefined;
|
|
23012
25955
|
moonpayId?: string | undefined;
|
|
@@ -23024,6 +25967,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
23024
25967
|
depositAddress?: {
|
|
23025
25968
|
address?: string | undefined;
|
|
23026
25969
|
depositAddressType?: "strict" | "open" | undefined;
|
|
25970
|
+
depositor?: string | null | undefined;
|
|
23027
25971
|
} | null | undefined;
|
|
23028
25972
|
data?: {
|
|
23029
25973
|
slippageTolerance?: string | undefined;
|
|
@@ -23687,6 +26631,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
23687
26631
|
} | undefined;
|
|
23688
26632
|
} | undefined;
|
|
23689
26633
|
} | undefined;
|
|
26634
|
+
expandedPriceImpact?: {
|
|
26635
|
+
quoted?: {
|
|
26636
|
+
swap?: {
|
|
26637
|
+
usd?: string | undefined;
|
|
26638
|
+
} | undefined;
|
|
26639
|
+
execution?: {
|
|
26640
|
+
usd?: string | undefined;
|
|
26641
|
+
} | undefined;
|
|
26642
|
+
relay?: {
|
|
26643
|
+
usd?: string | undefined;
|
|
26644
|
+
} | undefined;
|
|
26645
|
+
app?: {
|
|
26646
|
+
usd?: string | undefined;
|
|
26647
|
+
} | undefined;
|
|
26648
|
+
sponsored?: {
|
|
26649
|
+
usd?: string | undefined;
|
|
26650
|
+
} | undefined;
|
|
26651
|
+
} | undefined;
|
|
26652
|
+
actual?: {
|
|
26653
|
+
swap?: {
|
|
26654
|
+
usd?: string | undefined;
|
|
26655
|
+
} | undefined;
|
|
26656
|
+
execution?: {
|
|
26657
|
+
usd?: string | undefined;
|
|
26658
|
+
} | undefined;
|
|
26659
|
+
relay?: {
|
|
26660
|
+
usd?: string | undefined;
|
|
26661
|
+
} | undefined;
|
|
26662
|
+
app?: {
|
|
26663
|
+
usd?: string | undefined;
|
|
26664
|
+
} | undefined;
|
|
26665
|
+
sponsored?: {
|
|
26666
|
+
usd?: string | undefined;
|
|
26667
|
+
} | undefined;
|
|
26668
|
+
} | undefined;
|
|
26669
|
+
} | null | undefined;
|
|
23690
26670
|
paidAppFees?: {
|
|
23691
26671
|
recipient?: string | undefined;
|
|
23692
26672
|
bps?: string | undefined;
|
|
@@ -23854,6 +26834,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
23854
26834
|
status?: "success" | "failure" | undefined;
|
|
23855
26835
|
}[] | undefined;
|
|
23856
26836
|
} | undefined;
|
|
26837
|
+
protocol?: {
|
|
26838
|
+
orderId?: string | undefined;
|
|
26839
|
+
hubType?: "onchain" | undefined;
|
|
26840
|
+
isWithdrawable?: boolean | undefined;
|
|
26841
|
+
solver?: {
|
|
26842
|
+
address?: string | undefined;
|
|
26843
|
+
protocolChainId?: string | undefined;
|
|
26844
|
+
chainId?: number | undefined;
|
|
26845
|
+
} | undefined;
|
|
26846
|
+
deposit?: {
|
|
26847
|
+
origin?: {
|
|
26848
|
+
amount?: string | undefined;
|
|
26849
|
+
chainId?: number | undefined;
|
|
26850
|
+
currency?: string | undefined;
|
|
26851
|
+
depositor?: string | undefined;
|
|
26852
|
+
depository?: string | undefined;
|
|
26853
|
+
onchainId?: string | undefined;
|
|
26854
|
+
transactionId?: string | undefined;
|
|
26855
|
+
} | undefined;
|
|
26856
|
+
relay?: {
|
|
26857
|
+
amount?: string | undefined;
|
|
26858
|
+
chainId?: number | undefined;
|
|
26859
|
+
currency?: string | undefined;
|
|
26860
|
+
hash?: string | undefined;
|
|
26861
|
+
operation?: "mint" | undefined;
|
|
26862
|
+
} | undefined;
|
|
26863
|
+
attestation?: {
|
|
26864
|
+
execution?: {
|
|
26865
|
+
actions?: string[] | undefined;
|
|
26866
|
+
idempotencyKey?: string | undefined;
|
|
26867
|
+
} | undefined;
|
|
26868
|
+
attestations?: {
|
|
26869
|
+
oracleChainId?: string | undefined;
|
|
26870
|
+
oracleContract?: string | undefined;
|
|
26871
|
+
signerAddress?: string | undefined;
|
|
26872
|
+
signature?: string | undefined;
|
|
26873
|
+
}[] | undefined;
|
|
26874
|
+
} | undefined;
|
|
26875
|
+
} | undefined;
|
|
26876
|
+
settlement?: {
|
|
26877
|
+
destination?: {
|
|
26878
|
+
fills?: {
|
|
26879
|
+
chainId?: number | undefined;
|
|
26880
|
+
transactionId?: string | undefined;
|
|
26881
|
+
}[] | undefined;
|
|
26882
|
+
refunds?: {
|
|
26883
|
+
chainId?: number | undefined;
|
|
26884
|
+
transactionId?: string | undefined;
|
|
26885
|
+
}[] | undefined;
|
|
26886
|
+
} | undefined;
|
|
26887
|
+
relay?: {
|
|
26888
|
+
amount?: string | undefined;
|
|
26889
|
+
chainId?: number | undefined;
|
|
26890
|
+
currency?: string | undefined;
|
|
26891
|
+
hash?: string | undefined;
|
|
26892
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
26893
|
+
solver?: string | undefined;
|
|
26894
|
+
} | undefined;
|
|
26895
|
+
attestation?: {
|
|
26896
|
+
execution?: {
|
|
26897
|
+
actions?: string[] | undefined;
|
|
26898
|
+
idempotencyKey?: string | undefined;
|
|
26899
|
+
} | undefined;
|
|
26900
|
+
attestations?: {
|
|
26901
|
+
oracleChainId?: string | undefined;
|
|
26902
|
+
oracleContract?: string | undefined;
|
|
26903
|
+
signerAddress?: string | undefined;
|
|
26904
|
+
signature?: string | undefined;
|
|
26905
|
+
}[] | undefined;
|
|
26906
|
+
} | undefined;
|
|
26907
|
+
} | undefined;
|
|
26908
|
+
} | undefined;
|
|
23857
26909
|
orderData?: unknown;
|
|
23858
26910
|
referrer?: string | undefined;
|
|
23859
26911
|
moonpayId?: string | undefined;
|
|
@@ -23887,6 +26939,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
23887
26939
|
depositAddress?: {
|
|
23888
26940
|
address?: string | undefined;
|
|
23889
26941
|
depositAddressType?: "strict" | "open" | undefined;
|
|
26942
|
+
depositor?: string | null | undefined;
|
|
23890
26943
|
} | null | undefined;
|
|
23891
26944
|
data?: {
|
|
23892
26945
|
slippageTolerance?: string | undefined;
|
|
@@ -24550,6 +27603,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
24550
27603
|
} | undefined;
|
|
24551
27604
|
} | undefined;
|
|
24552
27605
|
} | undefined;
|
|
27606
|
+
expandedPriceImpact?: {
|
|
27607
|
+
quoted?: {
|
|
27608
|
+
swap?: {
|
|
27609
|
+
usd?: string | undefined;
|
|
27610
|
+
} | undefined;
|
|
27611
|
+
execution?: {
|
|
27612
|
+
usd?: string | undefined;
|
|
27613
|
+
} | undefined;
|
|
27614
|
+
relay?: {
|
|
27615
|
+
usd?: string | undefined;
|
|
27616
|
+
} | undefined;
|
|
27617
|
+
app?: {
|
|
27618
|
+
usd?: string | undefined;
|
|
27619
|
+
} | undefined;
|
|
27620
|
+
sponsored?: {
|
|
27621
|
+
usd?: string | undefined;
|
|
27622
|
+
} | undefined;
|
|
27623
|
+
} | undefined;
|
|
27624
|
+
actual?: {
|
|
27625
|
+
swap?: {
|
|
27626
|
+
usd?: string | undefined;
|
|
27627
|
+
} | undefined;
|
|
27628
|
+
execution?: {
|
|
27629
|
+
usd?: string | undefined;
|
|
27630
|
+
} | undefined;
|
|
27631
|
+
relay?: {
|
|
27632
|
+
usd?: string | undefined;
|
|
27633
|
+
} | undefined;
|
|
27634
|
+
app?: {
|
|
27635
|
+
usd?: string | undefined;
|
|
27636
|
+
} | undefined;
|
|
27637
|
+
sponsored?: {
|
|
27638
|
+
usd?: string | undefined;
|
|
27639
|
+
} | undefined;
|
|
27640
|
+
} | undefined;
|
|
27641
|
+
} | null | undefined;
|
|
24553
27642
|
paidAppFees?: {
|
|
24554
27643
|
recipient?: string | undefined;
|
|
24555
27644
|
bps?: string | undefined;
|
|
@@ -24717,6 +27806,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
24717
27806
|
status?: "success" | "failure" | undefined;
|
|
24718
27807
|
}[] | undefined;
|
|
24719
27808
|
} | undefined;
|
|
27809
|
+
protocol?: {
|
|
27810
|
+
orderId?: string | undefined;
|
|
27811
|
+
hubType?: "onchain" | undefined;
|
|
27812
|
+
isWithdrawable?: boolean | undefined;
|
|
27813
|
+
solver?: {
|
|
27814
|
+
address?: string | undefined;
|
|
27815
|
+
protocolChainId?: string | undefined;
|
|
27816
|
+
chainId?: number | undefined;
|
|
27817
|
+
} | undefined;
|
|
27818
|
+
deposit?: {
|
|
27819
|
+
origin?: {
|
|
27820
|
+
amount?: string | undefined;
|
|
27821
|
+
chainId?: number | undefined;
|
|
27822
|
+
currency?: string | undefined;
|
|
27823
|
+
depositor?: string | undefined;
|
|
27824
|
+
depository?: string | undefined;
|
|
27825
|
+
onchainId?: string | undefined;
|
|
27826
|
+
transactionId?: string | undefined;
|
|
27827
|
+
} | undefined;
|
|
27828
|
+
relay?: {
|
|
27829
|
+
amount?: string | undefined;
|
|
27830
|
+
chainId?: number | undefined;
|
|
27831
|
+
currency?: string | undefined;
|
|
27832
|
+
hash?: string | undefined;
|
|
27833
|
+
operation?: "mint" | undefined;
|
|
27834
|
+
} | undefined;
|
|
27835
|
+
attestation?: {
|
|
27836
|
+
execution?: {
|
|
27837
|
+
actions?: string[] | undefined;
|
|
27838
|
+
idempotencyKey?: string | undefined;
|
|
27839
|
+
} | undefined;
|
|
27840
|
+
attestations?: {
|
|
27841
|
+
oracleChainId?: string | undefined;
|
|
27842
|
+
oracleContract?: string | undefined;
|
|
27843
|
+
signerAddress?: string | undefined;
|
|
27844
|
+
signature?: string | undefined;
|
|
27845
|
+
}[] | undefined;
|
|
27846
|
+
} | undefined;
|
|
27847
|
+
} | undefined;
|
|
27848
|
+
settlement?: {
|
|
27849
|
+
destination?: {
|
|
27850
|
+
fills?: {
|
|
27851
|
+
chainId?: number | undefined;
|
|
27852
|
+
transactionId?: string | undefined;
|
|
27853
|
+
}[] | undefined;
|
|
27854
|
+
refunds?: {
|
|
27855
|
+
chainId?: number | undefined;
|
|
27856
|
+
transactionId?: string | undefined;
|
|
27857
|
+
}[] | undefined;
|
|
27858
|
+
} | undefined;
|
|
27859
|
+
relay?: {
|
|
27860
|
+
amount?: string | undefined;
|
|
27861
|
+
chainId?: number | undefined;
|
|
27862
|
+
currency?: string | undefined;
|
|
27863
|
+
hash?: string | undefined;
|
|
27864
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
27865
|
+
solver?: string | undefined;
|
|
27866
|
+
} | undefined;
|
|
27867
|
+
attestation?: {
|
|
27868
|
+
execution?: {
|
|
27869
|
+
actions?: string[] | undefined;
|
|
27870
|
+
idempotencyKey?: string | undefined;
|
|
27871
|
+
} | undefined;
|
|
27872
|
+
attestations?: {
|
|
27873
|
+
oracleChainId?: string | undefined;
|
|
27874
|
+
oracleContract?: string | undefined;
|
|
27875
|
+
signerAddress?: string | undefined;
|
|
27876
|
+
signature?: string | undefined;
|
|
27877
|
+
}[] | undefined;
|
|
27878
|
+
} | undefined;
|
|
27879
|
+
} | undefined;
|
|
27880
|
+
} | undefined;
|
|
24720
27881
|
orderData?: unknown;
|
|
24721
27882
|
referrer?: string | undefined;
|
|
24722
27883
|
moonpayId?: string | undefined;
|
|
@@ -24735,6 +27896,7 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
24735
27896
|
depositAddress?: {
|
|
24736
27897
|
address?: string | undefined;
|
|
24737
27898
|
depositAddressType?: "strict" | "open" | undefined;
|
|
27899
|
+
depositor?: string | null | undefined;
|
|
24738
27900
|
} | null | undefined;
|
|
24739
27901
|
data?: {
|
|
24740
27902
|
slippageTolerance?: string | undefined;
|
|
@@ -25398,6 +28560,42 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
25398
28560
|
} | undefined;
|
|
25399
28561
|
} | undefined;
|
|
25400
28562
|
} | undefined;
|
|
28563
|
+
expandedPriceImpact?: {
|
|
28564
|
+
quoted?: {
|
|
28565
|
+
swap?: {
|
|
28566
|
+
usd?: string | undefined;
|
|
28567
|
+
} | undefined;
|
|
28568
|
+
execution?: {
|
|
28569
|
+
usd?: string | undefined;
|
|
28570
|
+
} | undefined;
|
|
28571
|
+
relay?: {
|
|
28572
|
+
usd?: string | undefined;
|
|
28573
|
+
} | undefined;
|
|
28574
|
+
app?: {
|
|
28575
|
+
usd?: string | undefined;
|
|
28576
|
+
} | undefined;
|
|
28577
|
+
sponsored?: {
|
|
28578
|
+
usd?: string | undefined;
|
|
28579
|
+
} | undefined;
|
|
28580
|
+
} | undefined;
|
|
28581
|
+
actual?: {
|
|
28582
|
+
swap?: {
|
|
28583
|
+
usd?: string | undefined;
|
|
28584
|
+
} | undefined;
|
|
28585
|
+
execution?: {
|
|
28586
|
+
usd?: string | undefined;
|
|
28587
|
+
} | undefined;
|
|
28588
|
+
relay?: {
|
|
28589
|
+
usd?: string | undefined;
|
|
28590
|
+
} | undefined;
|
|
28591
|
+
app?: {
|
|
28592
|
+
usd?: string | undefined;
|
|
28593
|
+
} | undefined;
|
|
28594
|
+
sponsored?: {
|
|
28595
|
+
usd?: string | undefined;
|
|
28596
|
+
} | undefined;
|
|
28597
|
+
} | undefined;
|
|
28598
|
+
} | null | undefined;
|
|
25401
28599
|
paidAppFees?: {
|
|
25402
28600
|
recipient?: string | undefined;
|
|
25403
28601
|
bps?: string | undefined;
|
|
@@ -25565,6 +28763,78 @@ export default function (options?: UserTransactionQuery | false, baseApiUrl?: st
|
|
|
25565
28763
|
status?: "success" | "failure" | undefined;
|
|
25566
28764
|
}[] | undefined;
|
|
25567
28765
|
} | undefined;
|
|
28766
|
+
protocol?: {
|
|
28767
|
+
orderId?: string | undefined;
|
|
28768
|
+
hubType?: "onchain" | undefined;
|
|
28769
|
+
isWithdrawable?: boolean | undefined;
|
|
28770
|
+
solver?: {
|
|
28771
|
+
address?: string | undefined;
|
|
28772
|
+
protocolChainId?: string | undefined;
|
|
28773
|
+
chainId?: number | undefined;
|
|
28774
|
+
} | undefined;
|
|
28775
|
+
deposit?: {
|
|
28776
|
+
origin?: {
|
|
28777
|
+
amount?: string | undefined;
|
|
28778
|
+
chainId?: number | undefined;
|
|
28779
|
+
currency?: string | undefined;
|
|
28780
|
+
depositor?: string | undefined;
|
|
28781
|
+
depository?: string | undefined;
|
|
28782
|
+
onchainId?: string | undefined;
|
|
28783
|
+
transactionId?: string | undefined;
|
|
28784
|
+
} | undefined;
|
|
28785
|
+
relay?: {
|
|
28786
|
+
amount?: string | undefined;
|
|
28787
|
+
chainId?: number | undefined;
|
|
28788
|
+
currency?: string | undefined;
|
|
28789
|
+
hash?: string | undefined;
|
|
28790
|
+
operation?: "mint" | undefined;
|
|
28791
|
+
} | undefined;
|
|
28792
|
+
attestation?: {
|
|
28793
|
+
execution?: {
|
|
28794
|
+
actions?: string[] | undefined;
|
|
28795
|
+
idempotencyKey?: string | undefined;
|
|
28796
|
+
} | undefined;
|
|
28797
|
+
attestations?: {
|
|
28798
|
+
oracleChainId?: string | undefined;
|
|
28799
|
+
oracleContract?: string | undefined;
|
|
28800
|
+
signerAddress?: string | undefined;
|
|
28801
|
+
signature?: string | undefined;
|
|
28802
|
+
}[] | undefined;
|
|
28803
|
+
} | undefined;
|
|
28804
|
+
} | undefined;
|
|
28805
|
+
settlement?: {
|
|
28806
|
+
destination?: {
|
|
28807
|
+
fills?: {
|
|
28808
|
+
chainId?: number | undefined;
|
|
28809
|
+
transactionId?: string | undefined;
|
|
28810
|
+
}[] | undefined;
|
|
28811
|
+
refunds?: {
|
|
28812
|
+
chainId?: number | undefined;
|
|
28813
|
+
transactionId?: string | undefined;
|
|
28814
|
+
}[] | undefined;
|
|
28815
|
+
} | undefined;
|
|
28816
|
+
relay?: {
|
|
28817
|
+
amount?: string | undefined;
|
|
28818
|
+
chainId?: number | undefined;
|
|
28819
|
+
currency?: string | undefined;
|
|
28820
|
+
hash?: string | undefined;
|
|
28821
|
+
operation?: "transfer" | "burn" | "mixed" | undefined;
|
|
28822
|
+
solver?: string | undefined;
|
|
28823
|
+
} | undefined;
|
|
28824
|
+
attestation?: {
|
|
28825
|
+
execution?: {
|
|
28826
|
+
actions?: string[] | undefined;
|
|
28827
|
+
idempotencyKey?: string | undefined;
|
|
28828
|
+
} | undefined;
|
|
28829
|
+
attestations?: {
|
|
28830
|
+
oracleChainId?: string | undefined;
|
|
28831
|
+
oracleContract?: string | undefined;
|
|
28832
|
+
signerAddress?: string | undefined;
|
|
28833
|
+
signature?: string | undefined;
|
|
28834
|
+
}[] | undefined;
|
|
28835
|
+
} | undefined;
|
|
28836
|
+
} | undefined;
|
|
28837
|
+
} | undefined;
|
|
25568
28838
|
orderData?: unknown;
|
|
25569
28839
|
referrer?: string | undefined;
|
|
25570
28840
|
moonpayId?: string | undefined;
|