@b3dotfun/sdk 0.0.5-alpha.6 → 0.0.5

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.
Files changed (93) hide show
  1. package/dist/cjs/anyspend/constants/index.js +2 -2
  2. package/dist/cjs/anyspend/react/components/AnySpend.js +2 -2
  3. package/dist/cjs/anyspend/react/components/index.d.ts +5 -7
  4. package/dist/cjs/anyspend/react/components/index.js +11 -15
  5. package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOnrampOrder.d.ts +0 -1
  6. package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOnrampOrder.js +3 -4
  7. package/dist/cjs/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +0 -10
  8. package/dist/cjs/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +0 -10
  9. package/dist/cjs/anyspend/services/anyspend.d.ts +1 -7
  10. package/dist/cjs/anyspend/services/anyspend.js +2 -3
  11. package/dist/cjs/anyspend/types/order.d.ts +0 -18
  12. package/dist/cjs/anyspend/types/order.js +0 -1
  13. package/dist/cjs/anyspend/types/req-res/createOrder.d.ts +0 -50
  14. package/dist/cjs/anyspend/types/req-res/createOrder.js +0 -1
  15. package/dist/cjs/anyspend/types/req-res/getOrderAndTransactions.d.ts +0 -35
  16. package/dist/cjs/anyspend/types/req-res/getOrderHistory.d.ts +0 -25
  17. package/dist/cjs/global-account/react/hooks/index.d.ts +1 -2
  18. package/dist/cjs/global-account/react/hooks/index.js +1 -3
  19. package/dist/cjs/global-account/react/hooks/useTokenFromUrl.d.ts +1 -5
  20. package/dist/cjs/global-account/react/hooks/useTokenFromUrl.js +13 -74
  21. package/dist/cjs/shared/constants/chains/supported.d.ts +3 -13
  22. package/dist/cjs/shared/constants/chains/supported.js +9 -15
  23. package/dist/esm/anyspend/constants/index.js +2 -2
  24. package/dist/esm/anyspend/react/components/AnySpend.js +2 -2
  25. package/dist/esm/anyspend/react/components/index.d.ts +5 -7
  26. package/dist/esm/anyspend/react/components/index.js +5 -7
  27. package/dist/esm/anyspend/react/hooks/useAnyspendCreateOnrampOrder.d.ts +0 -1
  28. package/dist/esm/anyspend/react/hooks/useAnyspendCreateOnrampOrder.js +4 -5
  29. package/dist/esm/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +0 -10
  30. package/dist/esm/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +0 -10
  31. package/dist/esm/anyspend/services/anyspend.d.ts +1 -7
  32. package/dist/esm/anyspend/services/anyspend.js +2 -3
  33. package/dist/esm/anyspend/types/order.d.ts +0 -18
  34. package/dist/esm/anyspend/types/order.js +0 -1
  35. package/dist/esm/anyspend/types/req-res/createOrder.d.ts +0 -50
  36. package/dist/esm/anyspend/types/req-res/createOrder.js +0 -1
  37. package/dist/esm/anyspend/types/req-res/getOrderAndTransactions.d.ts +0 -35
  38. package/dist/esm/anyspend/types/req-res/getOrderHistory.d.ts +0 -25
  39. package/dist/esm/global-account/react/hooks/index.d.ts +1 -2
  40. package/dist/esm/global-account/react/hooks/index.js +0 -1
  41. package/dist/esm/global-account/react/hooks/useTokenFromUrl.d.ts +1 -5
  42. package/dist/esm/global-account/react/hooks/useTokenFromUrl.js +13 -73
  43. package/dist/esm/shared/constants/chains/supported.d.ts +3 -13
  44. package/dist/esm/shared/constants/chains/supported.js +8 -13
  45. package/dist/styles/index.css +1 -1
  46. package/dist/types/anyspend/react/components/index.d.ts +5 -7
  47. package/dist/types/anyspend/react/hooks/useAnyspendCreateOnrampOrder.d.ts +0 -1
  48. package/dist/types/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +0 -10
  49. package/dist/types/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +0 -10
  50. package/dist/types/anyspend/services/anyspend.d.ts +1 -7
  51. package/dist/types/anyspend/types/order.d.ts +0 -18
  52. package/dist/types/anyspend/types/req-res/createOrder.d.ts +0 -50
  53. package/dist/types/anyspend/types/req-res/getOrderAndTransactions.d.ts +0 -35
  54. package/dist/types/anyspend/types/req-res/getOrderHistory.d.ts +0 -25
  55. package/dist/types/global-account/react/hooks/index.d.ts +1 -2
  56. package/dist/types/global-account/react/hooks/useTokenFromUrl.d.ts +1 -5
  57. package/dist/types/shared/constants/chains/supported.d.ts +3 -13
  58. package/package.json +3 -3
  59. package/src/anyspend/constants/index.ts +4 -2
  60. package/src/anyspend/react/components/AnySpend.tsx +2 -2
  61. package/src/anyspend/react/components/index.ts +5 -7
  62. package/src/anyspend/react/hooks/useAnyspendCreateOnrampOrder.ts +4 -7
  63. package/src/anyspend/services/anyspend.ts +2 -5
  64. package/src/anyspend/types/order.ts +0 -1
  65. package/src/anyspend/types/req-res/createOrder.ts +0 -1
  66. package/src/global-account/react/hooks/index.ts +1 -2
  67. package/src/global-account/react/hooks/useTokenFromUrl.tsx +13 -95
  68. package/src/shared/constants/chains/supported.ts +8 -23
  69. package/dist/cjs/anyspend/react/components/webview/WebviewOnrampOrderStatus.d.ts +0 -6
  70. package/dist/cjs/anyspend/react/components/webview/WebviewOnrampOrderStatus.js +0 -37
  71. package/dist/cjs/anyspend/react/components/webview/WebviewOnrampPayment.d.ts +0 -12
  72. package/dist/cjs/anyspend/react/components/webview/WebviewOnrampPayment.js +0 -173
  73. package/dist/cjs/global-account/react/hooks/useB3EnsName.d.ts +0 -9
  74. package/dist/cjs/global-account/react/hooks/useB3EnsName.js +0 -39
  75. package/dist/cjs/shared/generated/coingecko-chains.json +0 -1072
  76. package/dist/esm/anyspend/react/components/webview/WebviewOnrampOrderStatus.d.ts +0 -6
  77. package/dist/esm/anyspend/react/components/webview/WebviewOnrampOrderStatus.js +0 -31
  78. package/dist/esm/anyspend/react/components/webview/WebviewOnrampPayment.d.ts +0 -12
  79. package/dist/esm/anyspend/react/components/webview/WebviewOnrampPayment.js +0 -167
  80. package/dist/esm/global-account/react/hooks/useB3EnsName.d.ts +0 -9
  81. package/dist/esm/global-account/react/hooks/useB3EnsName.js +0 -32
  82. package/dist/esm/shared/generated/coingecko-chains.json +0 -1072
  83. package/dist/types/anyspend/react/components/webview/WebviewOnrampOrderStatus.d.ts +0 -6
  84. package/dist/types/anyspend/react/components/webview/WebviewOnrampPayment.d.ts +0 -12
  85. package/dist/types/global-account/react/hooks/useB3EnsName.d.ts +0 -9
  86. package/src/anyspend/README.md +0 -626
  87. package/src/anyspend/react/components/webview/WebviewOnrampOrderStatus.tsx +0 -120
  88. package/src/anyspend/react/components/webview/WebviewOnrampPayment.tsx +0 -369
  89. package/src/global-account/react/hooks/useB3EnsName.ts +0 -49
  90. package/src/shared/generated/coingecko-chains.json +0 -1072
  91. /package/dist/cjs/{shared/generated → generated}/chain-networks.json +0 -0
  92. /package/dist/esm/{shared/generated → generated}/chain-networks.json +0 -0
  93. /package/src/{shared/generated → generated}/chain-networks.json +0 -0
@@ -8,7 +8,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
8
8
  srcTokenAddress: z.ZodString;
9
9
  dstTokenAddress: z.ZodString;
10
10
  srcAmount: z.ZodString;
11
- partnerId: z.ZodOptional<z.ZodString>;
12
11
  onramp: z.ZodOptional<z.ZodObject<{
13
12
  country: z.ZodString;
14
13
  vendor: z.ZodNativeEnum<typeof import("../onramp").OnrampVendor>;
@@ -184,7 +183,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
184
183
  actualDstAmount: string | null;
185
184
  };
186
185
  creatorAddress?: string | undefined;
187
- partnerId?: string | undefined;
188
186
  onramp?: {
189
187
  country: string;
190
188
  vendor: import("../onramp").OnrampVendor;
@@ -227,7 +225,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
227
225
  actualDstAmount: string | null;
228
226
  };
229
227
  creatorAddress?: string | undefined;
230
- partnerId?: string | undefined;
231
228
  onramp?: {
232
229
  country: string;
233
230
  vendor: import("../onramp").OnrampVendor;
@@ -242,7 +239,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
242
239
  srcTokenAddress: z.ZodString;
243
240
  dstTokenAddress: z.ZodString;
244
241
  srcAmount: z.ZodString;
245
- partnerId: z.ZodOptional<z.ZodString>;
246
242
  onramp: z.ZodOptional<z.ZodObject<{
247
243
  country: z.ZodString;
248
244
  vendor: z.ZodNativeEnum<typeof import("../onramp").OnrampVendor>;
@@ -502,7 +498,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
502
498
  nftPrice: string;
503
499
  };
504
500
  creatorAddress?: string | undefined;
505
- partnerId?: string | undefined;
506
501
  onramp?: {
507
502
  country: string;
508
503
  vendor: import("../onramp").OnrampVendor;
@@ -559,7 +554,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
559
554
  nftPrice: string;
560
555
  };
561
556
  creatorAddress?: string | undefined;
562
- partnerId?: string | undefined;
563
557
  onramp?: {
564
558
  country: string;
565
559
  vendor: import("../onramp").OnrampVendor;
@@ -574,7 +568,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
574
568
  srcTokenAddress: z.ZodString;
575
569
  dstTokenAddress: z.ZodString;
576
570
  srcAmount: z.ZodString;
577
- partnerId: z.ZodOptional<z.ZodString>;
578
571
  onramp: z.ZodOptional<z.ZodObject<{
579
572
  country: z.ZodString;
580
573
  vendor: z.ZodNativeEnum<typeof import("../onramp").OnrampVendor>;
@@ -784,7 +777,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
784
777
  entryPrice: string;
785
778
  };
786
779
  creatorAddress?: string | undefined;
787
- partnerId?: string | undefined;
788
780
  onramp?: {
789
781
  country: string;
790
782
  vendor: import("../onramp").OnrampVendor;
@@ -833,7 +825,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
833
825
  entryPrice: string;
834
826
  };
835
827
  creatorAddress?: string | undefined;
836
- partnerId?: string | undefined;
837
828
  onramp?: {
838
829
  country: string;
839
830
  vendor: import("../onramp").OnrampVendor;
@@ -848,7 +839,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
848
839
  srcTokenAddress: z.ZodString;
849
840
  dstTokenAddress: z.ZodString;
850
841
  srcAmount: z.ZodString;
851
- partnerId: z.ZodOptional<z.ZodString>;
852
842
  onramp: z.ZodOptional<z.ZodObject<{
853
843
  country: z.ZodString;
854
844
  vendor: z.ZodNativeEnum<typeof import("../onramp").OnrampVendor>;
@@ -1058,7 +1048,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
1058
1048
  fundAmount: string;
1059
1049
  };
1060
1050
  creatorAddress?: string | undefined;
1061
- partnerId?: string | undefined;
1062
1051
  onramp?: {
1063
1052
  country: string;
1064
1053
  vendor: import("../onramp").OnrampVendor;
@@ -1107,7 +1096,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
1107
1096
  fundAmount: string;
1108
1097
  };
1109
1098
  creatorAddress?: string | undefined;
1110
- partnerId?: string | undefined;
1111
1099
  onramp?: {
1112
1100
  country: string;
1113
1101
  vendor: import("../onramp").OnrampVendor;
@@ -1122,7 +1110,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
1122
1110
  srcTokenAddress: z.ZodString;
1123
1111
  dstTokenAddress: z.ZodString;
1124
1112
  srcAmount: z.ZodString;
1125
- partnerId: z.ZodOptional<z.ZodString>;
1126
1113
  onramp: z.ZodOptional<z.ZodObject<{
1127
1114
  country: z.ZodString;
1128
1115
  vendor: z.ZodNativeEnum<typeof import("../onramp").OnrampVendor>;
@@ -1310,7 +1297,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
1310
1297
  spenderAddress?: string | undefined;
1311
1298
  };
1312
1299
  creatorAddress?: string | undefined;
1313
- partnerId?: string | undefined;
1314
1300
  onramp?: {
1315
1301
  country: string;
1316
1302
  vendor: import("../onramp").OnrampVendor;
@@ -1356,7 +1342,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
1356
1342
  spenderAddress?: string | undefined;
1357
1343
  };
1358
1344
  creatorAddress?: string | undefined;
1359
- partnerId?: string | undefined;
1360
1345
  onramp?: {
1361
1346
  country: string;
1362
1347
  vendor: import("../onramp").OnrampVendor;
@@ -1401,7 +1386,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
1401
1386
  actualDstAmount: string | null;
1402
1387
  };
1403
1388
  creatorAddress?: string | undefined;
1404
- partnerId?: string | undefined;
1405
1389
  onramp?: {
1406
1390
  country: string;
1407
1391
  vendor: import("../onramp").OnrampVendor;
@@ -1458,7 +1442,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
1458
1442
  nftPrice: string;
1459
1443
  };
1460
1444
  creatorAddress?: string | undefined;
1461
- partnerId?: string | undefined;
1462
1445
  onramp?: {
1463
1446
  country: string;
1464
1447
  vendor: import("../onramp").OnrampVendor;
@@ -1507,7 +1490,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
1507
1490
  entryPrice: string;
1508
1491
  };
1509
1492
  creatorAddress?: string | undefined;
1510
- partnerId?: string | undefined;
1511
1493
  onramp?: {
1512
1494
  country: string;
1513
1495
  vendor: import("../onramp").OnrampVendor;
@@ -1556,7 +1538,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
1556
1538
  fundAmount: string;
1557
1539
  };
1558
1540
  creatorAddress?: string | undefined;
1559
- partnerId?: string | undefined;
1560
1541
  onramp?: {
1561
1542
  country: string;
1562
1543
  vendor: import("../onramp").OnrampVendor;
@@ -1602,7 +1583,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
1602
1583
  spenderAddress?: string | undefined;
1603
1584
  };
1604
1585
  creatorAddress?: string | undefined;
1605
- partnerId?: string | undefined;
1606
1586
  onramp?: {
1607
1587
  country: string;
1608
1588
  vendor: import("../onramp").OnrampVendor;
@@ -1647,7 +1627,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
1647
1627
  actualDstAmount: string | null;
1648
1628
  };
1649
1629
  creatorAddress?: string | undefined;
1650
- partnerId?: string | undefined;
1651
1630
  onramp?: {
1652
1631
  country: string;
1653
1632
  vendor: import("../onramp").OnrampVendor;
@@ -1704,7 +1683,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
1704
1683
  nftPrice: string;
1705
1684
  };
1706
1685
  creatorAddress?: string | undefined;
1707
- partnerId?: string | undefined;
1708
1686
  onramp?: {
1709
1687
  country: string;
1710
1688
  vendor: import("../onramp").OnrampVendor;
@@ -1753,7 +1731,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
1753
1731
  entryPrice: string;
1754
1732
  };
1755
1733
  creatorAddress?: string | undefined;
1756
- partnerId?: string | undefined;
1757
1734
  onramp?: {
1758
1735
  country: string;
1759
1736
  vendor: import("../onramp").OnrampVendor;
@@ -1802,7 +1779,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
1802
1779
  fundAmount: string;
1803
1780
  };
1804
1781
  creatorAddress?: string | undefined;
1805
- partnerId?: string | undefined;
1806
1782
  onramp?: {
1807
1783
  country: string;
1808
1784
  vendor: import("../onramp").OnrampVendor;
@@ -1848,7 +1824,6 @@ export declare const zCreateOrderRequest: z.ZodObject<{
1848
1824
  spenderAddress?: string | undefined;
1849
1825
  };
1850
1826
  creatorAddress?: string | undefined;
1851
- partnerId?: string | undefined;
1852
1827
  onramp?: {
1853
1828
  country: string;
1854
1829
  vendor: import("../onramp").OnrampVendor;
@@ -1895,7 +1870,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
1895
1870
  ipAddress?: string | undefined;
1896
1871
  }>>;
1897
1872
  creatorAddress: z.ZodNullable<z.ZodString>;
1898
- partnerId: z.ZodNullable<z.ZodString>;
1899
1873
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
1900
1874
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
1901
1875
  permit: z.ZodNullable<z.ZodObject<{
@@ -2081,7 +2055,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
2081
2055
  ipAddress?: string | undefined;
2082
2056
  } | null;
2083
2057
  creatorAddress: string | null;
2084
- partnerId: string | null;
2085
2058
  oneClickBuyUrl: string | null;
2086
2059
  stripePaymentIntentId: string | null;
2087
2060
  permit: {
@@ -2139,7 +2112,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
2139
2112
  ipAddress?: string | undefined;
2140
2113
  } | null;
2141
2114
  creatorAddress: string | null;
2142
- partnerId: string | null;
2143
2115
  oneClickBuyUrl: string | null;
2144
2116
  stripePaymentIntentId: string | null;
2145
2117
  permit: {
@@ -2186,7 +2158,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
2186
2158
  ipAddress?: string | undefined;
2187
2159
  }>>;
2188
2160
  creatorAddress: z.ZodNullable<z.ZodString>;
2189
- partnerId: z.ZodNullable<z.ZodString>;
2190
2161
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
2191
2162
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
2192
2163
  permit: z.ZodNullable<z.ZodObject<{
@@ -2456,7 +2427,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
2456
2427
  ipAddress?: string | undefined;
2457
2428
  } | null;
2458
2429
  creatorAddress: string | null;
2459
- partnerId: string | null;
2460
2430
  oneClickBuyUrl: string | null;
2461
2431
  stripePaymentIntentId: string | null;
2462
2432
  permit: {
@@ -2528,7 +2498,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
2528
2498
  ipAddress?: string | undefined;
2529
2499
  } | null;
2530
2500
  creatorAddress: string | null;
2531
- partnerId: string | null;
2532
2501
  oneClickBuyUrl: string | null;
2533
2502
  stripePaymentIntentId: string | null;
2534
2503
  permit: {
@@ -2575,7 +2544,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
2575
2544
  ipAddress?: string | undefined;
2576
2545
  }>>;
2577
2546
  creatorAddress: z.ZodNullable<z.ZodString>;
2578
- partnerId: z.ZodNullable<z.ZodString>;
2579
2547
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
2580
2548
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
2581
2549
  permit: z.ZodNullable<z.ZodObject<{
@@ -2795,7 +2763,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
2795
2763
  ipAddress?: string | undefined;
2796
2764
  } | null;
2797
2765
  creatorAddress: string | null;
2798
- partnerId: string | null;
2799
2766
  oneClickBuyUrl: string | null;
2800
2767
  stripePaymentIntentId: string | null;
2801
2768
  permit: {
@@ -2859,7 +2826,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
2859
2826
  ipAddress?: string | undefined;
2860
2827
  } | null;
2861
2828
  creatorAddress: string | null;
2862
- partnerId: string | null;
2863
2829
  oneClickBuyUrl: string | null;
2864
2830
  stripePaymentIntentId: string | null;
2865
2831
  permit: {
@@ -2906,7 +2872,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
2906
2872
  ipAddress?: string | undefined;
2907
2873
  }>>;
2908
2874
  creatorAddress: z.ZodNullable<z.ZodString>;
2909
- partnerId: z.ZodNullable<z.ZodString>;
2910
2875
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
2911
2876
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
2912
2877
  permit: z.ZodNullable<z.ZodObject<{
@@ -3126,7 +3091,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
3126
3091
  ipAddress?: string | undefined;
3127
3092
  } | null;
3128
3093
  creatorAddress: string | null;
3129
- partnerId: string | null;
3130
3094
  oneClickBuyUrl: string | null;
3131
3095
  stripePaymentIntentId: string | null;
3132
3096
  permit: {
@@ -3190,7 +3154,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
3190
3154
  ipAddress?: string | undefined;
3191
3155
  } | null;
3192
3156
  creatorAddress: string | null;
3193
- partnerId: string | null;
3194
3157
  oneClickBuyUrl: string | null;
3195
3158
  stripePaymentIntentId: string | null;
3196
3159
  permit: {
@@ -3237,7 +3200,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
3237
3200
  ipAddress?: string | undefined;
3238
3201
  }>>;
3239
3202
  creatorAddress: z.ZodNullable<z.ZodString>;
3240
- partnerId: z.ZodNullable<z.ZodString>;
3241
3203
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
3242
3204
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
3243
3205
  permit: z.ZodNullable<z.ZodObject<{
@@ -3433,7 +3395,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
3433
3395
  ipAddress?: string | undefined;
3434
3396
  } | null;
3435
3397
  creatorAddress: string | null;
3436
- partnerId: string | null;
3437
3398
  oneClickBuyUrl: string | null;
3438
3399
  stripePaymentIntentId: string | null;
3439
3400
  permit: {
@@ -3494,7 +3455,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
3494
3455
  ipAddress?: string | undefined;
3495
3456
  } | null;
3496
3457
  creatorAddress: string | null;
3497
- partnerId: string | null;
3498
3458
  oneClickBuyUrl: string | null;
3499
3459
  stripePaymentIntentId: string | null;
3500
3460
  permit: {
@@ -3558,7 +3518,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
3558
3518
  ipAddress?: string | undefined;
3559
3519
  } | null;
3560
3520
  creatorAddress: string | null;
3561
- partnerId: string | null;
3562
3521
  oneClickBuyUrl: string | null;
3563
3522
  stripePaymentIntentId: string | null;
3564
3523
  permit: {
@@ -3630,7 +3589,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
3630
3589
  ipAddress?: string | undefined;
3631
3590
  } | null;
3632
3591
  creatorAddress: string | null;
3633
- partnerId: string | null;
3634
3592
  oneClickBuyUrl: string | null;
3635
3593
  stripePaymentIntentId: string | null;
3636
3594
  permit: {
@@ -3694,7 +3652,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
3694
3652
  ipAddress?: string | undefined;
3695
3653
  } | null;
3696
3654
  creatorAddress: string | null;
3697
- partnerId: string | null;
3698
3655
  oneClickBuyUrl: string | null;
3699
3656
  stripePaymentIntentId: string | null;
3700
3657
  permit: {
@@ -3758,7 +3715,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
3758
3715
  ipAddress?: string | undefined;
3759
3716
  } | null;
3760
3717
  creatorAddress: string | null;
3761
- partnerId: string | null;
3762
3718
  oneClickBuyUrl: string | null;
3763
3719
  stripePaymentIntentId: string | null;
3764
3720
  permit: {
@@ -3817,7 +3773,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
3817
3773
  ipAddress?: string | undefined;
3818
3774
  } | null;
3819
3775
  creatorAddress: string | null;
3820
- partnerId: string | null;
3821
3776
  oneClickBuyUrl: string | null;
3822
3777
  stripePaymentIntentId: string | null;
3823
3778
  permit: {
@@ -3882,7 +3837,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
3882
3837
  ipAddress?: string | undefined;
3883
3838
  } | null;
3884
3839
  creatorAddress: string | null;
3885
- partnerId: string | null;
3886
3840
  oneClickBuyUrl: string | null;
3887
3841
  stripePaymentIntentId: string | null;
3888
3842
  permit: {
@@ -3954,7 +3908,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
3954
3908
  ipAddress?: string | undefined;
3955
3909
  } | null;
3956
3910
  creatorAddress: string | null;
3957
- partnerId: string | null;
3958
3911
  oneClickBuyUrl: string | null;
3959
3912
  stripePaymentIntentId: string | null;
3960
3913
  permit: {
@@ -4018,7 +3971,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
4018
3971
  ipAddress?: string | undefined;
4019
3972
  } | null;
4020
3973
  creatorAddress: string | null;
4021
- partnerId: string | null;
4022
3974
  oneClickBuyUrl: string | null;
4023
3975
  stripePaymentIntentId: string | null;
4024
3976
  permit: {
@@ -4082,7 +4034,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
4082
4034
  ipAddress?: string | undefined;
4083
4035
  } | null;
4084
4036
  creatorAddress: string | null;
4085
- partnerId: string | null;
4086
4037
  oneClickBuyUrl: string | null;
4087
4038
  stripePaymentIntentId: string | null;
4088
4039
  permit: {
@@ -4141,7 +4092,6 @@ export declare const zCreateOrderResponse: z.ZodObject<{
4141
4092
  ipAddress?: string | undefined;
4142
4093
  } | null;
4143
4094
  creatorAddress: string | null;
4144
- partnerId: string | null;
4145
4095
  oneClickBuyUrl: string | null;
4146
4096
  stripePaymentIntentId: string | null;
4147
4097
  permit: {
@@ -15,7 +15,6 @@ const zBaseCreateOrderBody = zod_1.z.object({
15
15
  srcTokenAddress: zod_1.z.string(),
16
16
  dstTokenAddress: zod_1.z.string(),
17
17
  srcAmount: zod_1.z.string(),
18
- partnerId: zod_1.z.string().optional(),
19
18
  onramp: onramp_1.zOnrampMetadata.optional(),
20
19
  creatorAddress: zod_1.z.string().optional()
21
20
  });
@@ -53,7 +53,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
53
53
  ipAddress?: string | undefined;
54
54
  }>>;
55
55
  creatorAddress: z.ZodNullable<z.ZodString>;
56
- partnerId: z.ZodNullable<z.ZodString>;
57
56
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
58
57
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
59
58
  permit: z.ZodNullable<z.ZodObject<{
@@ -239,7 +238,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
239
238
  ipAddress?: string | undefined;
240
239
  } | null;
241
240
  creatorAddress: string | null;
242
- partnerId: string | null;
243
241
  oneClickBuyUrl: string | null;
244
242
  stripePaymentIntentId: string | null;
245
243
  permit: {
@@ -297,7 +295,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
297
295
  ipAddress?: string | undefined;
298
296
  } | null;
299
297
  creatorAddress: string | null;
300
- partnerId: string | null;
301
298
  oneClickBuyUrl: string | null;
302
299
  stripePaymentIntentId: string | null;
303
300
  permit: {
@@ -344,7 +341,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
344
341
  ipAddress?: string | undefined;
345
342
  }>>;
346
343
  creatorAddress: z.ZodNullable<z.ZodString>;
347
- partnerId: z.ZodNullable<z.ZodString>;
348
344
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
349
345
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
350
346
  permit: z.ZodNullable<z.ZodObject<{
@@ -614,7 +610,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
614
610
  ipAddress?: string | undefined;
615
611
  } | null;
616
612
  creatorAddress: string | null;
617
- partnerId: string | null;
618
613
  oneClickBuyUrl: string | null;
619
614
  stripePaymentIntentId: string | null;
620
615
  permit: {
@@ -686,7 +681,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
686
681
  ipAddress?: string | undefined;
687
682
  } | null;
688
683
  creatorAddress: string | null;
689
- partnerId: string | null;
690
684
  oneClickBuyUrl: string | null;
691
685
  stripePaymentIntentId: string | null;
692
686
  permit: {
@@ -733,7 +727,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
733
727
  ipAddress?: string | undefined;
734
728
  }>>;
735
729
  creatorAddress: z.ZodNullable<z.ZodString>;
736
- partnerId: z.ZodNullable<z.ZodString>;
737
730
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
738
731
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
739
732
  permit: z.ZodNullable<z.ZodObject<{
@@ -953,7 +946,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
953
946
  ipAddress?: string | undefined;
954
947
  } | null;
955
948
  creatorAddress: string | null;
956
- partnerId: string | null;
957
949
  oneClickBuyUrl: string | null;
958
950
  stripePaymentIntentId: string | null;
959
951
  permit: {
@@ -1017,7 +1009,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
1017
1009
  ipAddress?: string | undefined;
1018
1010
  } | null;
1019
1011
  creatorAddress: string | null;
1020
- partnerId: string | null;
1021
1012
  oneClickBuyUrl: string | null;
1022
1013
  stripePaymentIntentId: string | null;
1023
1014
  permit: {
@@ -1064,7 +1055,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
1064
1055
  ipAddress?: string | undefined;
1065
1056
  }>>;
1066
1057
  creatorAddress: z.ZodNullable<z.ZodString>;
1067
- partnerId: z.ZodNullable<z.ZodString>;
1068
1058
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
1069
1059
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
1070
1060
  permit: z.ZodNullable<z.ZodObject<{
@@ -1284,7 +1274,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
1284
1274
  ipAddress?: string | undefined;
1285
1275
  } | null;
1286
1276
  creatorAddress: string | null;
1287
- partnerId: string | null;
1288
1277
  oneClickBuyUrl: string | null;
1289
1278
  stripePaymentIntentId: string | null;
1290
1279
  permit: {
@@ -1348,7 +1337,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
1348
1337
  ipAddress?: string | undefined;
1349
1338
  } | null;
1350
1339
  creatorAddress: string | null;
1351
- partnerId: string | null;
1352
1340
  oneClickBuyUrl: string | null;
1353
1341
  stripePaymentIntentId: string | null;
1354
1342
  permit: {
@@ -1395,7 +1383,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
1395
1383
  ipAddress?: string | undefined;
1396
1384
  }>>;
1397
1385
  creatorAddress: z.ZodNullable<z.ZodString>;
1398
- partnerId: z.ZodNullable<z.ZodString>;
1399
1386
  oneClickBuyUrl: z.ZodNullable<z.ZodString>;
1400
1387
  stripePaymentIntentId: z.ZodNullable<z.ZodString>;
1401
1388
  permit: z.ZodNullable<z.ZodObject<{
@@ -1591,7 +1578,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
1591
1578
  ipAddress?: string | undefined;
1592
1579
  } | null;
1593
1580
  creatorAddress: string | null;
1594
- partnerId: string | null;
1595
1581
  oneClickBuyUrl: string | null;
1596
1582
  stripePaymentIntentId: string | null;
1597
1583
  permit: {
@@ -1652,7 +1638,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
1652
1638
  ipAddress?: string | undefined;
1653
1639
  } | null;
1654
1640
  creatorAddress: string | null;
1655
- partnerId: string | null;
1656
1641
  oneClickBuyUrl: string | null;
1657
1642
  stripePaymentIntentId: string | null;
1658
1643
  permit: {
@@ -1793,7 +1778,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
1793
1778
  ipAddress?: string | undefined;
1794
1779
  } | null;
1795
1780
  creatorAddress: string | null;
1796
- partnerId: string | null;
1797
1781
  oneClickBuyUrl: string | null;
1798
1782
  stripePaymentIntentId: string | null;
1799
1783
  permit: {
@@ -1865,7 +1849,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
1865
1849
  ipAddress?: string | undefined;
1866
1850
  } | null;
1867
1851
  creatorAddress: string | null;
1868
- partnerId: string | null;
1869
1852
  oneClickBuyUrl: string | null;
1870
1853
  stripePaymentIntentId: string | null;
1871
1854
  permit: {
@@ -1929,7 +1912,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
1929
1912
  ipAddress?: string | undefined;
1930
1913
  } | null;
1931
1914
  creatorAddress: string | null;
1932
- partnerId: string | null;
1933
1915
  oneClickBuyUrl: string | null;
1934
1916
  stripePaymentIntentId: string | null;
1935
1917
  permit: {
@@ -1993,7 +1975,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
1993
1975
  ipAddress?: string | undefined;
1994
1976
  } | null;
1995
1977
  creatorAddress: string | null;
1996
- partnerId: string | null;
1997
1978
  oneClickBuyUrl: string | null;
1998
1979
  stripePaymentIntentId: string | null;
1999
1980
  permit: {
@@ -2052,7 +2033,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
2052
2033
  ipAddress?: string | undefined;
2053
2034
  } | null;
2054
2035
  creatorAddress: string | null;
2055
- partnerId: string | null;
2056
2036
  oneClickBuyUrl: string | null;
2057
2037
  stripePaymentIntentId: string | null;
2058
2038
  permit: {
@@ -2143,7 +2123,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
2143
2123
  ipAddress?: string | undefined;
2144
2124
  } | null;
2145
2125
  creatorAddress: string | null;
2146
- partnerId: string | null;
2147
2126
  oneClickBuyUrl: string | null;
2148
2127
  stripePaymentIntentId: string | null;
2149
2128
  permit: {
@@ -2215,7 +2194,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
2215
2194
  ipAddress?: string | undefined;
2216
2195
  } | null;
2217
2196
  creatorAddress: string | null;
2218
- partnerId: string | null;
2219
2197
  oneClickBuyUrl: string | null;
2220
2198
  stripePaymentIntentId: string | null;
2221
2199
  permit: {
@@ -2279,7 +2257,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
2279
2257
  ipAddress?: string | undefined;
2280
2258
  } | null;
2281
2259
  creatorAddress: string | null;
2282
- partnerId: string | null;
2283
2260
  oneClickBuyUrl: string | null;
2284
2261
  stripePaymentIntentId: string | null;
2285
2262
  permit: {
@@ -2343,7 +2320,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
2343
2320
  ipAddress?: string | undefined;
2344
2321
  } | null;
2345
2322
  creatorAddress: string | null;
2346
- partnerId: string | null;
2347
2323
  oneClickBuyUrl: string | null;
2348
2324
  stripePaymentIntentId: string | null;
2349
2325
  permit: {
@@ -2402,7 +2378,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
2402
2378
  ipAddress?: string | undefined;
2403
2379
  } | null;
2404
2380
  creatorAddress: string | null;
2405
- partnerId: string | null;
2406
2381
  oneClickBuyUrl: string | null;
2407
2382
  stripePaymentIntentId: string | null;
2408
2383
  permit: {
@@ -2497,7 +2472,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
2497
2472
  ipAddress?: string | undefined;
2498
2473
  } | null;
2499
2474
  creatorAddress: string | null;
2500
- partnerId: string | null;
2501
2475
  oneClickBuyUrl: string | null;
2502
2476
  stripePaymentIntentId: string | null;
2503
2477
  permit: {
@@ -2569,7 +2543,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
2569
2543
  ipAddress?: string | undefined;
2570
2544
  } | null;
2571
2545
  creatorAddress: string | null;
2572
- partnerId: string | null;
2573
2546
  oneClickBuyUrl: string | null;
2574
2547
  stripePaymentIntentId: string | null;
2575
2548
  permit: {
@@ -2633,7 +2606,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
2633
2606
  ipAddress?: string | undefined;
2634
2607
  } | null;
2635
2608
  creatorAddress: string | null;
2636
- partnerId: string | null;
2637
2609
  oneClickBuyUrl: string | null;
2638
2610
  stripePaymentIntentId: string | null;
2639
2611
  permit: {
@@ -2697,7 +2669,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
2697
2669
  ipAddress?: string | undefined;
2698
2670
  } | null;
2699
2671
  creatorAddress: string | null;
2700
- partnerId: string | null;
2701
2672
  oneClickBuyUrl: string | null;
2702
2673
  stripePaymentIntentId: string | null;
2703
2674
  permit: {
@@ -2756,7 +2727,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
2756
2727
  ipAddress?: string | undefined;
2757
2728
  } | null;
2758
2729
  creatorAddress: string | null;
2759
- partnerId: string | null;
2760
2730
  oneClickBuyUrl: string | null;
2761
2731
  stripePaymentIntentId: string | null;
2762
2732
  permit: {
@@ -2852,7 +2822,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
2852
2822
  ipAddress?: string | undefined;
2853
2823
  } | null;
2854
2824
  creatorAddress: string | null;
2855
- partnerId: string | null;
2856
2825
  oneClickBuyUrl: string | null;
2857
2826
  stripePaymentIntentId: string | null;
2858
2827
  permit: {
@@ -2924,7 +2893,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
2924
2893
  ipAddress?: string | undefined;
2925
2894
  } | null;
2926
2895
  creatorAddress: string | null;
2927
- partnerId: string | null;
2928
2896
  oneClickBuyUrl: string | null;
2929
2897
  stripePaymentIntentId: string | null;
2930
2898
  permit: {
@@ -2988,7 +2956,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
2988
2956
  ipAddress?: string | undefined;
2989
2957
  } | null;
2990
2958
  creatorAddress: string | null;
2991
- partnerId: string | null;
2992
2959
  oneClickBuyUrl: string | null;
2993
2960
  stripePaymentIntentId: string | null;
2994
2961
  permit: {
@@ -3052,7 +3019,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
3052
3019
  ipAddress?: string | undefined;
3053
3020
  } | null;
3054
3021
  creatorAddress: string | null;
3055
- partnerId: string | null;
3056
3022
  oneClickBuyUrl: string | null;
3057
3023
  stripePaymentIntentId: string | null;
3058
3024
  permit: {
@@ -3111,7 +3077,6 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
3111
3077
  ipAddress?: string | undefined;
3112
3078
  } | null;
3113
3079
  creatorAddress: string | null;
3114
- partnerId: string | null;
3115
3080
  oneClickBuyUrl: string | null;
3116
3081
  stripePaymentIntentId: string | null;
3117
3082
  permit: {