@stridge/kit 0.1.0-alpha.60 → 0.1.0-alpha.61

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 (185) hide show
  1. package/dist/KitProvider.d.ts +0 -21
  2. package/dist/KitProvider.js +1 -1
  3. package/dist/_internal/deposit/driver/index.d.ts +3 -3
  4. package/dist/_internal/drivers/stridge-mock/index.d.ts +3 -2
  5. package/dist/_internal/drivers/stridge-mock/index.js +1 -1
  6. package/dist/activity/compound/index.js +1 -1
  7. package/dist/deposit/compound/index.d.ts +13 -10
  8. package/dist/deposit/compound/index.js +1 -1
  9. package/dist/deposit/widgets/index.d.ts +4 -3
  10. package/dist/deposit/widgets/index.js +1 -1
  11. package/dist/drivers/stridge/createStridgeDepositDriver.js +1 -1
  12. package/dist/drivers/stridge-mock/checkoutChannel.d.ts +31 -0
  13. package/dist/drivers/stridge-mock/checkoutChannel.js +1 -0
  14. package/dist/drivers/stridge-mock/createStridgeMockDriver.d.ts +28 -0
  15. package/dist/drivers/stridge-mock/createStridgeMockDriver.js +1 -1
  16. package/dist/drivers/stridge-mock/fixtures.d.ts +6 -2
  17. package/dist/drivers/stridge-mock/fixtures.js +1 -1
  18. package/dist/drivers/stridge-mock/triggers.d.ts +12 -0
  19. package/dist/events/emit/useDepositEmissions.js +1 -1
  20. package/dist/flows/deposit/dialog/DepositDialog.js +1 -1
  21. package/dist/flows/deposit/driver/payloads.d.ts +77 -20
  22. package/dist/flows/deposit/driver/types.d.ts +64 -10
  23. package/dist/flows/deposit/orchestrator/controller.js +1 -1
  24. package/dist/flows/deposit/orchestrator/index.d.ts +1 -1
  25. package/dist/flows/deposit/orchestrator/reducer.js +1 -1
  26. package/dist/flows/deposit/orchestrator/types.d.ts +102 -59
  27. package/dist/flows/deposit/shared/checkoutPopup.js +1 -0
  28. package/dist/flows/deposit/shared/onramp.js +1 -0
  29. package/dist/flows/deposit/widgets/amount-entry/AmountEntry.js +1 -1
  30. package/dist/flows/deposit/widgets/deposit/Deposit.js +1 -1
  31. package/dist/flows/deposit/widgets/deposit/compound/Deposit.d.ts +5 -5
  32. package/dist/flows/deposit/widgets/deposit/compound/components/Guards.js +1 -1
  33. package/dist/flows/deposit/widgets/deposit/compound/components/Methods.d.ts +1 -2
  34. package/dist/flows/deposit/widgets/deposit/compound/components/RailPicker.js +1 -1
  35. package/dist/flows/deposit/widgets/deposit/compound/types.d.ts +9 -9
  36. package/dist/flows/deposit/widgets/error-state/ErrorState.js +1 -1
  37. package/dist/flows/deposit/widgets/onramp-amount-entry/OnrampAmountEntry.d.ts +64 -0
  38. package/dist/flows/deposit/widgets/onramp-amount-entry/OnrampAmountEntry.js +1 -0
  39. package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.d.ts +62 -0
  40. package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.js +1 -0
  41. package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.slots.d.ts +14 -0
  42. package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.slots.js +1 -0
  43. package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.styles.js +1 -0
  44. package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/HeroLabel.d.ts +13 -0
  45. package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/HeroLabel.js +1 -0
  46. package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/ReceiveChip.d.ts +14 -0
  47. package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/ReceiveChip.js +1 -0
  48. package/dist/flows/deposit/widgets/{cash-amount-entry → onramp-amount-entry}/compound/context.js +1 -1
  49. package/dist/flows/deposit/widgets/onramp-amount-entry/compound/index.d.ts +3 -0
  50. package/dist/flows/deposit/widgets/onramp-amount-entry/compound/index.js +1 -0
  51. package/dist/flows/deposit/widgets/onramp-amount-entry/compound/types.d.ts +29 -0
  52. package/dist/flows/deposit/widgets/onramp-amount-entry/index.d.ts +1 -0
  53. package/dist/flows/deposit/widgets/onramp-amount-entry/index.js +1 -0
  54. package/dist/flows/deposit/widgets/onramp-confirm/OnrampConfirm.d.ts +50 -0
  55. package/dist/flows/deposit/widgets/onramp-confirm/OnrampConfirm.js +1 -0
  56. package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.d.ts +42 -0
  57. package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.js +1 -0
  58. package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.slots.d.ts +24 -0
  59. package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.slots.js +1 -0
  60. package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.styles.js +1 -0
  61. package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Body.d.ts +16 -0
  62. package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Body.js +1 -0
  63. package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Header.d.ts +15 -0
  64. package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Header.js +1 -0
  65. package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Summary.d.ts +15 -0
  66. package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Summary.js +1 -0
  67. package/dist/flows/deposit/widgets/onramp-confirm/compound/context.d.ts +25 -0
  68. package/dist/flows/deposit/widgets/{cash-confirm → onramp-confirm}/compound/context.js +1 -1
  69. package/dist/flows/deposit/widgets/onramp-confirm/compound/index.d.ts +4 -0
  70. package/dist/flows/deposit/widgets/onramp-confirm/compound/index.js +1 -0
  71. package/dist/flows/deposit/widgets/onramp-confirm/compound/types.d.ts +62 -0
  72. package/dist/flows/deposit/widgets/onramp-confirm/index.d.ts +1 -0
  73. package/dist/flows/deposit/widgets/onramp-confirm/index.js +1 -0
  74. package/dist/flows/deposit/widgets/onramp-payment-pending/OnrampPaymentPending.d.ts +48 -0
  75. package/dist/flows/deposit/widgets/onramp-payment-pending/OnrampPaymentPending.js +1 -0
  76. package/dist/flows/deposit/widgets/onramp-payment-pending/compound/OnrampPaymentPending.d.ts +63 -0
  77. package/dist/flows/deposit/widgets/onramp-payment-pending/compound/OnrampPaymentPending.js +1 -0
  78. package/dist/flows/deposit/widgets/onramp-payment-pending/compound/OnrampPaymentPending.slots.d.ts +14 -0
  79. package/dist/flows/deposit/widgets/onramp-payment-pending/compound/OnrampPaymentPending.slots.js +1 -0
  80. package/dist/flows/deposit/widgets/onramp-payment-pending/compound/components/ReopenButton.d.ts +11 -0
  81. package/dist/flows/deposit/widgets/onramp-payment-pending/compound/components/ReopenButton.js +1 -0
  82. package/dist/flows/deposit/widgets/onramp-payment-pending/compound/context.js +1 -0
  83. package/dist/flows/deposit/widgets/onramp-payment-pending/compound/index.d.ts +2 -0
  84. package/dist/flows/deposit/widgets/onramp-payment-pending/compound/index.js +1 -0
  85. package/dist/flows/deposit/widgets/onramp-payment-pending/index.d.ts +1 -0
  86. package/dist/flows/deposit/widgets/onramp-payment-pending/index.js +1 -0
  87. package/dist/flows/deposit/widgets/success-state/SuccessState.js +1 -1
  88. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/QrCode.js +1 -1
  89. package/dist/i18n/locales/ar.js +1 -1
  90. package/dist/i18n/locales/es.js +1 -1
  91. package/dist/i18n/locales/source-keys.d.ts +1 -1
  92. package/dist/icons/index.d.ts +1 -8
  93. package/dist/icons/index.js +1 -1
  94. package/dist/index.d.ts +3 -4
  95. package/dist/index.js +1 -1
  96. package/dist/package.js +1 -1
  97. package/dist/shared/icons/BitcoinIcon.d.ts +5 -8
  98. package/dist/shared/icons/BitcoinIcon.js +1 -1
  99. package/dist/shared/icons/CardIcon.d.ts +3 -3
  100. package/dist/shared/orchestrator/index.js +1 -1
  101. package/dist/shared/orchestrator/useOnrampSessionWatcher.js +1 -0
  102. package/dist/shared/ui/Tabs/Tabs.d.ts +2 -2
  103. package/dist/shared/widgets/activity/compound/ActivityDetail.js +1 -1
  104. package/dist/shared/widgets/amount-entry/compound/AmountEntry.js +1 -1
  105. package/dist/shared/widgets/amount-entry/compound/components/Footer.js +1 -1
  106. package/dist/shared/widgets/amount-entry/compound/types.d.ts +6 -0
  107. package/dist/stridge/StridgeProvider.d.ts +0 -10
  108. package/dist/stridge/StridgeProvider.js +1 -1
  109. package/dist/stridge/stubs.js +1 -1
  110. package/dist/styles/index.css +4 -44
  111. package/dist/types.d.ts +3 -3
  112. package/dist/version.js +1 -1
  113. package/dist/withdraw/compound/index.js +1 -1
  114. package/package.json +1 -1
  115. package/dist/flows/deposit/bindings/DepositBindings.d.ts +0 -87
  116. package/dist/flows/deposit/bindings/DepositBindings.js +0 -1
  117. package/dist/flows/deposit/bindings/index.d.ts +0 -1
  118. package/dist/flows/deposit/bindings/index.js +0 -1
  119. package/dist/flows/deposit/shared/cash.d.ts +0 -20
  120. package/dist/flows/deposit/shared/cash.js +0 -1
  121. package/dist/flows/deposit/widgets/cash-amount-entry/CashAmountEntry.d.ts +0 -71
  122. package/dist/flows/deposit/widgets/cash-amount-entry/CashAmountEntry.js +0 -1
  123. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.d.ts +0 -69
  124. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.js +0 -1
  125. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.slots.d.ts +0 -16
  126. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.slots.js +0 -1
  127. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.styles.js +0 -1
  128. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/HeroLabel.d.ts +0 -13
  129. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/HeroLabel.js +0 -1
  130. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/MethodChip.d.ts +0 -18
  131. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/MethodChip.js +0 -1
  132. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/ReceiveChip.d.ts +0 -14
  133. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/ReceiveChip.js +0 -1
  134. package/dist/flows/deposit/widgets/cash-amount-entry/compound/index.d.ts +0 -3
  135. package/dist/flows/deposit/widgets/cash-amount-entry/compound/index.js +0 -1
  136. package/dist/flows/deposit/widgets/cash-amount-entry/compound/types.d.ts +0 -42
  137. package/dist/flows/deposit/widgets/cash-amount-entry/index.d.ts +0 -1
  138. package/dist/flows/deposit/widgets/cash-amount-entry/index.js +0 -1
  139. package/dist/flows/deposit/widgets/cash-confirm/CashConfirm.d.ts +0 -63
  140. package/dist/flows/deposit/widgets/cash-confirm/CashConfirm.js +0 -1
  141. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.d.ts +0 -54
  142. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.js +0 -1
  143. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.slots.d.ts +0 -33
  144. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.slots.js +0 -1
  145. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.styles.js +0 -1
  146. package/dist/flows/deposit/widgets/cash-confirm/compound/cashConfirmDimensions.js +0 -1
  147. package/dist/flows/deposit/widgets/cash-confirm/compound/components/ApplePayBody.d.ts +0 -15
  148. package/dist/flows/deposit/widgets/cash-confirm/compound/components/ApplePayBody.js +0 -1
  149. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Body.d.ts +0 -22
  150. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Body.js +0 -1
  151. package/dist/flows/deposit/widgets/cash-confirm/compound/components/BodyLabel.js +0 -1
  152. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardBody.d.ts +0 -16
  153. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardBody.js +0 -1
  154. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.icons.js +0 -1
  155. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.js +0 -1
  156. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.keys.js +0 -1
  157. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.state.js +0 -1
  158. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.styles.js +0 -1
  159. package/dist/flows/deposit/widgets/cash-confirm/compound/components/GooglePayBody.d.ts +0 -16
  160. package/dist/flows/deposit/widgets/cash-confirm/compound/components/GooglePayBody.js +0 -1
  161. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Header.d.ts +0 -21
  162. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Header.js +0 -1
  163. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Summary.d.ts +0 -17
  164. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Summary.js +0 -1
  165. package/dist/flows/deposit/widgets/cash-confirm/compound/components/cardFormat.js +0 -1
  166. package/dist/flows/deposit/widgets/cash-confirm/compound/index.d.ts +0 -3
  167. package/dist/flows/deposit/widgets/cash-confirm/compound/index.js +0 -1
  168. package/dist/flows/deposit/widgets/cash-confirm/compound/types.d.ts +0 -66
  169. package/dist/flows/deposit/widgets/cash-confirm/index.d.ts +0 -1
  170. package/dist/flows/deposit/widgets/cash-confirm/index.js +0 -1
  171. package/dist/flows/deposit/widgets/cash-confirm/mocks.js +0 -1
  172. package/dist/shared/icons/AmexIcon.d.ts +0 -14
  173. package/dist/shared/icons/AmexIcon.js +0 -1
  174. package/dist/shared/icons/ApplePayIcon.d.ts +0 -15
  175. package/dist/shared/icons/ApplePayIcon.js +0 -1
  176. package/dist/shared/icons/CashIcon.d.ts +0 -16
  177. package/dist/shared/icons/CashIcon.js +0 -1
  178. package/dist/shared/icons/DiscoverIcon.d.ts +0 -14
  179. package/dist/shared/icons/DiscoverIcon.js +0 -1
  180. package/dist/shared/icons/GooglePayIcon.d.ts +0 -15
  181. package/dist/shared/icons/GooglePayIcon.js +0 -1
  182. package/dist/shared/icons/MastercardIcon.d.ts +0 -16
  183. package/dist/shared/icons/MastercardIcon.js +0 -1
  184. package/dist/shared/icons/VisaIcon.d.ts +0 -15
  185. package/dist/shared/icons/VisaIcon.js +0 -1
@@ -0,0 +1 @@
1
+ "use client";import{createContext as e,use as t}from"react";const n=e(null);function r(e){let r=t(n);if(!r)throw Error(`${e} must be rendered inside <OnrampPaymentPending>.`);return r}export{n as OnrampPaymentPendingContext,r as useOnrampPaymentPendingContext};
@@ -0,0 +1,2 @@
1
+ import { OnrampPaymentPending, OnrampPaymentPendingProps } from "./OnrampPaymentPending.js";
2
+ import { ONRAMP_PAYMENT_PENDING_SLOTS, OnrampPaymentPendingSlot } from "./OnrampPaymentPending.slots.js";
@@ -0,0 +1 @@
1
+ import"./OnrampPaymentPending.slots.js";import"./OnrampPaymentPending.js";
@@ -0,0 +1 @@
1
+ import { OnrampPaymentPending } from "./OnrampPaymentPending.js";
@@ -0,0 +1 @@
1
+ import"./OnrampPaymentPending.js";
@@ -1 +1 @@
1
- "use client";import{useDepositSnapshot as e}from"../../driver/context.js";import{useDepositActions as t,useDepositEffectiveState as n}from"../../orchestrator/controller.js";import{DialogShell as r}from"../../../../shared/dialog/DialogShell.js";import{SuccessState as i}from"../../../../shared/widgets/success-state/compound/SuccessState.js";import"../../../../shared/widgets/success-state/compound/index.js";import{toAssetDescriptor as a}from"../../../../shared/widgets/asset-descriptor.js";import{Fragment as o,jsx as s,jsxs as c}from"react/jsx-runtime";function l({children:r,...l}){let u=e(),d=n().name,{successDone:f}=t();if(d!==`success`)return null;let p=u.settlement;if(p.status!==`ready`||p.payload.kind!==`succeeded`)return null;let m=p.payload,h=u.brand,g=h.status===`ready`||h.status===`stale`?h.payload.name:void 0,_=m.destination.name??g??m.creditedAsset.symbol,v=m.aggregatorExplorerUrl?{url:m.aggregatorExplorerUrl}:void 0,y=m.depositTx||m.completionTx||m.submittedAt||m.filledAt,b=a(m.creditedAsset)??{symbol:m.creditedAsset.symbol},x={...m.sourceWallet.name===void 0?{}:{name:m.sourceWallet.name},address:m.sourceWallet.address.formatted,...m.sourceWallet.explorerUrl?{explorerUrl:m.sourceWallet.explorerUrl}:{}};return s(i,{...l,amount:m.receiveAmount.formatted,creditedAsset:b,creditedTo:_,...v?{explorer:v}:{},...m.depositTx?{depositTx:{hash:m.depositTx.hash.formatted,...m.depositTx.explorerUrl?{explorerUrl:m.depositTx.explorerUrl}:{}}}:{},...m.completionTx?{completionTx:{hash:m.completionTx.hash.formatted,...m.completionTx.explorerUrl?{explorerUrl:m.completionTx.explorerUrl}:{}}}:{},submittedAt:m.submittedAt.formatted,filledAt:m.filledAt.formatted,totalTime:m.totalTime.formatted,sourceWallet:x,onDone:f,children:r??c(o,{children:[s(i.Header,{}),c(i.Body,{children:[s(i.Headline,{}),c(i.Details,{children:[s(i.FillStatusRow,{}),s(i.TotalTimeRow,{}),s(i.SourceRow,{}),s(i.DestinationRow,{}),s(i.YouReceiveRow,{}),y?c(i.MoreDetails,{children:[s(i.DepositTxRow,{}),s(i.CompletionTxRow,{}),s(i.SubmittedAtRow,{}),s(i.FilledAtRow,{})]}):null]})]}),s(i.Actions,{})]})})}function u({open:e,defaultOpen:t,onOpenChange:n,trigger:i,...a}){return s(r,{open:e,defaultOpen:t,onOpenChange:n,trigger:i,children:s(l,{...a})})}(function(e){e.Dialog=u,e.Header=i.Header,e.Body=i.Body,e.Headline=i.Headline,e.Details=i.Details,e.FillStatusRow=i.FillStatusRow,e.TotalTimeRow=i.TotalTimeRow,e.SourceRow=i.SourceRow,e.DestinationRow=i.DestinationRow,e.YouReceiveRow=i.YouReceiveRow,e.MoreDetails=i.MoreDetails,e.DepositTxRow=i.DepositTxRow,e.CompletionTxRow=i.CompletionTxRow,e.SubmittedAtRow=i.SubmittedAtRow,e.FilledAtRow=i.FilledAtRow,e.Actions=i.Actions})(l||={});export{l as SuccessState};
1
+ "use client";import{useLingui as e}from"../../../../shared/i18n/useLingui.js";import"../../../../i18n/index.js";import{useDepositSnapshot as t}from"../../driver/context.js";import{useDepositActions as n,useDepositEffectiveState as r}from"../../orchestrator/controller.js";import{DialogShell as i}from"../../../../shared/dialog/DialogShell.js";import{SuccessState as a}from"../../../../shared/widgets/success-state/compound/SuccessState.js";import"../../../../shared/widgets/success-state/compound/index.js";import{toAssetDescriptor as o}from"../../../../shared/widgets/asset-descriptor.js";import{Fragment as s,jsx as c,jsxs as l}from"react/jsx-runtime";function u({children:i,...u}){let d=t(),f=r(),p=f.name,{successDone:m}=n(),{_:h}=e();if(p!==`success`)return null;if(f.ctx.method===`onramp`){let e=d.onrampSession,t=e?.status===`ready`||e?.status===`stale`?e.payload:void 0,n=d.onrampQuote,r=n?.status===`ready`||n?.status===`stale`?n.payload:void 0,f=d.brand,p=f.status===`ready`||f.status===`stale`?f.payload.name:void 0,g=r?.receiveAsset.symbol??``,_=t?.receiveAmount?.formatted??r?.receiveAmount.formatted??``,v=r?o({symbol:r.receiveAsset.symbol,chainId:r.receiveAsset.chainId,address:r.receiveAsset.address,isNative:r.receiveAsset.isNative,...r.receiveAsset.assetLogoUrl?{assetLogoUrl:r.receiveAsset.assetLogoUrl}:{}})??{symbol:g}:{symbol:g},y=t?.providerOrderId;return c(a,{...u,amount:_,creditedAsset:v,...p?{creditedTo:p}:{},headlineTitle:h({id:`AGFPtu`,message:`Purchase complete`}),onDone:m,children:i??l(s,{children:[c(a.Header,{}),l(a.Body,{children:[c(a.Headline,{}),l(a.Details,{children:[c(a.YouReceiveRow,{}),y?c(a.Detail,{label:h({id:`oI_hGR`,message:`Order ID`}),value:y}):null]})]}),c(a.Actions,{})]})})}let g=d.settlement;if(g.status!==`ready`||g.payload.kind!==`succeeded`)return null;let _=g.payload,v=d.brand,y=v.status===`ready`||v.status===`stale`?v.payload.name:void 0,b=_.destination.name??y??_.creditedAsset.symbol,x=_.aggregatorExplorerUrl?{url:_.aggregatorExplorerUrl}:void 0,S=_.depositTx||_.completionTx||_.submittedAt||_.filledAt,C=o(_.creditedAsset)??{symbol:_.creditedAsset.symbol},w={..._.sourceWallet.name===void 0?{}:{name:_.sourceWallet.name},address:_.sourceWallet.address.formatted,..._.sourceWallet.explorerUrl?{explorerUrl:_.sourceWallet.explorerUrl}:{}};return c(a,{...u,amount:_.receiveAmount.formatted,creditedAsset:C,creditedTo:b,...x?{explorer:x}:{},..._.depositTx?{depositTx:{hash:_.depositTx.hash.formatted,..._.depositTx.explorerUrl?{explorerUrl:_.depositTx.explorerUrl}:{}}}:{},..._.completionTx?{completionTx:{hash:_.completionTx.hash.formatted,..._.completionTx.explorerUrl?{explorerUrl:_.completionTx.explorerUrl}:{}}}:{},submittedAt:_.submittedAt.formatted,filledAt:_.filledAt.formatted,totalTime:_.totalTime.formatted,sourceWallet:w,onDone:m,children:i??l(s,{children:[c(a.Header,{}),l(a.Body,{children:[c(a.Headline,{}),l(a.Details,{children:[c(a.FillStatusRow,{}),c(a.TotalTimeRow,{}),c(a.SourceRow,{}),c(a.DestinationRow,{}),c(a.YouReceiveRow,{}),S?l(a.MoreDetails,{children:[c(a.DepositTxRow,{}),c(a.CompletionTxRow,{}),c(a.SubmittedAtRow,{}),c(a.FilledAtRow,{})]}):null]})]}),c(a.Actions,{})]})})}function d({open:e,defaultOpen:t,onOpenChange:n,trigger:r,...a}){return c(i,{open:e,defaultOpen:t,onOpenChange:n,trigger:r,children:c(u,{...a})})}(function(e){e.Dialog=d,e.Header=a.Header,e.Body=a.Body,e.Headline=a.Headline,e.Details=a.Details,e.FillStatusRow=a.FillStatusRow,e.TotalTimeRow=a.TotalTimeRow,e.SourceRow=a.SourceRow,e.DestinationRow=a.DestinationRow,e.YouReceiveRow=a.YouReceiveRow,e.MoreDetails=a.MoreDetails,e.DepositTxRow=a.DepositTxRow,e.CompletionTxRow=a.CompletionTxRow,e.SubmittedAtRow=a.SubmittedAtRow,e.FilledAtRow=a.FilledAtRow,e.Actions=a.Actions})(u||={});export{u as SuccessState};
@@ -1 +1 @@
1
- "use client";import{resolveChainLogoChain as e}from"../../../../../../shared/utils/logos/resolveLogoSrc.js";import"../../../../../../shared/utils/logos/index.js";import{Cuer as t}from"../../../../../../shared/cuer/Cuer.js";import"../../../../../../shared/cuer/index.js";import{useTransferCryptoContext as n}from"../context.js";import{TRANSFER_CRYPTO_SLOTS as r}from"../TransferCrypto.slots.js";import{styles as i}from"../TransferCrypto.styles.js";import{useEffect as a,useState as o}from"react";import{jsx as s,jsxs as c}from"react/jsx-runtime";import*as l from"@stylexjs/stylex";function u(){let u=n(`TransferCrypto.QrCode`),d=e({...u.chain.chainId===void 0?{}:{chainId:u.chain.chainId},...u.chain.logoUrl===void 0?{}:{chainLogoUrl:u.chain.logoUrl}}),[f,p]=o(0);a(()=>{p(0)},[d.join(`|`)]);let m=d[f];return s(`div`,{"data-stridge-slot":r.qr,...l.props(i.qrFrame),children:c(t.Root,{value:u.depositAddress,size:160,...l.props(i.qrSvg),children:[s(t.Finder,{}),s(t.Cells,{}),m&&s(t.Arena,{href:m,"aria-label":u.chain.symbol,"data-stridge-slot":r.qrArena,onError:()=>{f<d.length-1&&p(f+1)}},m)]})})}export{u as TransferCryptoQrCode};
1
+ "use client";import{resolveChainLogoChain as e}from"../../../../../../shared/utils/logos/resolveLogoSrc.js";import"../../../../../../shared/utils/logos/index.js";import{useTransferCryptoContext as t}from"../context.js";import{TRANSFER_CRYPTO_SLOTS as n}from"../TransferCrypto.slots.js";import{styles as r}from"../TransferCrypto.styles.js";import{Cuer as i}from"../../../../../../shared/cuer/Cuer.js";import"../../../../../../shared/cuer/index.js";import{useEffect as a,useState as o}from"react";import{jsx as s,jsxs as c}from"react/jsx-runtime";import*as l from"@stylexjs/stylex";function u(){let u=t(`TransferCrypto.QrCode`),d=e({...u.chain.chainId===void 0?{}:{chainId:u.chain.chainId},...u.chain.logoUrl===void 0?{}:{chainLogoUrl:u.chain.logoUrl}}),[f,p]=o(0);a(()=>{p(0)},[d.join(`|`)]);let m=d[f];return s(`div`,{"data-stridge-slot":n.qr,...l.props(r.qrFrame),children:c(i.Root,{value:u.depositAddress,size:160,...l.props(r.qrSvg),children:[s(i.Finder,{}),s(i.Cells,{}),m&&s(i.Arena,{href:m,"aria-label":u.chain.symbol,"data-stridge-slot":n.qrArena,onError:()=>{f<d.length-1&&p(f+1)}},m)]})})}export{u as TransferCryptoQrCode};
@@ -1 +1 @@
1
- const e=JSON.parse(`{"--OGth":["نجح الإيداع"],"-I_tc5":["الحد الأقصى ",["formattedCap"]],"-nuEh_":["الوقت المُقدَّر"],"-tu7Q8":["المزيد عن ",["0"]],"02NghK":["أغلق هذا الحوار وحاول مرة أخرى بعد قليل. إذا استمرت المشكلة، فتحقق من مفتاح البوابة في تكاملك."],"0eg2g7":["جاري تقدير الغاز…"],"0lHlRj":["قيد النقل"],"1zDzn9":["الدفع عبر Google Pay"],"2Eoi_a":["عرض التفاصيل"],"3dqPLT":["تحويل العملة الرقمية"],"3eKjkO":["الحد الأدنى للإيداع ",["formattedMin"]],"3kg1gB":["اكتمل الإيداع"],"3qkDVZ":["عرض التفاصيل"],"3yd3IL":["فشل برنامج تشغيل الإيداع في تحميل إعدادات البوابة."],"5AApJw":["اتصل بمحفظة للمتابعة"],"5joj8M":["تفاصيل المعاملة"],"60ahSE":["معاملة السحب"],"64M0UA":["رمز الأمان غير مكتمل"],"69Gavs":["التفاصيل التقنية"],"6D8qH6":["أرسل العملة المختارة على الشبكة المختارة إلى هذا العنوان. تظهر الأموال في حسابك بمجرد تأكيد الشبكة للتحويل."],"6RDwJM":["العملات"],"6ja7nr":["اضغط للدفع"],"6ws9A3":["Apple Pay"],"6yS5kL":["السحب قيد التنفيذ"],"72c5Qo":["الإجمالي"],"7Bj3x9":["فشل"],"7evBec":["وقت المعالجة: ",["resolvedProcessingTime"]],"88cUW-":["تستلم"],"9JHY2T":["تمت إضافة أموال إيداعك إلى حسابك."],"9XIJb8":["T…"],"9cCjMJ":["إيداع الحد الأقصى من الرصيد"],"< 1 min":["< دقيقة"],"AHyker":["الحد الأقصى ",["0"]],"AO44G_":["عرض الإيصال"],"AOPSKq":["إيداع ",["0"]],"AWtGgd":["احصل على المساعدة"],"AeXO77":["حساب"],"AeZIvT":["ستستلم"],"AikETk":["الحد الأدنى ",["minDeposit"]],"B-4zEC":["تعذر تحميل النشاط. حاول مرة أخرى."],"BhQhbU":["استخدم عنوان المستلم المقترح"],"BoQOH3":["يلزم وجود محفظة لإجراء الإيداع"],"C7cyXd":["تغطي رسوم المعالجة تكلفة معالجة دفعتك عبر طريقة الدفع المختارة."],"CK1KXz":["الأقصى"],"CS69m9":["الدفع بالعملة الرقمية"],"Ck1xL4":["ترسل"],"Cs44l6":["الإيداع قيد التنفيذ"],"D79cZK":["فوري"],"DO0IYK":["تاريخ الانتهاء غير صالح"],"DPfwMq":["تم"],"Dd7jP5":["تواجه مشكلات؟"],"DoS2vD":["إخفاء التفاصيل التقنية"],"ELhVSL":["فشل إرسال الإيداع."],"Ej5HL9":["رُفض التوقيع. حاول مرة أخرى."],"Enslfm":["الوجهة"],"FWbwx6":["Cash deposit unavailable for your account"],"FkAVbF":["جاري الدفع عبر Google Pay"],"G-SK3q":["واجهت الواجهة خطأً غير متوقع وتعذَّر إكمال العرض. حاول مرة أخرى، أو أغلق هذا الحوار وأعد المحاولة من التطبيق."],"GX8GKD":["الأصول"],"GXkBas":["الحد الأقصى ",["formattedLimit"]],"GZPxmc":["أدخل عنوان مستلم صالحاً"],"GcuGHR":["تمت الإضافة إلى ",["captionSuffix"]],"GwkmPx":["تبديل المبلغ المعروض"],"HalPBQ":["الشحن إلى"],"I2Iug_":["ادفع ",["amountFormatted"]," بأمان"],"IDt4jm":[["0","plural",{"zero":["#"," ثانية"],"one":["#"," ثانية"],"two":["#"," ثانية"],"few":["#"," ثوانٍ"],"many":["#"," ثانية"],"other":["#"," ثانية"]}]," متبقية على عرض السعر"],"IRogzB":["تمت إضافة أموال إيداعك إلى ",["brand"],"."],"JYp-ic":["Deposit processing"],"KDw4GX":["حاول مرة أخرى"],"KGoAE6":["تلقائي · ",["value"]],"KTNWsg":["فشل السحب"],"KuqCAK":["~ 2 دقيقة"],"LEbOpR":["مزيد من التفاصيل"],"LSs4cd":["الدفع نقداً"],"Ly6geA":["جاري إعادة احتساب عرض السعر…"],"MZ_nQf":["عنوان المستلم"],"N2DUxS":["رصيد غير كافٍ"],"OLF0i7":["تعذَّر تحميل خيارات الإيداع"],"OSBXx5":["الآن"],"Offl0a":["ستُضاف أموال إيداعك إلى حسابك."],"Oi8TiZ":["عرض التقدم"],"OsyKSt":["سحب"],"P9fBwv":["Stack"],"PiH3UR":["تم النسخ!"],"PknXwq":["ادفع الآن"],"Q12Rrs":["معاملة الإيداع"],"QFwptY":["رسوم المعالجة"],"QU2cIs":["لديك أسئلة؟"],"Qdn2XH":["الشراء عبر Google Pay"],"Rm325-":["سحب ",["amount"],"، ",["date"]],"Rxjdjn":["لم يكتمل الإيداع"],"SMl3YV":["رقم البطاقة غير مكتمل"],"SOVBoe":["نسخ عنوان الإيداع"],"SZRUQ4":["أقصى انزلاق سعري"],"Sjplg3":["عرض في المستكشف"],"SlfejT":["خطأ"],"TG4WOd":["ستُضاف أموال إيداعك إلى ",["brand"],"."],"TMA5Ot":["جاري الدفع عبر Apple Pay"],"TT0aVH":["تم إرسال الطلب"],"Uevt3L":["جاري تقدير العرض"],"UqHbdz":["إغلاق إشعار الإيداع قيد التنفيذ"],"V1fa9u":["عرض المزيد"],"VAZUpd":["فشل الطلب"],"VAxOSg":["تدفع"],"VHOVEJ":["اتصل بالمحفظة"],"WkRH60":["الحد الأدنى ",["0"]],"Wqz0SO":["رصيد منخفض"],"WsByvK":["الدفع عبر Apple Pay"],"XFvFyp":["تم إرسال تفاصيل البطاقة"],"XJOV1Y":["Activity"],"Xzw7uC":["ستظهر إيداعاتك وعمليات السحب هنا."],"YKfMl6":["جاري تحميل إدخال البطاقة الآمن..."],"YruUmm":["تاريخ الانتهاء غير مكتمل"],"Z1WbO6":["الأموال آمنة على شبكة المصدر — تواصل مع الدعم للاسترجاع."],"ZqugiS":["الرصيد: ",["0"]," ",["1"]],"_QZdX-":["تم سحب أموالك بنجاح."],"_girqu":["نجح السحب"],"_kXBrK":["إجمالي الوقت"],"a2WllD":["العملة المستلمة"],"aXFOuf":["لا يوجد نشاط بعد"],"aiEUrg":["إظهار التفاصيل التقنية"],"bAy57M":["الدفع بالبطاقة"],"bGtkfz":["تاريخ الانتهاء"],"bOZXx5":["تحديث الطلب"],"bZnukT":["تكلفة الشبكة"],"c3aao_":["View activity"],"c6Bl9M":["تبديل التفاصيل التقنية"],"cGYrpE":["تطبَّق الشروط"],"cHPbBJ":["تعذَّر على الجسر تمويل معاملة الوجهة (نفد رصيد الغاز)."],"cxR5Qy":["معاملة التسوية"],"e3xU5E":["تم استلام الإيداع"],"eUbBqz":["1 ",["0"]," = ",["1"]],"f-nEg4":["تُدفع رسوم الشبكة لعمَّال التعدين ومدققي البلوكشين لضمان معالجة المعاملة وتأكيدها."],"fKSGnu":["الحد الأدنى للمبلغ المطلوب على هذه الشبكة لتغطية رسوم الشبكة والتوجيه."],"fWsBTs":["حدث خطأ. حاول مرة أخرى."],"flMR3h":["تم سحب أموالك بنجاح."],"g2UNkE":["مشغل بواسطة"],"gfh8CC":["الشبكات"],"hBIHD-":["إيداع ",["amount"],"، ",["date"]],"hKMHs1":["الفرق بين الناتج المتوقع للمسار وسعر السوق الأوسط الأساسي."],"he3ygx":["نسخ"],"hehnjM":["المبلغ"],"i-4Fbp":["فشل الإيداع"],"i-EgW-":["التكلفة التقديرية لبث هذه المعاملة على سلسلة الوجهة."],"i1MfcA":["ستظهر هنا العملات المتاحة للإيداع من محفظتك."],"iH8pgl":["رجوع"],"iROlQr":["تفاصيل البطاقة"],"jKZO-R":["اكتمل السحب"],"jtKSW-":["حد ",["0"]],"junZX6":["تم استلام الإيداع وجاري المعالجة…"],"kH6wUX":["تأثير السعر"],"kR8ayx":["بالنقر على تأكيد الإيداع، فإنك توافق على <0>الشروط</0>."],"kUFhUv":["فشل السحب."],"kj3M8S":["إيداع"],"kjrq_8":["مزيد من المعلومات"],"kryGs-":["بطاقة"],"lDgVWA":["استلام"],"lOEm_1":["تم تنفيذ الطلب"],"ldK3jJ":["فشل إرسال السحب."],"lxjao1":["مسار السيولة المختار المستخدم لتسوية هذا السحب."],"mF_ucv":["اتصل بمحفظة حتى تتمكن البوابة من توفير عنوان إيداع وتوجيه تحويلك."],"meq3YR":["رقم البطاقة غير صالح"],"mgLWEL":["تراجعت معاملة الوجهة على السلسلة."],"mvYQx_":["تم الاكتشاف"],"njn4bC":["أكِّد المعاملة في محفظتك"],"nr03QI":["أدخل عنوان المستلم"],"nwtY4N":["حدث خطأ"],"o-XJ9D":["تغيير"],"oBNGNc":["تغيَّر الناتج المتوقَّع للمسار أثناء انتظار معاملتك."],"oFmN8a":["إيداع ",["symbol"]],"oW1G8i":["تم إيداع أموالك بنجاح."],"ob8R_m":["حاول مرة أخرى أو تواصل معنا إذا استمرت المشكلة."],"ogD_nm":["إيداع إلى ",["0"]],"olEUh2":["ناجح"],"pCzTTC":["عنوان الإيداع الخاص بك"],"pfAinS":["امسح للدفع"],"q32Nt8":["اكتمل السحب"],"qQ5VJt":["يتعذَّر الوصول إلى البوابة الآن"],"qj0vvX":["تأكيد الإيداع"],"qtoOYG":["بدون حد"],"rT8e1f":["المسار"],"rZdp61":["معاملة الإكمال"],"sSiLKx":["شبكة الاستلام"],"sb9Y58":["محفظة"],"sbwbC0":["طريقة الدفع"],"srsA0x":["رُفض السحب."],"t-aixw":["أكّد في محفظة Google"],"t1k2Bt":["إخفاء التفاصيل"],"tInLgk":["جاري الدفع بالبطاقة"],"tTnE4T":["لا توجد أصول للإيداع"],"uPo3PQ":["عرض أقل"],"vepIdX":["سعر العملة الرقمية"],"vrnnn9":["جاري المعالجة"],"w-2VR9":["جاري السحب…"],"wB8KqP":["امسح بكاميرا iPhone"],"wLmRnI":["رمز الأمان"],"wdxz7K":["المصدر"],"wkskq5":["استخدام الحد الأقصى"],"xDAtGP":["الرسالة"],"xGVfLh":["متابعة"],"xHIEQ5":["رقم البطاقة"],"xOUCt3":["خيارات أخرى"],"y1ypMV":["الأكثر شيوعاً"],"y62Dys":["رسوم الشبكة"],"yH9V_J":["أدخل المبلغ"],"yLEjmm":[["resolvedPriceImpact"],"% price impact"],"yMg5R0":["انتهت صلاحية البطاقة"],"yQE2r9":["جارٍ التحميل"],"y_0uwd":["أمس"],"ybKOj4":["Google Pay"],"yrvWai":["معاملة المصدر"],"yxnt3y":["حالة التنفيذ"],"yy2rkt":["0x…"],"yz7wBu":["إغلاق"],"zYD5xm":["جاري الإضافة"],"zbtijb":["إيداع ",["0"]," إلى ",["1"]],"znqB4T":["رصيد غير كافٍ"],"{hours} hr":[["hours"]," ساعة"],"{minutes} min":[["minutes"]," دقيقة"],"{n}h":[["n"],"س"],"{n}m":[["n"],"د"],"{n}s":[["n"],"ث"]}`);export{e as messages};
1
+ const e=JSON.parse(`{"--OGth":["نجح الإيداع"],"-I_tc5":["الحد الأقصى ",["formattedCap"]],"-nuEh_":["الوقت المُقدَّر"],"-tu7Q8":["المزيد عن ",["0"]],"02NghK":["أغلق هذا الحوار وحاول مرة أخرى بعد قليل. إذا استمرت المشكلة، فتحقق من مفتاح البوابة في تكاملك."],"0TEl46":["العملات المشفّرة"],"0VFO13":["تم إلغاء الدفع"],"0eg2g7":["جاري تقدير الغاز…"],"0lHlRj":["قيد النقل"],"2Eoi_a":["عرض التفاصيل"],"3dqPLT":["تحويل العملة الرقمية"],"3eKjkO":["الحد الأدنى للإيداع ",["formattedMin"]],"3kg1gB":["اكتمل الإيداع"],"3qkDVZ":["عرض التفاصيل"],"3yd3IL":["فشل برنامج تشغيل الإيداع في تحميل إعدادات البوابة."],"3ytoeI":["تم استرداد هذه الدفعة. لم يتم تسليم أي عملة رقمية."],"5AApJw":["اتصل بمحفظة للمتابعة"],"5R2524":["لقد ألغيت الدفع قبل اكتماله."],"5joj8M":["تفاصيل المعاملة"],"60ahSE":["معاملة السحب"],"69Gavs":["التفاصيل التقنية"],"6D8qH6":["أرسل العملة المختارة على الشبكة المختارة إلى هذا العنوان. تظهر الأموال في حسابك بمجرد تأكيد الشبكة للتحويل."],"6RDwJM":["العملات"],"6yS5kL":["السحب قيد التنفيذ"],"72c5Qo":["الإجمالي"],"7Bj3x9":["فشل"],"7evBec":["وقت المعالجة: ",["resolvedProcessingTime"]],"88cUW-":["تستلم"],"9JHY2T":["تمت إضافة أموال إيداعك إلى حسابك."],"9XIJb8":["T…"],"9cCjMJ":["إيداع الحد الأقصى من الرصيد"],"9d3cBd":["تعذّر فتح نافذة الدفع. حاول مرة أخرى."],"9k9fRZ":["جارٍ فتح صفحة الدفع…"],"< 1 min":["< دقيقة"],"A-C4hO":["تغطي رسوم المعالجة تكلفة معالجة دفعتك عبر مزوّد الدفع المستضاف."],"AGFPtu":["اكتمل الشراء"],"AHyker":["الحد الأقصى ",["0"]],"AO44G_":["عرض الإيصال"],"AOPSKq":["إيداع ",["0"]],"AWtGgd":["احصل على المساعدة"],"AeXO77":["حساب"],"AeZIvT":["ستستلم"],"AikETk":["الحد الأدنى ",["minDeposit"]],"B-4zEC":["تعذر تحميل النشاط. حاول مرة أخرى."],"BhQhbU":["استخدم عنوان المستلم المقترح"],"BoQOH3":["يلزم وجود محفظة لإجراء الإيداع"],"CK1KXz":["الأقصى"],"Ck1xL4":["ترسل"],"Cs44l6":["الإيداع قيد التنفيذ"],"D79cZK":["فوري"],"DPfwMq":["تم"],"Dd7jP5":["تواجه مشكلات؟"],"DoS2vD":["إخفاء التفاصيل التقنية"],"ELhVSL":["فشل إرسال الإيداع."],"Ej5HL9":["رُفض التوقيع. حاول مرة أخرى."],"Enslfm":["الوجهة"],"EzZNDI":["الدفع بالبطاقة غير متاح في منطقتك"],"G-SK3q":["واجهت الواجهة خطأً غير متوقع وتعذَّر إكمال العرض. حاول مرة أخرى، أو أغلق هذا الحوار وأعد المحاولة من التطبيق."],"GX8GKD":["الأصول"],"GXkBas":["الحد الأقصى ",["formattedLimit"]],"GZPxmc":["أدخل عنوان مستلم صالحاً"],"GcuGHR":["تمت الإضافة إلى ",["captionSuffix"]],"GwkmPx":["تبديل المبلغ المعروض"],"HalPBQ":["الشحن إلى"],"IDt4jm":[["0","plural",{"zero":["#"," ثانية"],"one":["#"," ثانية"],"two":["#"," ثانية"],"few":["#"," ثوانٍ"],"many":["#"," ثانية"],"other":["#"," ثانية"]}]," متبقية على عرض السعر"],"IRogzB":["تمت إضافة أموال إيداعك إلى ",["brand"],"."],"JYp-ic":["Deposit processing"],"KDw4GX":["حاول مرة أخرى"],"KGoAE6":["تلقائي · ",["value"]],"KTNWsg":["فشل السحب"],"KuqCAK":["~ 2 دقيقة"],"LEbOpR":["مزيد من التفاصيل"],"Ly6geA":["جاري إعادة احتساب عرض السعر…"],"MZ_nQf":["عنوان المستلم"],"N2DUxS":["رصيد غير كافٍ"],"NzshpK":["فشل الشراء"],"OLF0i7":["تعذَّر تحميل خيارات الإيداع"],"OSBXx5":["الآن"],"Offl0a":["ستُضاف أموال إيداعك إلى حسابك."],"Oi8TiZ":["عرض التقدم"],"OsyKSt":["سحب"],"P9fBwv":["Stack"],"PiH3UR":["تم النسخ!"],"Q12Rrs":["معاملة الإيداع"],"QFwptY":["رسوم المعالجة"],"QU2cIs":["لديك أسئلة؟"],"Rm325-":["سحب ",["amount"],"، ",["date"]],"Rxjdjn":["لم يكتمل الإيداع"],"S7anoa":["انتهت مهلة الدفع"],"SOVBoe":["نسخ عنوان الإيداع"],"SZRUQ4":["أقصى انزلاق سعري"],"Sjplg3":["عرض في المستكشف"],"SlfejT":["خطأ"],"TG4WOd":["ستُضاف أموال إيداعك إلى ",["brand"],"."],"TT0aVH":["تم إرسال الطلب"],"UDBU3S":["تم رفض دفعتك. جرّب بطاقة أو مبلغًا مختلفًا."],"Uevt3L":["جاري تقدير العرض"],"UqHbdz":["إغلاق إشعار الإيداع قيد التنفيذ"],"V1fa9u":["عرض المزيد"],"VAZUpd":["فشل الطلب"],"VAxOSg":["تدفع"],"VHOVEJ":["اتصل بالمحفظة"],"V_WXOs":["إعادة فتح نافذة الدفع"],"WkRH60":["الحد الأدنى ",["0"]],"Wqz0SO":["رصيد منخفض"],"XJOV1Y":["Activity"],"X_Y-Ev":["حدث خطأ ما في عملية الشراء. يُرجى المحاولة مرة أخرى."],"Xzw7uC":["ستظهر إيداعاتك وعمليات السحب هنا."],"Z0UMar":["تعذّر الحصول على عرض السعر."],"Z1WbO6":["الأموال آمنة على شبكة المصدر — تواصل مع الدعم للاسترجاع."],"Z1fsV0":["انتهت صلاحية نافذة الدفع قبل اكتمال العملية."],"ZqugiS":["الرصيد: ",["0"]," ",["1"]],"_QZdX-":["تم سحب أموالك بنجاح."],"_girqu":["نجح السحب"],"_kXBrK":["إجمالي الوقت"],"_rHUhS":["نقدًا"],"a2WllD":["العملة المستلمة"],"aXFOuf":["لا يوجد نشاط بعد"],"aiEUrg":["إظهار التفاصيل التقنية"],"bOZXx5":["تحديث الطلب"],"bZnukT":["تكلفة الشبكة"],"c3aao_":["View activity"],"c6Bl9M":["تبديل التفاصيل التقنية"],"cGYrpE":["تطبَّق الشروط"],"cHPbBJ":["تعذَّر على الجسر تمويل معاملة الوجهة (نفد رصيد الغاز)."],"cxR5Qy":["معاملة التسوية"],"e3xU5E":["تم استلام الإيداع"],"eUbBqz":["1 ",["0"]," = ",["1"]],"f-nEg4":["تُدفع رسوم الشبكة لعمَّال التعدين ومدققي البلوكشين لضمان معالجة المعاملة وتأكيدها."],"fKSGnu":["الحد الأدنى للمبلغ المطلوب على هذه الشبكة لتغطية رسوم الشبكة والتوجيه."],"fWsBTs":["حدث خطأ. حاول مرة أخرى."],"flMR3h":["تم سحب أموالك بنجاح."],"g2UNkE":["مشغل بواسطة"],"gfh8CC":["الشبكات"],"hBIHD-":["إيداع ",["amount"],"، ",["date"]],"hKMHs1":["الفرق بين الناتج المتوقع للمسار وسعر السوق الأوسط الأساسي."],"hMqszB":["المتابعة إلى الدفع"],"hPpyl6":["تم استرداد المبلغ"],"he3ygx":["نسخ"],"hehnjM":["المبلغ"],"i-4Fbp":["فشل الإيداع"],"i-EgW-":["التكلفة التقديرية لبث هذه المعاملة على سلسلة الوجهة."],"i1MfcA":["ستظهر هنا العملات المتاحة للإيداع من محفظتك."],"iH8pgl":["رجوع"],"jKZO-R":["اكتمل السحب"],"jtKSW-":["حد ",["0"]],"junZX6":["تم استلام الإيداع وجاري المعالجة…"],"kH6wUX":["تأثير السعر"],"kR8ayx":["بالنقر على تأكيد الإيداع، فإنك توافق على <0>الشروط</0>."],"kUFhUv":["فشل السحب."],"kf83Ld":["Something went wrong."],"kj3M8S":["إيداع"],"kjrq_8":["مزيد من المعلومات"],"lDgVWA":["استلام"],"lOEm_1":["تم تنفيذ الطلب"],"ldK3jJ":["فشل إرسال السحب."],"lxjao1":["مسار السيولة المختار المستخدم لتسوية هذا السحب."],"mF_ucv":["اتصل بمحفظة حتى تتمكن البوابة من توفير عنوان إيداع وتوجيه تحويلك."],"mgLWEL":["تراجعت معاملة الوجهة على السلسلة."],"mn0HrT":["تم رفض الدفع"],"mvYQx_":["تم الاكتشاف"],"njn4bC":["أكِّد المعاملة في محفظتك"],"nr03QI":["أدخل عنوان المستلم"],"nwtY4N":["حدث خطأ"],"oBNGNc":["تغيَّر الناتج المتوقَّع للمسار أثناء انتظار معاملتك."],"oFmN8a":["إيداع ",["symbol"]],"oI_hGR":["رقم الطلب"],"oW1G8i":["تم إيداع أموالك بنجاح."],"ob8R_m":["حاول مرة أخرى أو تواصل معنا إذا استمرت المشكلة."],"ogD_nm":["إيداع إلى ",["0"]],"olEUh2":["ناجح"],"pCzTTC":["عنوان الإيداع الخاص بك"],"q32Nt8":["اكتمل السحب"],"qQ5VJt":["يتعذَّر الوصول إلى البوابة الآن"],"qj0vvX":["تأكيد الإيداع"],"qtoOYG":["بدون حد"],"quR8Qp":["في انتظار الدفع"],"rT8e1f":["المسار"],"rZdp61":["معاملة الإكمال"],"sMaRBz":["أكمل عملية الشراء في النافذة التي فتحناها للتو. تتحدّث هذه الشاشة تلقائيًا."],"sSiLKx":["شبكة الاستلام"],"sb9Y58":["محفظة"],"sbwbC0":["طريقة الدفع"],"srsA0x":["رُفض السحب."],"t1k2Bt":["إخفاء التفاصيل"],"tTnE4T":["لا توجد أصول للإيداع"],"uPo3PQ":["عرض أقل"],"vepIdX":["سعر العملة الرقمية"],"vrnnn9":["جاري المعالجة"],"w-2VR9":["جاري السحب…"],"wdxz7K":["المصدر"],"wkskq5":["استخدام الحد الأقصى"],"xDAtGP":["الرسالة"],"xGVfLh":["متابعة"],"y3dWqX":["أكمل الدفع"],"y62Dys":["رسوم الشبكة"],"yH9V_J":["أدخل المبلغ"],"yLEjmm":[["resolvedPriceImpact"],"% price impact"],"yQE2r9":["جارٍ التحميل"],"y_0uwd":["أمس"],"yrvWai":["معاملة المصدر"],"yxnt3y":["حالة التنفيذ"],"yy2rkt":["0x…"],"yz7wBu":["إغلاق"],"zYD5xm":["جاري الإضافة"],"zbtijb":["إيداع ",["0"]," إلى ",["1"]],"znqB4T":["رصيد غير كافٍ"],"{hours} hr":[["hours"]," ساعة"],"{minutes} min":[["minutes"]," دقيقة"],"{n}h":[["n"],"س"],"{n}m":[["n"],"د"],"{n}s":[["n"],"ث"]}`);export{e as messages};
@@ -1 +1 @@
1
- const e=JSON.parse(`{"--OGth":["Depósito exitoso"],"-I_tc5":["Máx ",["formattedCap"]],"-nuEh_":["Tiempo estimado"],"-tu7Q8":["Más sobre ",["0"]],"02NghK":["Cierra este diálogo y vuelve a intentarlo en un momento. Si el problema persiste, verifica la clave del gateway en tu integración."],"0eg2g7":["Estimando gas…"],"0lHlRj":["En tránsito"],"1zDzn9":["Pagar con Google Pay"],"2Eoi_a":["Ver detalles"],"3dqPLT":["Transferir cripto"],"3eKjkO":["Depósito mínimo de ",["formattedMin"]],"3kg1gB":["Depósito completado"],"3qkDVZ":["Ver desglose"],"3yd3IL":["El controlador de depósito no pudo cargar la configuración del gateway."],"5AApJw":["Conecta una billetera para continuar"],"5joj8M":["Desglose de la transacción"],"60ahSE":["Tx del retiro"],"64M0UA":["El código de seguridad está incompleto"],"69Gavs":["Detalles técnicos"],"6D8qH6":["Envía el token seleccionado en la red elegida a esta dirección. Los fondos aparecerán en tu cuenta cuando la red confirme la transferencia."],"6RDwJM":["Tokens"],"6ja7nr":["Toca para pagar"],"6ws9A3":["Apple Pay"],"6yS5kL":["Retiro en curso"],"72c5Qo":["Total"],"7Bj3x9":["Fallido"],"7evBec":["Tiempo de procesamiento: ",["resolvedProcessingTime"]],"88cUW-":["Recibes"],"9JHY2T":["Tu depósito se acreditó en tu cuenta."],"9XIJb8":["T…"],"9cCjMJ":["Depositar saldo máximo"],"< 1 min":["< 1 min"],"AHyker":["Máx ",["0"]],"AO44G_":["Ver recibo"],"AOPSKq":["Depositar ",["0"]],"AWtGgd":["Obtener ayuda"],"AeXO77":["Cuenta"],"AeZIvT":["Recibirás"],"AikETk":["Mín ",["minDeposit"]],"B-4zEC":["No se pudo cargar la actividad. Inténtalo de nuevo."],"BhQhbU":["Usar la dirección sugerida del destinatario"],"BoQOH3":["Se requiere una billetera para depositar"],"C7cyXd":["La comisión de procesamiento cubre el costo de procesar tu pago a través del método de pago seleccionado."],"CK1KXz":["Máx"],"CS69m9":["Usar cripto"],"Ck1xL4":["Envías"],"Cs44l6":["Depósito en curso"],"D79cZK":["Instantáneo"],"DO0IYK":["La fecha de vencimiento no es válida"],"DPfwMq":["Listo"],"Dd7jP5":["¿Tienes problemas?"],"DoS2vD":["Ocultar detalles técnicos"],"ELhVSL":["No se pudo enviar el depósito."],"Ej5HL9":["Firma rechazada. Vuelve a intentarlo."],"Enslfm":["Destino"],"FWbwx6":["Cash deposit unavailable for your account"],"FkAVbF":["Pagando con Google Pay"],"G-SK3q":["El kit encontró un error inesperado y no pudo terminar de renderizar. Vuelve a intentarlo, o cierra este diálogo y reinténtalo desde la aplicación."],"GX8GKD":["Activos"],"GXkBas":["Máx ",["formattedLimit"]],"GZPxmc":["Ingresa una dirección de destinatario válida"],"GcuGHR":["Acreditado a ",["captionSuffix"]],"GwkmPx":["Cambiar el importe mostrado"],"HalPBQ":["Recargar en"],"I2Iug_":["Paga ",["amountFormatted"]," de forma segura"],"IDt4jm":[["0","plural",{"one":["#"," segundo"],"other":["#"," segundos"]}]," restantes en la cotización"],"IRogzB":["Tu depósito se acreditó a ",["brand"],"."],"JYp-ic":["Deposit processing"],"KDw4GX":["Reintentar"],"KGoAE6":["Auto · ",["value"]],"KTNWsg":["El retiro falló"],"KuqCAK":["~ 2 min"],"LEbOpR":["Más detalles"],"LSs4cd":["Usar efectivo"],"Ly6geA":["Regenerando cotización…"],"MZ_nQf":["Dirección del destinatario"],"N2DUxS":["Saldo insuficiente"],"OLF0i7":["No se pudieron cargar las opciones de depósito"],"OSBXx5":["Ahora mismo"],"Offl0a":["Tu depósito se acreditará en tu cuenta."],"Oi8TiZ":["Ver progreso"],"OsyKSt":["Retirar"],"P9fBwv":["Stack"],"PiH3UR":["¡Copiado!"],"PknXwq":["Pagar ahora"],"Q12Rrs":["Tx depósito"],"QFwptY":["Comisión de procesamiento"],"QU2cIs":["¿Tienes preguntas?"],"Qdn2XH":["Comprar con Google Pay"],"Rm325-":["Retiro de ",["amount"],", ",["date"]],"Rxjdjn":["El depósito no se completó"],"SMl3YV":["El número de tarjeta está incompleto"],"SOVBoe":["Copiar dirección de depósito"],"SZRUQ4":["Deslizamiento máximo"],"Sjplg3":["Ver en el explorador"],"SlfejT":["Error"],"TG4WOd":["Tu depósito se acreditará a ",["brand"],"."],"TMA5Ot":["Pagando con Apple Pay"],"TT0aVH":["Orden enviada"],"Uevt3L":["Estimando cotización"],"UqHbdz":["Descartar aviso de depósito pendiente"],"V1fa9u":["Ver más"],"VAZUpd":["Orden fallida"],"VAxOSg":["Tú pagas"],"VHOVEJ":["Conectar billetera"],"WkRH60":["Mín ",["0"]],"Wqz0SO":["Saldo bajo"],"WsByvK":["Pagar con Apple Pay"],"XFvFyp":["Detalles de la tarjeta enviados"],"XJOV1Y":["Actividad"],"Xzw7uC":["Tus depósitos y retiros aparecerán aquí."],"YKfMl6":["Cargando entrada segura de tarjeta..."],"YruUmm":["La fecha de vencimiento está incompleta"],"Z1WbO6":["Los fondos están seguros en la red de origen — contacta a soporte para recuperarlos."],"ZqugiS":["Saldo: ",["0"]," ",["1"]],"_QZdX-":["Tu retiro se completó con éxito."],"_girqu":["Retiro exitoso"],"_kXBrK":["Tiempo total"],"a2WllD":["Token a recibir"],"aXFOuf":["Aún no hay actividad"],"aiEUrg":["Mostrar detalles técnicos"],"bAy57M":["Pagar con tarjeta"],"bGtkfz":["Fecha de vencimiento"],"bOZXx5":["Actualizar orden"],"bZnukT":["Costo de red"],"c3aao_":["Ver actividad"],"c6Bl9M":["Alternar detalles técnicos"],"cGYrpE":["Aplican términos"],"cHPbBJ":["El puente no pudo financiar la transacción de destino (presupuesto de gas agotado)."],"cxR5Qy":["Tx liquidación"],"e3xU5E":["Depósito recibido"],"eUbBqz":["1 ",["0"]," = ",["1"]],"f-nEg4":["La comisión de red se paga a los mineros y validadores de la blockchain para asegurar que la transacción se procese y confirme."],"fKSGnu":["Cantidad mínima requerida para que esta red cubra las tarifas y el enrutamiento."],"fWsBTs":["Algo salió mal. Vuelve a intentarlo."],"flMR3h":["Tus fondos fueron retirados con éxito."],"g2UNkE":["Con tecnología de"],"gfh8CC":["Redes"],"hBIHD-":["Depósito de ",["amount"],", ",["date"]],"hKMHs1":["Diferencia entre el resultado esperado de la ruta y el precio medio de mercado subyacente."],"he3ygx":["Copiar"],"hehnjM":["Monto"],"i-4Fbp":["Depósito fallido"],"i-EgW-":["El costo estimado para emitir esta transacción en la red de destino."],"i1MfcA":["Los tokens disponibles para depositar desde tu billetera aparecerán aquí."],"iH8pgl":["Atrás"],"iROlQr":["Detalles de la tarjeta"],"jKZO-R":["Retiro completado"],"jtKSW-":["Límite ",["0"]],"junZX6":["Depósito recibido y procesando…"],"kH6wUX":["Impacto en precio"],"kR8ayx":["Al hacer clic en Confirmar depósito, aceptas nuestros <0>términos</0>."],"kUFhUv":["El retiro falló."],"kj3M8S":["Depositar"],"kjrq_8":["Más información"],"kryGs-":["Tarjeta"],"lDgVWA":["Recibir"],"lOEm_1":["Orden completada"],"ldK3jJ":["No se pudo enviar el retiro."],"lxjao1":["La ruta de liquidez seleccionada para liquidar este retiro."],"mF_ucv":["Conecta una billetera para que el gateway pueda provisionar una dirección de depósito y enrutar tu transferencia."],"meq3YR":["El número de tarjeta no es válido"],"mgLWEL":["La transacción del tramo de destino se revirtió en cadena."],"mvYQx_":["Detectado"],"njn4bC":["Confirma la transacción en tu billetera"],"nr03QI":["Ingresa la dirección del destinatario"],"nwtY4N":["Algo salió mal"],"o-XJ9D":["Cambiar"],"oBNGNc":["El resultado esperado de la ruta varió mientras tu transacción estaba pendiente."],"oFmN8a":["Depositar ",["symbol"]],"oW1G8i":["Tus fondos se depositaron correctamente."],"ob8R_m":["Inténtalo nuevamente o contáctanos si el problema persiste."],"ogD_nm":["Depositar a ",["0"]],"olEUh2":["Exitoso"],"pCzTTC":["Tu dirección de depósito"],"pfAinS":["Escanea para pagar"],"q32Nt8":["Retiro completado"],"qQ5VJt":["No podemos contactar el gateway en este momento"],"qj0vvX":["Confirmar depósito"],"qtoOYG":["Sin límite"],"rT8e1f":["Ruta"],"rZdp61":["Tx finalización"],"sSiLKx":["Red a recibir"],"sb9Y58":["Billetera"],"sbwbC0":["Método de pago"],"srsA0x":["Retiro rechazado."],"t-aixw":["Confirma en tu Google Wallet"],"t1k2Bt":["Ocultar desglose"],"tInLgk":["Pagando con tarjeta"],"tTnE4T":["No hay activos para depositar"],"uPo3PQ":["Ver menos"],"vepIdX":["Precio cripto"],"vrnnn9":["Procesando"],"w-2VR9":["Retiro en curso…"],"wB8KqP":["Escanea con la cámara de tu iPhone"],"wLmRnI":["Código de seguridad"],"wdxz7K":["Origen"],"wkskq5":["Usar máx"],"xDAtGP":["Mensaje"],"xGVfLh":["Continuar"],"xHIEQ5":["Número de tarjeta"],"xOUCt3":["Otras opciones"],"y1ypMV":["Más popular"],"y62Dys":["Comisión de red"],"yH9V_J":["Ingresa el monto"],"yLEjmm":[["resolvedPriceImpact"],"% price impact"],"yMg5R0":["La tarjeta ha caducado"],"yQE2r9":["Cargando"],"y_0uwd":["Ayer"],"ybKOj4":["Google Pay"],"yrvWai":["Tx origen"],"yxnt3y":["Estado de ejecución"],"yy2rkt":["0x…"],"yz7wBu":["Cerrar"],"zYD5xm":["Acreditando"],"zbtijb":["Depositar ",["0"]," a ",["1"]],"znqB4T":["Saldo insuficiente"],"{hours} hr":[["hours"]," h"],"{minutes} min":[["minutes"]," min"],"{n}h":[["n"],"h"],"{n}m":[["n"],"m"],"{n}s":[["n"],"s"]}`);export{e as messages};
1
+ const e=JSON.parse(`{"--OGth":["Depósito exitoso"],"-I_tc5":["Máx ",["formattedCap"]],"-nuEh_":["Tiempo estimado"],"-tu7Q8":["Más sobre ",["0"]],"02NghK":["Cierra este diálogo y vuelve a intentarlo en un momento. Si el problema persiste, verifica la clave del gateway en tu integración."],"0TEl46":["Cripto"],"0VFO13":["Pago cancelado"],"0eg2g7":["Estimando gas…"],"0lHlRj":["En tránsito"],"2Eoi_a":["Ver detalles"],"3dqPLT":["Transferir cripto"],"3eKjkO":["Depósito mínimo de ",["formattedMin"]],"3kg1gB":["Depósito completado"],"3qkDVZ":["Ver desglose"],"3yd3IL":["El controlador de depósito no pudo cargar la configuración del gateway."],"3ytoeI":["Este pago fue reembolsado. No se entregó ninguna cripto."],"5AApJw":["Conecta una billetera para continuar"],"5R2524":["Cancelaste el pago antes de completarlo."],"5joj8M":["Desglose de la transacción"],"60ahSE":["Tx del retiro"],"69Gavs":["Detalles técnicos"],"6D8qH6":["Envía el token seleccionado en la red elegida a esta dirección. Los fondos aparecerán en tu cuenta cuando la red confirme la transferencia."],"6RDwJM":["Tokens"],"6yS5kL":["Retiro en curso"],"72c5Qo":["Total"],"7Bj3x9":["Fallido"],"7evBec":["Tiempo de procesamiento: ",["resolvedProcessingTime"]],"88cUW-":["Recibes"],"9JHY2T":["Tu depósito se acreditó en tu cuenta."],"9XIJb8":["T…"],"9cCjMJ":["Depositar saldo máximo"],"9d3cBd":["No se pudo abrir la ventana de pago. Vuelve a intentarlo."],"9k9fRZ":["Abriendo el pago…"],"< 1 min":["< 1 min"],"A-C4hO":["La comisión de procesamiento cubre el coste de procesar tu pago a través del proveedor de pago."],"AGFPtu":["Compra completada"],"AHyker":["Máx ",["0"]],"AO44G_":["Ver recibo"],"AOPSKq":["Depositar ",["0"]],"AWtGgd":["Obtener ayuda"],"AeXO77":["Cuenta"],"AeZIvT":["Recibirás"],"AikETk":["Mín ",["minDeposit"]],"B-4zEC":["No se pudo cargar la actividad. Inténtalo de nuevo."],"BhQhbU":["Usar la dirección sugerida del destinatario"],"BoQOH3":["Se requiere una billetera para depositar"],"CK1KXz":["Máx"],"Ck1xL4":["Envías"],"Cs44l6":["Depósito en curso"],"D79cZK":["Instantáneo"],"DPfwMq":["Listo"],"Dd7jP5":["¿Tienes problemas?"],"DoS2vD":["Ocultar detalles técnicos"],"ELhVSL":["No se pudo enviar el depósito."],"Ej5HL9":["Firma rechazada. Vuelve a intentarlo."],"Enslfm":["Destino"],"EzZNDI":["El pago con tarjeta no está disponible en tu región"],"G-SK3q":["El kit encontró un error inesperado y no pudo terminar de renderizar. Vuelve a intentarlo, o cierra este diálogo y reinténtalo desde la aplicación."],"GX8GKD":["Activos"],"GXkBas":["Máx ",["formattedLimit"]],"GZPxmc":["Ingresa una dirección de destinatario válida"],"GcuGHR":["Acreditado a ",["captionSuffix"]],"GwkmPx":["Cambiar el importe mostrado"],"HalPBQ":["Recargar en"],"IDt4jm":[["0","plural",{"one":["#"," segundo"],"other":["#"," segundos"]}]," restantes en la cotización"],"IRogzB":["Tu depósito se acreditó a ",["brand"],"."],"JYp-ic":["Deposit processing"],"KDw4GX":["Reintentar"],"KGoAE6":["Auto · ",["value"]],"KTNWsg":["El retiro falló"],"KuqCAK":["~ 2 min"],"LEbOpR":["Más detalles"],"Ly6geA":["Regenerando cotización…"],"MZ_nQf":["Dirección del destinatario"],"N2DUxS":["Saldo insuficiente"],"NzshpK":["La compra falló"],"OLF0i7":["No se pudieron cargar las opciones de depósito"],"OSBXx5":["Ahora mismo"],"Offl0a":["Tu depósito se acreditará en tu cuenta."],"Oi8TiZ":["Ver progreso"],"OsyKSt":["Retirar"],"P9fBwv":["Stack"],"PiH3UR":["¡Copiado!"],"Q12Rrs":["Tx depósito"],"QFwptY":["Comisión de procesamiento"],"QU2cIs":["¿Tienes preguntas?"],"Rm325-":["Retiro de ",["amount"],", ",["date"]],"Rxjdjn":["El depósito no se completó"],"S7anoa":["El pago expiró"],"SOVBoe":["Copiar dirección de depósito"],"SZRUQ4":["Deslizamiento máximo"],"Sjplg3":["Ver en el explorador"],"SlfejT":["Error"],"TG4WOd":["Tu depósito se acreditará a ",["brand"],"."],"TT0aVH":["Orden enviada"],"UDBU3S":["Tu pago fue rechazado. Prueba con otra tarjeta o importe."],"Uevt3L":["Estimando cotización"],"UqHbdz":["Descartar aviso de depósito pendiente"],"V1fa9u":["Ver más"],"VAZUpd":["Orden fallida"],"VAxOSg":["Tú pagas"],"VHOVEJ":["Conectar billetera"],"V_WXOs":["Reabrir la ventana de pago"],"WkRH60":["Mín ",["0"]],"Wqz0SO":["Saldo bajo"],"XJOV1Y":["Actividad"],"X_Y-Ev":["Algo salió mal con tu compra. Inténtalo de nuevo."],"Xzw7uC":["Tus depósitos y retiros aparecerán aquí."],"Z0UMar":["No se pudo obtener la cotización."],"Z1WbO6":["Los fondos están seguros en la red de origen — contacta a soporte para recuperarlos."],"Z1fsV0":["La ventana de pago expiró antes de completarse."],"ZqugiS":["Saldo: ",["0"]," ",["1"]],"_QZdX-":["Tu retiro se completó con éxito."],"_girqu":["Retiro exitoso"],"_kXBrK":["Tiempo total"],"_rHUhS":["Efectivo"],"a2WllD":["Token a recibir"],"aXFOuf":["Aún no hay actividad"],"aiEUrg":["Mostrar detalles técnicos"],"bOZXx5":["Actualizar orden"],"bZnukT":["Costo de red"],"c3aao_":["Ver actividad"],"c6Bl9M":["Alternar detalles técnicos"],"cGYrpE":["Aplican términos"],"cHPbBJ":["El puente no pudo financiar la transacción de destino (presupuesto de gas agotado)."],"cxR5Qy":["Tx liquidación"],"e3xU5E":["Depósito recibido"],"eUbBqz":["1 ",["0"]," = ",["1"]],"f-nEg4":["La comisión de red se paga a los mineros y validadores de la blockchain para asegurar que la transacción se procese y confirme."],"fKSGnu":["Cantidad mínima requerida para que esta red cubra las tarifas y el enrutamiento."],"fWsBTs":["Algo salió mal. Vuelve a intentarlo."],"flMR3h":["Tus fondos fueron retirados con éxito."],"g2UNkE":["Con tecnología de"],"gfh8CC":["Redes"],"hBIHD-":["Depósito de ",["amount"],", ",["date"]],"hKMHs1":["Diferencia entre el resultado esperado de la ruta y el precio medio de mercado subyacente."],"hMqszB":["Continuar al pago"],"hPpyl6":["Pago reembolsado"],"he3ygx":["Copiar"],"hehnjM":["Monto"],"i-4Fbp":["Depósito fallido"],"i-EgW-":["El costo estimado para emitir esta transacción en la red de destino."],"i1MfcA":["Los tokens disponibles para depositar desde tu billetera aparecerán aquí."],"iH8pgl":["Atrás"],"jKZO-R":["Retiro completado"],"jtKSW-":["Límite ",["0"]],"junZX6":["Depósito recibido y procesando…"],"kH6wUX":["Impacto en precio"],"kR8ayx":["Al hacer clic en Confirmar depósito, aceptas nuestros <0>términos</0>."],"kUFhUv":["El retiro falló."],"kf83Ld":["Something went wrong."],"kj3M8S":["Depositar"],"kjrq_8":["Más información"],"lDgVWA":["Recibir"],"lOEm_1":["Orden completada"],"ldK3jJ":["No se pudo enviar el retiro."],"lxjao1":["La ruta de liquidez seleccionada para liquidar este retiro."],"mF_ucv":["Conecta una billetera para que el gateway pueda provisionar una dirección de depósito y enrutar tu transferencia."],"mgLWEL":["La transacción del tramo de destino se revirtió en cadena."],"mn0HrT":["Pago rechazado"],"mvYQx_":["Detectado"],"njn4bC":["Confirma la transacción en tu billetera"],"nr03QI":["Ingresa la dirección del destinatario"],"nwtY4N":["Algo salió mal"],"oBNGNc":["El resultado esperado de la ruta varió mientras tu transacción estaba pendiente."],"oFmN8a":["Depositar ",["symbol"]],"oI_hGR":["ID de pedido"],"oW1G8i":["Tus fondos se depositaron correctamente."],"ob8R_m":["Inténtalo nuevamente o contáctanos si el problema persiste."],"ogD_nm":["Depositar a ",["0"]],"olEUh2":["Exitoso"],"pCzTTC":["Tu dirección de depósito"],"q32Nt8":["Retiro completado"],"qQ5VJt":["No podemos contactar el gateway en este momento"],"qj0vvX":["Confirmar depósito"],"qtoOYG":["Sin límite"],"quR8Qp":["Esperando el pago"],"rT8e1f":["Ruta"],"rZdp61":["Tx finalización"],"sMaRBz":["Completa tu compra en la ventana que acabamos de abrir. Esta pantalla se actualiza automáticamente."],"sSiLKx":["Red a recibir"],"sb9Y58":["Billetera"],"sbwbC0":["Método de pago"],"srsA0x":["Retiro rechazado."],"t1k2Bt":["Ocultar desglose"],"tTnE4T":["No hay activos para depositar"],"uPo3PQ":["Ver menos"],"vepIdX":["Precio cripto"],"vrnnn9":["Procesando"],"w-2VR9":["Retiro en curso…"],"wdxz7K":["Origen"],"wkskq5":["Usar máx"],"xDAtGP":["Mensaje"],"xGVfLh":["Continuar"],"y3dWqX":["Finaliza tu pago"],"y62Dys":["Comisión de red"],"yH9V_J":["Ingresa el monto"],"yLEjmm":[["resolvedPriceImpact"],"% price impact"],"yQE2r9":["Cargando"],"y_0uwd":["Ayer"],"yrvWai":["Tx origen"],"yxnt3y":["Estado de ejecución"],"yy2rkt":["0x…"],"yz7wBu":["Cerrar"],"zYD5xm":["Acreditando"],"zbtijb":["Depositar ",["0"]," a ",["1"]],"znqB4T":["Saldo insuficiente"],"{hours} hr":[["hours"]," h"],"{minutes} min":[["minutes"]," min"],"{n}h":[["n"],"h"],"{n}m":[["n"],"m"],"{n}s":[["n"],"s"]}`);export{e as messages};
@@ -7,6 +7,6 @@
7
7
  * as the typed contract for {@link defineMessages}: callers get autocomplete on every key the
8
8
  * kit translates, and unknown keys fail at compile time via excess-property checks.
9
9
  */
10
- type KitTranslatableKey = "0x…" | "1 {0} = {1}" | "< 1 min" | "A wallet is required to deposit" | "Account" | "Activity" | "Amount" | "Apple Pay" | "Assets" | "Auto · {value}" | "Back" | "Balance: {0} {1}" | "Buy with Google Pay" | "By clicking Confirm Deposit, you agree to our <0>terms</0>." | "Card" | "Card details" | "Card details submitted" | "Card expiration" | "Card has expired" | "Card number" | "Card number is incomplete" | "Card number is invalid" | "Cash deposit unavailable for your account" | "Chains" | "Change" | "Close" | "Close this dialog and try again in a moment. If the problem persists, double-check the gateway key on your integration." | "Completion tx" | "Confirm Deposit" | "Confirm in your Google Wallet" | "Confirm transaction in your wallet" | "Connect a wallet so the gateway can provision a deposit address and route your transfer." | "Connect a wallet to continue" | "Connect wallet" | "Continue" | "Copied!" | "Copy" | "Copy deposit address" | "Couldn't load activity. Please try again." | "Couldn't load deposit options" | "Credited to {captionSuffix}" | "Crediting" | "Crypto price" | "Deposit" | "Deposit completed" | "Deposit didn't complete" | "Deposit failed" | "Deposit in progress" | "Deposit max balance" | "Deposit of {amount}, {date}" | "Deposit processing" | "Deposit received" | "Deposit received and processing…" | "Deposit successful" | "Deposit to {0}" | "Deposit tx" | "Deposit {0}" | "Deposit {0} to {1}" | "Deposit {symbol}" | "Destination" | "Detected" | "Difference between the route's expected output and the underlying market mid-price." | "Dismiss pending deposit notice" | "Done" | "Enter Amount" | "Enter Recipient Address" | "Enter Valid Recipient Address" | "Error" | "Estimated time" | "Estimating gas…" | "Estimating quote" | "Experiencing problems?" | "Expiry date is incomplete" | "Expiry date is invalid" | "Failed" | "Failed to submit deposit." | "Failed to submit withdrawal." | "Fill status" | "Funds are safe on the source chain — contact support to recover." | "Get help" | "Google Pay" | "Have questions?" | "Hide breakdown" | "Hide technical details" | "In transit" | "Instant" | "Insufficient Balance" | "Insufficient balance" | "Just now" | "Loading" | "Loading secure card input..." | "Low Balance" | "Max" | "Max slippage" | "Max {0}" | "Max {formattedCap}" | "Max {formattedLimit}" | "Message" | "Min {0}" | "Min {minDeposit}" | "More about {0}" | "More details" | "More information" | "Most popular" | "Network cost" | "Network fee" | "No activity yet" | "No assets to deposit" | "No limit" | "Order failed" | "Order filled" | "Order submitted" | "Other options" | "Pay Now" | "Pay with Apple Pay" | "Pay with Card" | "Pay with Google Pay" | "Pay {amountFormatted} securely" | "Paying with Apple Pay" | "Paying with Card" | "Paying with Google Pay" | "Payment Method" | "Please try again or contact us if the issue persists." | "Powered by" | "Price impact" | "Processing" | "Processing fee" | "Processing time: {resolvedProcessingTime}" | "Receive" | "Receive chain" | "Receive token" | "Recipient address" | "Regenerating quote…" | "Route" | "Scan to pay" | "Scan with your iPhone camera" | "Security code" | "Security code is incomplete" | "See less" | "See more" | "Send the selected token on the selected chain to this address. Funds appear in your account once the network confirms the transfer." | "Settlement tx" | "Show technical details" | "Signature declined. Please try again." | "Something went wrong" | "Something went wrong. Please try again." | "Source" | "Source tx" | "Stack" | "Successful" | "Swap displayed amount" | "Tap to pay" | "Technical details" | "Terms apply" | "The bridge could not fund the destination transaction (gas budget exhausted)." | "The deposit driver failed to load gateway configuration." | "The destination-leg transaction reverted on-chain." | "The estimated cost to broadcast this transaction on the destination chain." | "The kit hit an unexpected error and could not finish rendering. Try again, or close this dialog and retry from the host." | "The minimum amount required for this chain to cover network fees and routing." | "The network fee is paid to miners and validators of the blockchain to make sure the transaction is processed and confirmed." | "The processing fee covers the cost of processing your payment through the selected payment method." | "The route's expected output drifted while your transaction was pending." | "The selected liquidity route used to settle this withdrawal." | "Toggle technical details" | "Tokens" | "Tokens available to deposit from your wallet will appear here." | "Top up on" | "Total" | "Total time" | "Transaction breakdown" | "Transfer Crypto" | "Try again" | "T…" | "Update order" | "Use Cash" | "Use Crypto" | "Use max" | "Use suggested recipient address" | "View activity" | "View breakdown" | "View details" | "View on Explorer" | "View progress" | "View receipt" | "Wallet" | "We can't reach the gateway right now" | "Withdraw" | "Withdrawal complete" | "Withdrawal completed" | "Withdrawal declined." | "Withdrawal failed" | "Withdrawal failed." | "Withdrawal in progress" | "Withdrawal in progress…" | "Withdrawal of {amount}, {date}" | "Withdrawal successful" | "Withdrawal tx" | "Yesterday" | "You pay" | "You receive" | "You send" | "You will receive" | "Your deposit address" | "Your deposit has been credited to your account." | "Your deposit has been credited to {brand}." | "Your deposit will be credited to your account." | "Your deposit will be credited to {brand}." | "Your deposits and withdrawals will appear here." | "Your funds were successfully deposited." | "Your funds were successfully withdrawn." | "Your withdrawal was completed successfully." | "{0, plural, one {# second} other {# seconds}} left on quote" | "{0} limit" | "{formattedMin} minimum deposit" | "{hours} hr" | "{minutes} min" | "{n}h" | "{n}m" | "{n}s" | "{resolvedPriceImpact}% price impact" | "~ 2 min";
10
+ type KitTranslatableKey = "0x…" | "1 {0} = {1}" | "< 1 min" | "A wallet is required to deposit" | "Account" | "Activity" | "Amount" | "Assets" | "Auto · {value}" | "Back" | "Balance: {0} {1}" | "Buy-with-card isn't available for your region" | "By clicking Confirm Deposit, you agree to our <0>terms</0>." | "Cash" | "Chains" | "Close" | "Close this dialog and try again in a moment. If the problem persists, double-check the gateway key on your integration." | "Complete your purchase in the window we just opened. This screen updates automatically." | "Completion tx" | "Confirm Deposit" | "Confirm transaction in your wallet" | "Connect a wallet so the gateway can provision a deposit address and route your transfer." | "Connect a wallet to continue" | "Connect wallet" | "Continue" | "Continue to payment" | "Copied!" | "Copy" | "Copy deposit address" | "Couldn't load activity. Please try again." | "Couldn't load deposit options" | "Credited to {captionSuffix}" | "Crediting" | "Crypto" | "Crypto price" | "Deposit" | "Deposit completed" | "Deposit didn't complete" | "Deposit failed" | "Deposit in progress" | "Deposit max balance" | "Deposit of {amount}, {date}" | "Deposit processing" | "Deposit received" | "Deposit received and processing…" | "Deposit successful" | "Deposit to {0}" | "Deposit tx" | "Deposit {0}" | "Deposit {0} to {1}" | "Deposit {symbol}" | "Destination" | "Detected" | "Difference between the route's expected output and the underlying market mid-price." | "Dismiss pending deposit notice" | "Done" | "Enter Amount" | "Enter Recipient Address" | "Enter Valid Recipient Address" | "Error" | "Estimated time" | "Estimating gas…" | "Estimating quote" | "Experiencing problems?" | "Failed" | "Failed to fetch quote." | "Failed to open the payment window. Please try again." | "Failed to submit deposit." | "Failed to submit withdrawal." | "Fill status" | "Finish your payment" | "Funds are safe on the source chain — contact support to recover." | "Get help" | "Have questions?" | "Hide breakdown" | "Hide technical details" | "In transit" | "Instant" | "Insufficient Balance" | "Insufficient balance" | "Just now" | "Loading" | "Low Balance" | "Max" | "Max slippage" | "Max {0}" | "Max {formattedCap}" | "Max {formattedLimit}" | "Message" | "Min {0}" | "Min {minDeposit}" | "More about {0}" | "More details" | "More information" | "Network cost" | "Network fee" | "No activity yet" | "No assets to deposit" | "No limit" | "Opening checkout…" | "Order ID" | "Order failed" | "Order filled" | "Order submitted" | "Payment Method" | "Payment cancelled" | "Payment declined" | "Payment refunded" | "Payment timed out" | "Please try again or contact us if the issue persists." | "Powered by" | "Price impact" | "Processing" | "Processing fee" | "Processing time: {resolvedProcessingTime}" | "Purchase complete" | "Purchase failed" | "Receive" | "Receive chain" | "Receive token" | "Recipient address" | "Regenerating quote…" | "Reopen payment window" | "Route" | "See less" | "See more" | "Send the selected token on the selected chain to this address. Funds appear in your account once the network confirms the transfer." | "Settlement tx" | "Show technical details" | "Signature declined. Please try again." | "Something went wrong" | "Something went wrong with your purchase. Please try again." | "Something went wrong." | "Something went wrong. Please try again." | "Source" | "Source tx" | "Stack" | "Successful" | "Swap displayed amount" | "Technical details" | "Terms apply" | "The bridge could not fund the destination transaction (gas budget exhausted)." | "The checkout window expired before payment completed." | "The deposit driver failed to load gateway configuration." | "The destination-leg transaction reverted on-chain." | "The estimated cost to broadcast this transaction on the destination chain." | "The kit hit an unexpected error and could not finish rendering. Try again, or close this dialog and retry from the host." | "The minimum amount required for this chain to cover network fees and routing." | "The network fee is paid to miners and validators of the blockchain to make sure the transaction is processed and confirmed." | "The processing fee covers the cost of processing your payment through the hosted checkout provider." | "The route's expected output drifted while your transaction was pending." | "The selected liquidity route used to settle this withdrawal." | "This payment was refunded. No crypto was delivered." | "Toggle technical details" | "Tokens" | "Tokens available to deposit from your wallet will appear here." | "Top up on" | "Total" | "Total time" | "Transaction breakdown" | "Transfer Crypto" | "Try again" | "T…" | "Update order" | "Use max" | "Use suggested recipient address" | "View activity" | "View breakdown" | "View details" | "View on Explorer" | "View progress" | "View receipt" | "Waiting for payment" | "Wallet" | "We can't reach the gateway right now" | "Withdraw" | "Withdrawal complete" | "Withdrawal completed" | "Withdrawal declined." | "Withdrawal failed" | "Withdrawal failed." | "Withdrawal in progress" | "Withdrawal in progress…" | "Withdrawal of {amount}, {date}" | "Withdrawal successful" | "Withdrawal tx" | "Yesterday" | "You cancelled the payment before it completed." | "You pay" | "You receive" | "You send" | "You will receive" | "Your deposit address" | "Your deposit has been credited to your account." | "Your deposit has been credited to {brand}." | "Your deposit will be credited to your account." | "Your deposit will be credited to {brand}." | "Your deposits and withdrawals will appear here." | "Your funds were successfully deposited." | "Your funds were successfully withdrawn." | "Your payment was declined. Try a different card or amount." | "Your withdrawal was completed successfully." | "{0, plural, one {# second} other {# seconds}} left on quote" | "{0} limit" | "{formattedMin} minimum deposit" | "{hours} hr" | "{minutes} min" | "{n}h" | "{n}m" | "{n}s" | "{resolvedPriceImpact}% price impact" | "~ 2 min";
11
11
  //#endregion
12
12
  export { KitTranslatableKey };
@@ -1,13 +1,10 @@
1
1
  import { ActivityIcon } from "../shared/icons/ActivityIcon.js";
2
2
  import { AlertIcon } from "../shared/icons/AlertIcon.js";
3
- import { AmexIcon } from "../shared/icons/AmexIcon.js";
4
- import { ApplePayIcon } from "../shared/icons/ApplePayIcon.js";
5
3
  import { ArrowDownIcon } from "../shared/icons/ArrowDownIcon.js";
6
4
  import { ArrowRightIcon } from "../shared/icons/ArrowRightIcon.js";
7
5
  import { ArrowRightLeftIcon } from "../shared/icons/ArrowRightLeftIcon.js";
8
6
  import { BitcoinIcon } from "../shared/icons/BitcoinIcon.js";
9
7
  import { CardIcon } from "../shared/icons/CardIcon.js";
10
- import { CashIcon } from "../shared/icons/CashIcon.js";
11
8
  import { CheckIcon } from "../shared/icons/CheckIcon.js";
12
9
  import { ChevronDownIcon } from "../shared/icons/ChevronDownIcon.js";
13
10
  import { ChevronLeftIcon } from "../shared/icons/ChevronLeftIcon.js";
@@ -17,22 +14,18 @@ import { CircleArrowUpIcon } from "../shared/icons/CircleArrowUpIcon.js";
17
14
  import { CircleHelpIcon } from "../shared/icons/CircleHelpIcon.js";
18
15
  import { ClockIcon } from "../shared/icons/ClockIcon.js";
19
16
  import { CopyIcon } from "../shared/icons/CopyIcon.js";
20
- import { DiscoverIcon } from "../shared/icons/DiscoverIcon.js";
21
17
  import { ExternalLinkIcon } from "../shared/icons/ExternalLinkIcon.js";
22
18
  import { BinanceIcon } from "../shared/icons/exchanges/BinanceIcon.js";
23
19
  import { CoinbaseIcon } from "../shared/icons/exchanges/CoinbaseIcon.js";
24
20
  import { KrakenIcon } from "../shared/icons/exchanges/KrakenIcon.js";
25
21
  import { OkxIcon } from "../shared/icons/exchanges/OkxIcon.js";
26
22
  import { RobinhoodIcon } from "../shared/icons/exchanges/RobinhoodIcon.js";
27
- import { GooglePayIcon } from "../shared/icons/GooglePayIcon.js";
28
23
  import { InfoIcon } from "../shared/icons/InfoIcon.js";
29
24
  import { LoaderIcon } from "../shared/icons/LoaderIcon.js";
30
25
  import { LogoIcon } from "../shared/icons/LogoIcon.js";
31
26
  import { MailIcon } from "../shared/icons/MailIcon.js";
32
- import { MastercardIcon } from "../shared/icons/MastercardIcon.js";
33
27
  import { PackageIcon } from "../shared/icons/PackageIcon.js";
34
28
  import { QrCodeIcon } from "../shared/icons/QrCodeIcon.js";
35
- import { VisaIcon } from "../shared/icons/VisaIcon.js";
36
29
  import { WalletIcon } from "../shared/icons/WalletIcon.js";
37
30
  import { XIcon } from "../shared/icons/XIcon.js";
38
- export { ActivityIcon, AlertIcon, AmexIcon, ApplePayIcon, ArrowDownIcon, ArrowRightIcon, ArrowRightLeftIcon, BinanceIcon, BitcoinIcon, CardIcon, CashIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleArrowUpIcon, CircleHelpIcon, ClockIcon, CoinbaseIcon, CopyIcon, DiscoverIcon, ExternalLinkIcon, GooglePayIcon, InfoIcon, KrakenIcon, LoaderIcon, LogoIcon, MailIcon, MastercardIcon, OkxIcon, PackageIcon, QrCodeIcon, RobinhoodIcon, VisaIcon, WalletIcon, XIcon };
31
+ export { ActivityIcon, AlertIcon, ArrowDownIcon, ArrowRightIcon, ArrowRightLeftIcon, BinanceIcon, BitcoinIcon, CardIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleArrowUpIcon, CircleHelpIcon, ClockIcon, CoinbaseIcon, CopyIcon, ExternalLinkIcon, InfoIcon, KrakenIcon, LoaderIcon, LogoIcon, MailIcon, OkxIcon, PackageIcon, QrCodeIcon, RobinhoodIcon, WalletIcon, XIcon };
@@ -1 +1 @@
1
- import{ActivityIcon as e}from"../shared/icons/ActivityIcon.js";import{AlertIcon as t}from"../shared/icons/AlertIcon.js";import{AmexIcon as n}from"../shared/icons/AmexIcon.js";import{ApplePayIcon as r}from"../shared/icons/ApplePayIcon.js";import{ArrowDownIcon as i}from"../shared/icons/ArrowDownIcon.js";import{ArrowRightIcon as a}from"../shared/icons/ArrowRightIcon.js";import{ArrowRightLeftIcon as o}from"../shared/icons/ArrowRightLeftIcon.js";import{BitcoinIcon as s}from"../shared/icons/BitcoinIcon.js";import{CardIcon as c}from"../shared/icons/CardIcon.js";import{CashIcon as l}from"../shared/icons/CashIcon.js";import{CheckIcon as u}from"../shared/icons/CheckIcon.js";import{ChevronDownIcon as d}from"../shared/icons/ChevronDownIcon.js";import{ChevronLeftIcon as f}from"../shared/icons/ChevronLeftIcon.js";import{ChevronRightIcon as p}from"../shared/icons/ChevronRightIcon.js";import{ChevronUpIcon as m}from"../shared/icons/ChevronUpIcon.js";import{CircleArrowUpIcon as h}from"../shared/icons/CircleArrowUpIcon.js";import{CircleHelpIcon as g}from"../shared/icons/CircleHelpIcon.js";import{ClockIcon as _}from"../shared/icons/ClockIcon.js";import{CopyIcon as v}from"../shared/icons/CopyIcon.js";import{DiscoverIcon as y}from"../shared/icons/DiscoverIcon.js";import{ExternalLinkIcon as b}from"../shared/icons/ExternalLinkIcon.js";import{BinanceIcon as x}from"../shared/icons/exchanges/BinanceIcon.js";import{CoinbaseIcon as S}from"../shared/icons/exchanges/CoinbaseIcon.js";import{KrakenIcon as C}from"../shared/icons/exchanges/KrakenIcon.js";import{OkxIcon as w}from"../shared/icons/exchanges/OkxIcon.js";import{RobinhoodIcon as T}from"../shared/icons/exchanges/RobinhoodIcon.js";import"../shared/icons/exchanges/index.js";import{GooglePayIcon as E}from"../shared/icons/GooglePayIcon.js";import{InfoIcon as D}from"../shared/icons/InfoIcon.js";import{LoaderIcon as O}from"../shared/icons/LoaderIcon.js";import{LogoIcon as k}from"../shared/icons/LogoIcon.js";import{MailIcon as A}from"../shared/icons/MailIcon.js";import{MastercardIcon as j}from"../shared/icons/MastercardIcon.js";import{PackageIcon as M}from"../shared/icons/PackageIcon.js";import{QrCodeIcon as N}from"../shared/icons/QrCodeIcon.js";import{VisaIcon as P}from"../shared/icons/VisaIcon.js";import{WalletIcon as F}from"../shared/icons/WalletIcon.js";import{XIcon as I}from"../shared/icons/XIcon.js";export{e as ActivityIcon,t as AlertIcon,n as AmexIcon,r as ApplePayIcon,i as ArrowDownIcon,a as ArrowRightIcon,o as ArrowRightLeftIcon,x as BinanceIcon,s as BitcoinIcon,c as CardIcon,l as CashIcon,u as CheckIcon,d as ChevronDownIcon,f as ChevronLeftIcon,p as ChevronRightIcon,m as ChevronUpIcon,h as CircleArrowUpIcon,g as CircleHelpIcon,_ as ClockIcon,S as CoinbaseIcon,v as CopyIcon,y as DiscoverIcon,b as ExternalLinkIcon,E as GooglePayIcon,D as InfoIcon,C as KrakenIcon,O as LoaderIcon,k as LogoIcon,A as MailIcon,j as MastercardIcon,w as OkxIcon,M as PackageIcon,N as QrCodeIcon,T as RobinhoodIcon,P as VisaIcon,F as WalletIcon,I as XIcon};
1
+ import{ActivityIcon as e}from"../shared/icons/ActivityIcon.js";import{AlertIcon as t}from"../shared/icons/AlertIcon.js";import{ArrowDownIcon as n}from"../shared/icons/ArrowDownIcon.js";import{ArrowRightIcon as r}from"../shared/icons/ArrowRightIcon.js";import{ArrowRightLeftIcon as i}from"../shared/icons/ArrowRightLeftIcon.js";import{BitcoinIcon as a}from"../shared/icons/BitcoinIcon.js";import{CardIcon as o}from"../shared/icons/CardIcon.js";import{CheckIcon as s}from"../shared/icons/CheckIcon.js";import{ChevronDownIcon as c}from"../shared/icons/ChevronDownIcon.js";import{ChevronLeftIcon as l}from"../shared/icons/ChevronLeftIcon.js";import{ChevronRightIcon as u}from"../shared/icons/ChevronRightIcon.js";import{ChevronUpIcon as d}from"../shared/icons/ChevronUpIcon.js";import{CircleArrowUpIcon as f}from"../shared/icons/CircleArrowUpIcon.js";import{CircleHelpIcon as p}from"../shared/icons/CircleHelpIcon.js";import{ClockIcon as m}from"../shared/icons/ClockIcon.js";import{CopyIcon as h}from"../shared/icons/CopyIcon.js";import{ExternalLinkIcon as g}from"../shared/icons/ExternalLinkIcon.js";import{BinanceIcon as _}from"../shared/icons/exchanges/BinanceIcon.js";import{CoinbaseIcon as v}from"../shared/icons/exchanges/CoinbaseIcon.js";import{KrakenIcon as y}from"../shared/icons/exchanges/KrakenIcon.js";import{OkxIcon as b}from"../shared/icons/exchanges/OkxIcon.js";import{RobinhoodIcon as x}from"../shared/icons/exchanges/RobinhoodIcon.js";import"../shared/icons/exchanges/index.js";import{InfoIcon as S}from"../shared/icons/InfoIcon.js";import{LoaderIcon as C}from"../shared/icons/LoaderIcon.js";import{LogoIcon as w}from"../shared/icons/LogoIcon.js";import{MailIcon as T}from"../shared/icons/MailIcon.js";import{PackageIcon as E}from"../shared/icons/PackageIcon.js";import{QrCodeIcon as D}from"../shared/icons/QrCodeIcon.js";import{WalletIcon as O}from"../shared/icons/WalletIcon.js";import{XIcon as k}from"../shared/icons/XIcon.js";export{e as ActivityIcon,t as AlertIcon,n as ArrowDownIcon,r as ArrowRightIcon,i as ArrowRightLeftIcon,_ as BinanceIcon,a as BitcoinIcon,o as CardIcon,s as CheckIcon,c as ChevronDownIcon,l as ChevronLeftIcon,u as ChevronRightIcon,d as ChevronUpIcon,f as CircleArrowUpIcon,p as CircleHelpIcon,m as ClockIcon,v as CoinbaseIcon,h as CopyIcon,g as ExternalLinkIcon,S as InfoIcon,y as KrakenIcon,C as LoaderIcon,w as LogoIcon,T as MailIcon,b as OkxIcon,E as PackageIcon,D as QrCodeIcon,x as RobinhoodIcon,O as WalletIcon,k as XIcon};
package/dist/index.d.ts CHANGED
@@ -1,12 +1,12 @@
1
1
  import { TxRef } from "./shared/driver/types.js";
2
2
  import { ActivityAmount, ActivityDirection, ActivityPayload, ActivityRowPayload, ActivityStatus, ActivityStatusType } from "./shared/widgets/activity/payloads.js";
3
3
  import { ActivityDriver, ActivitySnapshot } from "./flows/activity/driver/types.js";
4
- import { CashMethodCapability, CashMethodsPayload } from "./flows/deposit/driver/payloads.js";
4
+ import { OnrampMethodCapability, OnrampMethodsPayload } from "./flows/deposit/driver/payloads.js";
5
5
  import { DepositSnapshot } from "./flows/deposit/driver/types.js";
6
6
  import { useDepositSnapshot } from "./flows/deposit/driver/context.js";
7
7
  import { ActivityOpenInput } from "./shared/orchestrator/activityOpenInput.js";
8
8
  import { FailureInfo } from "./shared/orchestrator/types.js";
9
- import { CashMethodId, DepositActions, DepositController, DepositMethod, DepositMethodConfig, DepositMethodsConfig, DepositRailConfig, DepositState, DepositStateName, OpenInput } from "./flows/deposit/orchestrator/types.js";
9
+ import { DepositActions, DepositController, DepositMethod, DepositMethodConfig, DepositMethodsConfig, DepositRailConfig, DepositState, DepositStateName, OpenInput } from "./flows/deposit/orchestrator/types.js";
10
10
  import { ChainType, isValidAddressForChainType, isValidEvmAddress, isValidTronAddress, toChainType } from "./shared/chains/index.js";
11
11
  import { WithdrawSnapshot } from "./flows/withdraw/driver/types.js";
12
12
  import { useWithdrawSnapshot } from "./flows/withdraw/driver/context.js";
@@ -43,9 +43,8 @@ import { ChainLogoMeta } from "./shared/utils/logos/chains.js";
43
43
  import { ChainLogoInput, TokenLogoInput } from "./shared/utils/logos/types.js";
44
44
  import { LogosNamespace, logos } from "./shared/utils/logos/api.js";
45
45
  import { BannerAckBucket, bannerAckStorageKey, bucketFromSettlement, useBannerAck, useBannerAckForSettlement } from "./banners/useBannerAck.js";
46
- import { CardBrand, CardData, DepositBindings, TokenizationResult, useDepositBindings } from "./flows/deposit/bindings/DepositBindings.js";
47
46
  import { useWithdrawState } from "./flows/withdraw/orchestrator/controller.js";
48
47
  import { useOptionalWithdraw, usePrefetchWithdraw, useWithdraw } from "./flows/withdraw/orchestrator/useWithdraw.js";
49
48
  import { ConnectWalletConfig } from "./shared/wallet/ConnectWalletContext.js";
50
49
  import { StridgeAppearance, StridgeAsset, StridgeDepositDestination, StridgeDepositFlowConfig, StridgeDepositMethodConfig, StridgeDepositMethodsConfig, StridgeFlowOwner, StridgePrefetchConfig, StridgeProvider, StridgeStorageConfig, StridgeWithdrawFlowConfig } from "./stridge/StridgeProvider.js";
51
- export { type ActivityActions, type ActivityAmount, type ActivityController, type ActivityDirection, type ActivityDriver, type ActivityOpenInput, type ActivityPayload, type ActivityRowPayload, type ActivitySnapshot, type ActivityState, type ActivityStateName, type ActivityStatus, type ActivityStatusType, type BannerAckBucket, type CardBrand, type CardData, type CashMethodCapability, type CashMethodId, type CashMethodsPayload, type ChainLogoInput, type ChainLogoMeta, type ChainType, type ConnectWalletConfig, DEFAULT_KIT_STORAGE_NAMESPACE, type DepositActions, type DepositBindings, type DepositController, type DepositMethod, type DepositMethodConfig, type DepositMethodsConfig, type OpenInput as DepositOpenInput, type DepositRailConfig, type DepositSnapshot, type DepositState, type DepositStateName, type FailureInfo, type FlowEvent, type FlowIdKey, type IntercomMerchantContext, KIT_VERSION, KitPortalScope, KitStorageProvider, type LogosNamespace, type Presentation, type PresentationConfig, type PresentationMode, type PublicStridgeEventBus, type RedactEventOptions, type StridgeAppearance, type StridgeAsset, type StridgeDepositDestination, type StridgeDepositFlowConfig, type StridgeDepositMethodConfig, type StridgeDepositMethodsConfig, type StridgeEnvironment, type StridgeEvent, type StridgeFlowOwner, type StridgePrefetchConfig, StridgeProvider, type StridgeStorageConfig, type StridgeWithdrawFlowConfig, type SubscribeOptions, type SupportConfig, type SupportOpenContext, type TermsConfig, type TermsSelectContext, type TokenLogoInput, type TokenizationResult, type TxRef, type UiEvent, type WithdrawActions, type WithdrawBalanceInput, type WithdrawBindings, type WithdrawController, type WithdrawSnapshot, type WithdrawState, type WithdrawStateName, type WithdrawSubmitActions, type WithdrawSubmitCallback, type WithdrawSubmitInput, type WithdrawSuggestedRecipient, type WithdrawalFormSnapshot, bannerAckStorageKey, bucketFromSettlement, createKitStorage, createLocalStorageAdapter, createMemoryStorageAdapter, createSessionStorageAdapter, isValidAddressForChainType, isValidEvmAddress, isValidTronAddress, logos, redactEvent, resolveStorageAdapter, toChainType, useActivity, useActivitySnapshot, useActivityState, useBannerAck, useBannerAckForSettlement, useCurrentFlowId, useDeposit, useDepositBindings, useDepositSnapshot, useDepositState, useKitConfig, useKitStorage, useKitStorageValue, useOptionalActivity, useOptionalDeposit, useOptionalKitStorage, useOptionalPrefetchActivity, useOptionalWithdraw, usePrefetchActivity, usePrefetchDeposit, usePrefetchWithdraw, useStridgeEvent, useStridgeEventBus, useStridgeEvents, useStridgeFlowEvent, useStridgeFlowEvents, useWithdraw, useWithdrawBindings, useWithdrawSnapshot, useWithdrawState };
50
+ export { type ActivityActions, type ActivityAmount, type ActivityController, type ActivityDirection, type ActivityDriver, type ActivityOpenInput, type ActivityPayload, type ActivityRowPayload, type ActivitySnapshot, type ActivityState, type ActivityStateName, type ActivityStatus, type ActivityStatusType, type BannerAckBucket, type ChainLogoInput, type ChainLogoMeta, type ChainType, type ConnectWalletConfig, DEFAULT_KIT_STORAGE_NAMESPACE, type DepositActions, type DepositController, type DepositMethod, type DepositMethodConfig, type DepositMethodsConfig, type OpenInput as DepositOpenInput, type DepositRailConfig, type DepositSnapshot, type DepositState, type DepositStateName, type FailureInfo, type FlowEvent, type FlowIdKey, type IntercomMerchantContext, KIT_VERSION, KitPortalScope, KitStorageProvider, type LogosNamespace, type OnrampMethodCapability, type OnrampMethodsPayload, type Presentation, type PresentationConfig, type PresentationMode, type PublicStridgeEventBus, type RedactEventOptions, type StridgeAppearance, type StridgeAsset, type StridgeDepositDestination, type StridgeDepositFlowConfig, type StridgeDepositMethodConfig, type StridgeDepositMethodsConfig, type StridgeEnvironment, type StridgeEvent, type StridgeFlowOwner, type StridgePrefetchConfig, StridgeProvider, type StridgeStorageConfig, type StridgeWithdrawFlowConfig, type SubscribeOptions, type SupportConfig, type SupportOpenContext, type TermsConfig, type TermsSelectContext, type TokenLogoInput, type TxRef, type UiEvent, type WithdrawActions, type WithdrawBalanceInput, type WithdrawBindings, type WithdrawController, type WithdrawSnapshot, type WithdrawState, type WithdrawStateName, type WithdrawSubmitActions, type WithdrawSubmitCallback, type WithdrawSubmitInput, type WithdrawSuggestedRecipient, type WithdrawalFormSnapshot, bannerAckStorageKey, bucketFromSettlement, createKitStorage, createLocalStorageAdapter, createMemoryStorageAdapter, createSessionStorageAdapter, isValidAddressForChainType, isValidEvmAddress, isValidTronAddress, logos, redactEvent, resolveStorageAdapter, toChainType, useActivity, useActivitySnapshot, useActivityState, useBannerAck, useBannerAckForSettlement, useCurrentFlowId, useDeposit, useDepositSnapshot, useDepositState, useKitConfig, useKitStorage, useKitStorageValue, useOptionalActivity, useOptionalDeposit, useOptionalKitStorage, useOptionalPrefetchActivity, useOptionalWithdraw, usePrefetchActivity, usePrefetchDeposit, usePrefetchWithdraw, useStridgeEvent, useStridgeEventBus, useStridgeEvents, useStridgeFlowEvent, useStridgeFlowEvents, useWithdraw, useWithdrawBindings, useWithdrawSnapshot, useWithdrawState };
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- import{isValidAddressForChainType as e,isValidEvmAddress as t,isValidTronAddress as n,toChainType as r}from"./shared/chains/index.js";import{logos as i}from"./shared/utils/logos/api.js";import"./shared/utils/logos/index.js";import{createLocalStorageAdapter as a,createMemoryStorageAdapter as o,createSessionStorageAdapter as s,resolveStorageAdapter as c}from"./storage/adapters.js";import{createKitStorage as l}from"./storage/createKitStorage.js";import{DEFAULT_KIT_STORAGE_NAMESPACE as u,KitStorageProvider as d,useKitStorage as f,useKitStorageValue as p,useOptionalKitStorage as m}from"./storage/context.js";import"./storage/index.js";import{bannerAckStorageKey as h,bucketFromSettlement as g,useBannerAck as _,useBannerAckForSettlement as v}from"./banners/useBannerAck.js";import"./banners/index.js";import{KIT_VERSION as y}from"./version.js";import{useCurrentFlowId as b}from"./events/hooks/useCurrentFlowId.js";import{useStridgeEvent as x}from"./events/hooks/useStridgeEvent.js";import{useStridgeEventBus as S}from"./events/hooks/useStridgeEventBus.js";import{useStridgeEvents as C}from"./events/hooks/useStridgeEvents.js";import{useStridgeFlowEvent as w}from"./events/hooks/useStridgeFlowEvent.js";import{useStridgeFlowEvents as T}from"./events/hooks/useStridgeFlowEvents.js";import{redactEvent as E}from"./events/redact.js";import"./events/index.js";import{useActivitySnapshot as D}from"./flows/activity/driver/context.js";import{useActivityState as O}from"./flows/activity/orchestrator/controller.js";import{useActivity as k,useOptionalActivity as A,useOptionalPrefetchActivity as j,usePrefetchActivity as M}from"./flows/activity/orchestrator/useActivity.js";import"./flows/activity/orchestrator/index.js";import{useDepositBindings as N}from"./flows/deposit/bindings/DepositBindings.js";import"./flows/deposit/bindings/index.js";import{useDepositSnapshot as P}from"./flows/deposit/driver/context.js";import{useDepositState as F}from"./flows/deposit/orchestrator/controller.js";import{useDeposit as I,useOptionalDeposit as L,usePrefetchDeposit as R}from"./flows/deposit/orchestrator/useDeposit.js";import{useWithdrawBindings as z}from"./flows/withdraw/bindings/WithdrawBindings.js";import"./flows/withdraw/bindings/index.js";import{useWithdrawSnapshot as B}from"./flows/withdraw/driver/context.js";import{useWithdrawState as V}from"./flows/withdraw/orchestrator/controller.js";import{useOptionalWithdraw as H,usePrefetchWithdraw as U,useWithdraw as W}from"./flows/withdraw/orchestrator/useWithdraw.js";import"./flows/withdraw/orchestrator/index.js";import{useKitConfig as G}from"./scope/context.js";import{KitPortalScope as K}from"./scope/KitPortalScope.js";import{StridgeProvider as q}from"./stridge/StridgeProvider.js";export{u as DEFAULT_KIT_STORAGE_NAMESPACE,y as KIT_VERSION,K as KitPortalScope,d as KitStorageProvider,q as StridgeProvider,h as bannerAckStorageKey,g as bucketFromSettlement,l as createKitStorage,a as createLocalStorageAdapter,o as createMemoryStorageAdapter,s as createSessionStorageAdapter,e as isValidAddressForChainType,t as isValidEvmAddress,n as isValidTronAddress,i as logos,E as redactEvent,c as resolveStorageAdapter,r as toChainType,k as useActivity,D as useActivitySnapshot,O as useActivityState,_ as useBannerAck,v as useBannerAckForSettlement,b as useCurrentFlowId,I as useDeposit,N as useDepositBindings,P as useDepositSnapshot,F as useDepositState,G as useKitConfig,f as useKitStorage,p as useKitStorageValue,A as useOptionalActivity,L as useOptionalDeposit,m as useOptionalKitStorage,j as useOptionalPrefetchActivity,H as useOptionalWithdraw,M as usePrefetchActivity,R as usePrefetchDeposit,U as usePrefetchWithdraw,x as useStridgeEvent,S as useStridgeEventBus,C as useStridgeEvents,w as useStridgeFlowEvent,T as useStridgeFlowEvents,W as useWithdraw,z as useWithdrawBindings,B as useWithdrawSnapshot,V as useWithdrawState};
1
+ import{isValidAddressForChainType as e,isValidEvmAddress as t,isValidTronAddress as n,toChainType as r}from"./shared/chains/index.js";import{logos as i}from"./shared/utils/logos/api.js";import"./shared/utils/logos/index.js";import{createLocalStorageAdapter as a,createMemoryStorageAdapter as o,createSessionStorageAdapter as s,resolveStorageAdapter as c}from"./storage/adapters.js";import{createKitStorage as l}from"./storage/createKitStorage.js";import{DEFAULT_KIT_STORAGE_NAMESPACE as u,KitStorageProvider as d,useKitStorage as f,useKitStorageValue as p,useOptionalKitStorage as m}from"./storage/context.js";import"./storage/index.js";import{bannerAckStorageKey as h,bucketFromSettlement as g,useBannerAck as _,useBannerAckForSettlement as v}from"./banners/useBannerAck.js";import"./banners/index.js";import{KIT_VERSION as y}from"./version.js";import{useCurrentFlowId as b}from"./events/hooks/useCurrentFlowId.js";import{useStridgeEvent as x}from"./events/hooks/useStridgeEvent.js";import{useStridgeEventBus as S}from"./events/hooks/useStridgeEventBus.js";import{useStridgeEvents as C}from"./events/hooks/useStridgeEvents.js";import{useStridgeFlowEvent as w}from"./events/hooks/useStridgeFlowEvent.js";import{useStridgeFlowEvents as T}from"./events/hooks/useStridgeFlowEvents.js";import{redactEvent as E}from"./events/redact.js";import"./events/index.js";import{useActivitySnapshot as D}from"./flows/activity/driver/context.js";import{useActivityState as O}from"./flows/activity/orchestrator/controller.js";import{useActivity as k,useOptionalActivity as A,useOptionalPrefetchActivity as j,usePrefetchActivity as M}from"./flows/activity/orchestrator/useActivity.js";import"./flows/activity/orchestrator/index.js";import{useDepositSnapshot as N}from"./flows/deposit/driver/context.js";import{useDepositState as P}from"./flows/deposit/orchestrator/controller.js";import{useDeposit as F,useOptionalDeposit as I,usePrefetchDeposit as L}from"./flows/deposit/orchestrator/useDeposit.js";import{useWithdrawBindings as R}from"./flows/withdraw/bindings/WithdrawBindings.js";import"./flows/withdraw/bindings/index.js";import{useWithdrawSnapshot as z}from"./flows/withdraw/driver/context.js";import{useWithdrawState as B}from"./flows/withdraw/orchestrator/controller.js";import{useOptionalWithdraw as V,usePrefetchWithdraw as H,useWithdraw as U}from"./flows/withdraw/orchestrator/useWithdraw.js";import"./flows/withdraw/orchestrator/index.js";import{useKitConfig as W}from"./scope/context.js";import{KitPortalScope as G}from"./scope/KitPortalScope.js";import{StridgeProvider as K}from"./stridge/StridgeProvider.js";export{u as DEFAULT_KIT_STORAGE_NAMESPACE,y as KIT_VERSION,G as KitPortalScope,d as KitStorageProvider,K as StridgeProvider,h as bannerAckStorageKey,g as bucketFromSettlement,l as createKitStorage,a as createLocalStorageAdapter,o as createMemoryStorageAdapter,s as createSessionStorageAdapter,e as isValidAddressForChainType,t as isValidEvmAddress,n as isValidTronAddress,i as logos,E as redactEvent,c as resolveStorageAdapter,r as toChainType,k as useActivity,D as useActivitySnapshot,O as useActivityState,_ as useBannerAck,v as useBannerAckForSettlement,b as useCurrentFlowId,F as useDeposit,N as useDepositSnapshot,P as useDepositState,W as useKitConfig,f as useKitStorage,p as useKitStorageValue,A as useOptionalActivity,I as useOptionalDeposit,m as useOptionalKitStorage,j as useOptionalPrefetchActivity,V as useOptionalWithdraw,M as usePrefetchActivity,L as usePrefetchDeposit,H as usePrefetchWithdraw,x as useStridgeEvent,S as useStridgeEventBus,C as useStridgeEvents,w as useStridgeFlowEvent,T as useStridgeFlowEvents,U as useWithdraw,R as useWithdrawBindings,z as useWithdrawSnapshot,B as useWithdrawState};
package/dist/package.js CHANGED
@@ -1 +1 @@
1
- var e=`0.1.0-alpha.60`;export{e as version};
1
+ var e=`0.1.0-alpha.61`;export{e as version};
@@ -3,14 +3,11 @@ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/shared/icons/BitcoinIcon.d.ts
5
5
  /**
6
- * Bitcoin glyph — stylised ₿ mark drawn as a single open stroke. Used
7
- * as the iconographic shorthand for the crypto payment rail in
8
- * `Deposit.RailPicker`. The kit's only crypto-symbol icon; appropriate
9
- * wherever a single glyph needs to represent "crypto" as a category
10
- * (not a specific token — for that use a `TokenLogo`).
11
- *
12
- * SVG path mirrors the `bitcoin` icon from lucide (MIT) — inlined
13
- * because `@stridge/kit` must not depend on `lucide-react`.
6
+ * Bitcoin coin glyph — a solid coin with the ₿ mark knocked out as negative space
7
+ * (`fillRule="evenodd"`). Used as the iconographic shorthand for the crypto payment rail in
8
+ * `Deposit.RailPicker`. Monochrome: the fill follows `currentColor`, so it tints with the
9
+ * surrounding text colour. The kit's only crypto-symbol icon; appropriate wherever a single glyph
10
+ * needs to represent "crypto" as a category (not a specific token — for that use a `TokenLogo`).
14
11
  */
15
12
  declare function BitcoinIcon(props: SVGProps<SVGSVGElement>): _$react_jsx_runtime0.JSX.Element;
16
13
  //#endregion
@@ -1 +1 @@
1
- import{jsx as e}from"react/jsx-runtime";function t(t){return e(`svg`,{xmlns:`http://www.w3.org/2000/svg`,width:24,height:24,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...t,children:e(`path`,{d:`M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727`})})}export{t as BitcoinIcon};
1
+ import{jsx as e}from"react/jsx-runtime";function t(t){return e(`svg`,{xmlns:`http://www.w3.org/2000/svg`,width:24,height:24,viewBox:`0 0 500 500`,fill:`currentColor`,...t,children:e(`path`,{fillRule:`evenodd`,d:`M43.43,125.143c7.71-10.766,14.875-21.901,23.562-31.986c15.8-18.343,33.692-34.063,54.18-47.075c18.379-11.672,37.761-20.872,58.501-27.305c32.294-10.018,65.26-12.997,98.838-9.165c24.544,2.801,48.191,9.067,70.713,19.215c13.633,6.142,26.456,13.731,39.025,21.927c25.328,16.515,45.618,38.014,62.58,62.577c18.116,26.236,29.889,55.421,36.346,86.725c4.535,21.983,6.449,44.171,4.503,66.504c-2.399,27.536-8.514,54.086-19.938,79.604c-9.662,21.583-21.589,41.401-36.861,59.301c-14.94,17.511-31.788,32.831-51.149,45.461c-13.184,8.6-26.926,16.276-41.434,21.975c-24.274,9.537-49.447,15.986-75.787,17.115c-18.545,0.795-36.985,0.483-55.279-2.763c-15.713-2.788-31.049-6.858-46.063-12.496c-14.566-5.47-28.693-11.95-41.709-20.143c-18.766-11.812-35.683-26.147-50.737-42.663c-16.773-18.403-30.373-38.808-40.779-61.344c-14.7-31.835-21.929-65.401-22.359-100.425c-0.162-13.173,1.349-26.244,3.105-39.283c0.126-0.933-0.002-1.899-0.012-2.851c1.536-0.952,1.4-2.618,1.677-4.071c3.906-20.483,10.494-40.059,19.418-58.906C36.933,138.397,41.296,132.307,43.43,125.143z M325.157,254.513c6.537-3.474,12.749-5.465,17.658-9.85c18.918-16.899,23.96-56.673-6.747-75.833c-9.566-5.969-19.77-10.393-30.77-14.907c1.819-14.731,7.709-28.516,9.622-43.603c-9.076-2.249-17.578-5.234-26.425-6.193c-3.617,14.177-7.085,27.769-10.674,41.837c-6.78-2.076-13.761-1.879-20.142-5.473c2.302-14.39,7.773-27.872,9.268-42.314c-9.322-1.464-17.216-5.094-26.265-5.485c-3.563,14.209-7.011,27.958-10.586,42.215c-17.944-2.75-34.419-8.921-52.52-12.239c-3.977,8.91-5.738,18.311-7.334,28.313c5.896,1.392,11.022,2.623,16.158,3.811c12.965,2.998,16.517,10.086,13.439,21.424c-2.19,8.065-4.166,16.189-6.182,24.301c-7.245,29.16-14.432,58.333-21.72,87.482c-1.642,6.567-5.734,8.706-12.398,7.731c-6.563-0.96-12.757-3.907-19.99-3.693c-3.136,10.032-9.378,18.871-11.588,29.946c17.236,4.391,33.911,8.639,51.344,13.08c-1.312,15.208-7.614,29.125-9.476,44.441c8.739,2.095,16.965,4.066,25.544,6.123c5.653-14.044,6.957-28.803,12.226-43.33c6.351,3.265,13.397,2.317,19.612,6.427c-3.387,14.003-6.762,27.952-10.178,42.077c8.986,3.216,17.753,4.528,26.758,6.77c3.645-14.604,7.169-28.728,10.578-42.386c2.123-1.091,3.676-0.888,5.143-0.574c14.113,3.021,28.39,3.726,42.676,2.14c12.368-1.373,23.343-6.088,32.148-15.372c9.791-10.323,14.71-22.952,17.078-36.535c1.93-11.065,1.436-22.277-5.06-32.071C341.263,265.099,334.27,259.243,325.157,254.513z M223.128,312.17c17.411,4.325,34.803,8.95,53.02,5.624c9.715-1.774,17.037-6.73,19.985-16.503c2.78-9.218,1.164-17.593-5.673-24.879c-7.11-7.576-16.254-11.514-25.682-14.807c-11.264-3.934-22.683-7.508-34.99-8.48c-4.716,19.168-9.293,37.773-13.972,56.788C218.797,310.842,220.933,311.625,223.128,312.17z M284.628,231.846c9.628-1.368,17.612-7.738,19.958-16.393c2.869-10.583-0.337-19.865-8.902-26.178c-9.718-7.163-20.908-10.807-32.47-13.337c-4.307-0.943-8.544-3.454-13.756-1.759c-4.143,16.837-8.303,33.747-12.599,51.209C253.316,229.543,268.47,234.141,284.628,231.846z`})})}export{t as BitcoinIcon};
@@ -4,9 +4,9 @@ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
4
4
  //#region src/shared/icons/CardIcon.d.ts
5
5
  /**
6
6
  * Generic credit-card outline. Used as the themed monochrome glyph for the
7
- * cash rail's Card method in `Deposit.Method`; brand-specific card art (Visa,
8
- * Mastercard, etc.) ships through the `DepositMethodInput.icon` override prop
9
- * when the integrator has approval for the official mark.
7
+ * onramp ("Cash") method in `Deposit.Method` and the onramp rail tab;
8
+ * brand-specific card art ships through the `DepositMethodInput.icon` override
9
+ * prop when the integrator has approval for the official mark.
10
10
  *
11
11
  * SVG path mirrors the `credit-card` icon from lucide (MIT) — inlined because
12
12
  * `@stridge/kit` must not depend on `lucide-react`.
@@ -1 +1 @@
1
- import"./createActivityReducers.js";import"./failureReason.js";import"./resolveActivityEntry.js";import"./toFailure.js";import"./useDialogLifecycle.js";import"./useDriverSettlementListener.js";import"./useEffectiveState.js";import"./userRejection.js";import"./useSettlementWatcher.js";
1
+ import"./createActivityReducers.js";import"./failureReason.js";import"./resolveActivityEntry.js";import"./toFailure.js";import"./useDialogLifecycle.js";import"./useDriverSettlementListener.js";import"./useEffectiveState.js";import"./useOnrampSessionWatcher.js";import"./userRejection.js";import"./useSettlementWatcher.js";
@@ -0,0 +1 @@
1
+ import{useEffect as e,useRef as t}from"react";function n(n,r,i){let a=t(r);a.current=r;let o=r!=null;e(()=>{if(!o)return;let e=a.current;if(e==null||!n.watchOnrampSession)return;let t=new AbortController;return n.watchOnrampSession(e,()=>void 0,t.signal),()=>t.abort()},[n,i,o])}export{n as useOnrampSessionWatcher};
@@ -26,11 +26,11 @@ type TabsVariant = "default" | "line" | "ghost";
26
26
  * <Tabs.Root defaultValue="crypto">
27
27
  * <Tabs.List variant="default">
28
28
  * <Tabs.Tab value="crypto">Crypto</Tabs.Tab>
29
- * <Tabs.Tab value="cash">Cash</Tabs.Tab>
29
+ * <Tabs.Tab value="onramp">Cash</Tabs.Tab>
30
30
  * <Tabs.Indicator />
31
31
  * </Tabs.List>
32
32
  * <Tabs.Panel value="crypto">…</Tabs.Panel>
33
- * <Tabs.Panel value="cash">…</Tabs.Panel>
33
+ * <Tabs.Panel value="onramp">…</Tabs.Panel>
34
34
  * </Tabs.Root>
35
35
  * ```
36
36
  */
@@ -1 +1 @@
1
- "use client";import{useLingui as e}from"../../../i18n/useLingui.js";import"../../../../i18n/index.js";import{useFailureReasonForKind as t}from"../../../orchestrator/failureReason.js";import"../../../orchestrator/index.js";import{Step as n,Steps as r}from"../../../ui/Steps/Steps.js";import"../../../ui/Steps/index.js";import{ErrorState as i}from"../../error-state/compound/ErrorState.js";import"../../error-state/compound/index.js";import{ProcessingState as a}from"../../processing-state/compound/ProcessingState.js";import"../../processing-state/compound/index.js";import{SuccessState as o}from"../../success-state/compound/SuccessState.js";import"../../success-state/compound/index.js";import{useActivitySource as s}from"./context.js";import{ActivityListHeader as c}from"./components/ActivityHeader.js";import{toAssetDescriptor as l}from"../../asset-descriptor.js";import{settlementToWidgetProps as u}from"../adapters/settlementToWidgetProps.js";import{createContext as d,use as f,useEffect as p}from"react";import{jsx as m,jsxs as h}from"react/jsx-runtime";function g(e,t,n){return t===`withdraw`?n===`pending`?e.withdrawPending:n===`succeeded`?e.withdrawSucceeded:e.withdrawFailed:n===`pending`?e.depositPending:n===`succeeded`?e.depositSucceeded:e.depositFailed}const _=d(null);_.displayName=`ActivityDetailContext`;function v({children:t}){let i=s(`ActivityDetail`),{_:a}=e(),o=i.entity,c=o.status===`ready`||o.status===`stale`,l=c?o.raw:void 0,d=i.settlementId,f=l&&d?u(l,d,i.settlementContext):null,v=c&&d!==void 0&&!f,S=i.back,C=i.onLookupMiss;if(p(()=>{v&&(S??C)?.()},[v,S,C]),!f)return null;let w={depositPending:a({id:`JYp-ic`,message:`Deposit processing`}),depositSucceeded:a({id:`e3xU5E`,message:`Deposit received`}),depositFailed:a({id:`i-4Fbp`,message:`Deposit failed`}),withdrawPending:a({id:`w-2VR9`,message:`Withdrawal in progress…`}),withdrawSucceeded:a({id:`q32Nt8`,message:`Withdrawal complete`}),withdrawFailed:a({id:`KTNWsg`,message:`Withdrawal failed`})},T={payload:f.payload,direction:f.direction,headerTitle:g(w,f.direction,f.payload.kind),...S?{onBack:S}:{}},E=h(r,{activeStep:f.payload.kind,children:[m(n,{name:`pending`,children:m(y,{})}),m(n,{name:`succeeded`,children:m(b,{})}),m(n,{name:`failed`,children:m(x,{})})]});return m(_,{value:T,children:t??E})}function y({children:e}){let t=f(_);if(!t||t.payload.kind!==`pending`)return null;let{payload:n,headerTitle:r,onBack:i}=t,o=l(n.creditedAsset)??{symbol:n.creditedAsset.symbol},s={...n.sourceWallet.name===void 0?{}:{name:n.sourceWallet.name},address:n.sourceWallet.address.formatted,...n.sourceWallet.explorerUrl?{explorerUrl:n.sourceWallet.explorerUrl}:{}},u=n.receiveAmount.value===0;return h(a,{amount:n.receiveAmount.formatted,creditedAsset:o,creditedTo:n.creditedTo,headerTitle:r,...u?{loading:!0}:{},...n.txHash?{sourceTx:{hash:n.txHash.formatted,...n.txExplorerUrl?{explorerUrl:n.txExplorerUrl}:{}}}:{},...s.address?{sourceWallet:s}:{},submittedAt:n.submittedAt.formatted,...n.detectedAt?{detectedAt:n.detectedAt.formatted}:{},children:[m(c,{title:r,onBack:i}),e??h(a.Body,{children:[m(a.Hero,{}),m(a.StatusPill,{}),h(a.Details,{children:[m(a.SourceRow,{}),m(a.SourceTxRow,{}),m(a.SubmittedAtRow,{}),m(a.DetectedAtRow,{})]})]})]})}function b({children:t}){let{_:n}=e(),r=f(_);if(!r||r.payload.kind!==`succeeded`)return null;let{payload:i,direction:a,headerTitle:s,onBack:u}=r,d=l(i.creditedAsset)??{symbol:i.creditedAsset.symbol},p={...i.sourceWallet.name===void 0?{}:{name:i.sourceWallet.name},address:i.sourceWallet.address.formatted,...i.sourceWallet.explorerUrl?{explorerUrl:i.sourceWallet.explorerUrl}:{}},g=i.destination.name??i.creditedAsset.symbol,v=i.aggregatorExplorerUrl?{url:i.aggregatorExplorerUrl}:void 0,y=i.depositTx||i.completionTx||i.submittedAt||i.filledAt,b=n(a===`withdraw`?{id:`_girqu`,message:`Withdrawal successful`}:{id:`--OGth`,message:`Deposit successful`}),x=n(a===`withdraw`?{id:`_QZdX-`,message:`Your withdrawal was completed successfully.`}:{id:`oW1G8i`,message:`Your funds were successfully deposited.`});return h(o,{amount:i.receiveAmount.formatted,creditedAsset:d,creditedTo:g,headerTitle:s,headlineTitle:b,headlineDescription:x,...v?{explorer:v}:{},...i.depositTx?{depositTx:{hash:i.depositTx.hash.formatted,...i.depositTx.explorerUrl?{explorerUrl:i.depositTx.explorerUrl}:{}}}:{},...i.completionTx?{completionTx:{hash:i.completionTx.hash.formatted,...i.completionTx.explorerUrl?{explorerUrl:i.completionTx.explorerUrl}:{}}}:{},submittedAt:i.submittedAt.formatted,filledAt:i.filledAt.formatted,totalTime:i.totalTime.formatted,sourceWallet:p,children:[m(c,{title:s,onBack:u}),t??h(o.Body,{children:[m(o.Headline,{}),h(o.Details,{children:[m(o.FillStatusRow,{}),m(o.TotalTimeRow,{}),m(o.SourceRow,{}),m(o.DestinationRow,{}),m(o.YouReceiveRow,{}),y?h(o.MoreDetails,{children:[m(o.DepositTxRow,{}),m(o.CompletionTxRow,{}),m(o.SubmittedAtRow,{}),m(o.FilledAtRow,{})]}):null]})]})]})}function x({children:n}){let{_:r}=e(),a=t(),o=f(_);if(!o||o.payload.kind!==`failed`)return null;let{payload:s,direction:u,headerTitle:d,onBack:p}=o,g={...s.sourceWallet.name===void 0?{}:{name:s.sourceWallet.name},address:s.sourceWallet.address.formatted,...s.sourceWallet.explorerUrl?{explorerUrl:s.sourceWallet.explorerUrl}:{}},v={...s.destination.name===void 0?{}:{name:s.destination.name},address:s.destination.address.formatted},y=l(s.creditedAsset)??{symbol:s.creditedAsset.symbol},b={hash:s.txHash.formatted,...s.txExplorerUrl?{explorerUrl:s.txExplorerUrl}:{}},x=a(s.failureKind);return h(i,{headline:r(u===`withdraw`?{id:`KTNWsg`,message:`Withdrawal failed`}:{id:`i-4Fbp`,message:`Deposit failed`}),reason:x,headerTitle:d,sourceWallet:g,destination:v,receiveAmount:s.receiveAmount.formatted,receiveAsset:y,depositTx:b,submittedAt:s.submittedAt.formatted,failedAt:s.failedAt.formatted,children:[m(c,{title:d,onBack:p}),n??h(i.Body,{children:[m(i.Hero,{}),h(i.Details,{children:[m(i.FillStatusRow,{}),m(i.SourceRow,{}),m(i.DestinationRow,{}),m(i.YouReceiveRow,{}),h(i.MoreDetails,{children:[m(i.DepositTxRow,{}),m(i.SubmittedAtRow,{}),m(i.FailedAtRow,{})]})]}),m(i.HelpInfo,{})]})]})}(function(e){e.Processing=y,e.Succeeded=b,e.Failed=x})(v||={});export{v as ActivityDetail};
1
+ "use client";import{useLingui as e}from"../../../i18n/useLingui.js";import"../../../../i18n/index.js";import{useFailureReasonForKind as t}from"../../../orchestrator/failureReason.js";import"../../../orchestrator/index.js";import{Step as n,Steps as r}from"../../../ui/Steps/Steps.js";import"../../../ui/Steps/index.js";import{ProcessingState as i}from"../../processing-state/compound/ProcessingState.js";import"../../processing-state/compound/index.js";import{ErrorState as a}from"../../error-state/compound/ErrorState.js";import"../../error-state/compound/index.js";import{SuccessState as o}from"../../success-state/compound/SuccessState.js";import"../../success-state/compound/index.js";import{useActivitySource as s}from"./context.js";import{ActivityListHeader as c}from"./components/ActivityHeader.js";import{toAssetDescriptor as l}from"../../asset-descriptor.js";import{settlementToWidgetProps as u}from"../adapters/settlementToWidgetProps.js";import{createContext as d,use as f,useEffect as p}from"react";import{jsx as m,jsxs as h}from"react/jsx-runtime";function g(e,t,n){return t===`withdraw`?n===`pending`?e.withdrawPending:n===`succeeded`?e.withdrawSucceeded:e.withdrawFailed:n===`pending`?e.depositPending:n===`succeeded`?e.depositSucceeded:e.depositFailed}const _=d(null);_.displayName=`ActivityDetailContext`;function v({children:t}){let i=s(`ActivityDetail`),{_:a}=e(),o=i.entity,c=o.status===`ready`||o.status===`stale`,l=c?o.raw:void 0,d=i.settlementId,f=l&&d?u(l,d,i.settlementContext):null,v=c&&d!==void 0&&!f,S=i.back,C=i.onLookupMiss;if(p(()=>{v&&(S??C)?.()},[v,S,C]),!f)return null;let w={depositPending:a({id:`JYp-ic`,message:`Deposit processing`}),depositSucceeded:a({id:`e3xU5E`,message:`Deposit received`}),depositFailed:a({id:`i-4Fbp`,message:`Deposit failed`}),withdrawPending:a({id:`w-2VR9`,message:`Withdrawal in progress…`}),withdrawSucceeded:a({id:`q32Nt8`,message:`Withdrawal complete`}),withdrawFailed:a({id:`KTNWsg`,message:`Withdrawal failed`})},T={payload:f.payload,direction:f.direction,headerTitle:g(w,f.direction,f.payload.kind),...S?{onBack:S}:{}},E=h(r,{activeStep:f.payload.kind,children:[m(n,{name:`pending`,children:m(y,{})}),m(n,{name:`succeeded`,children:m(b,{})}),m(n,{name:`failed`,children:m(x,{})})]});return m(_,{value:T,children:t??E})}function y({children:e}){let t=f(_);if(!t||t.payload.kind!==`pending`)return null;let{payload:n,headerTitle:r,onBack:a}=t,o=l(n.creditedAsset)??{symbol:n.creditedAsset.symbol},s={...n.sourceWallet.name===void 0?{}:{name:n.sourceWallet.name},address:n.sourceWallet.address.formatted,...n.sourceWallet.explorerUrl?{explorerUrl:n.sourceWallet.explorerUrl}:{}},u=n.receiveAmount.value===0;return h(i,{amount:n.receiveAmount.formatted,creditedAsset:o,creditedTo:n.creditedTo,headerTitle:r,...u?{loading:!0}:{},...n.txHash?{sourceTx:{hash:n.txHash.formatted,...n.txExplorerUrl?{explorerUrl:n.txExplorerUrl}:{}}}:{},...s.address?{sourceWallet:s}:{},submittedAt:n.submittedAt.formatted,...n.detectedAt?{detectedAt:n.detectedAt.formatted}:{},children:[m(c,{title:r,onBack:a}),e??h(i.Body,{children:[m(i.Hero,{}),m(i.StatusPill,{}),h(i.Details,{children:[m(i.SourceRow,{}),m(i.SourceTxRow,{}),m(i.SubmittedAtRow,{}),m(i.DetectedAtRow,{})]})]})]})}function b({children:t}){let{_:n}=e(),r=f(_);if(!r||r.payload.kind!==`succeeded`)return null;let{payload:i,direction:a,headerTitle:s,onBack:u}=r,d=l(i.creditedAsset)??{symbol:i.creditedAsset.symbol},p={...i.sourceWallet.name===void 0?{}:{name:i.sourceWallet.name},address:i.sourceWallet.address.formatted,...i.sourceWallet.explorerUrl?{explorerUrl:i.sourceWallet.explorerUrl}:{}},g=i.destination.name??i.creditedAsset.symbol,v=i.aggregatorExplorerUrl?{url:i.aggregatorExplorerUrl}:void 0,y=i.depositTx||i.completionTx||i.submittedAt||i.filledAt,b=n(a===`withdraw`?{id:`_girqu`,message:`Withdrawal successful`}:{id:`--OGth`,message:`Deposit successful`}),x=n(a===`withdraw`?{id:`_QZdX-`,message:`Your withdrawal was completed successfully.`}:{id:`oW1G8i`,message:`Your funds were successfully deposited.`});return h(o,{amount:i.receiveAmount.formatted,creditedAsset:d,creditedTo:g,headerTitle:s,headlineTitle:b,headlineDescription:x,...v?{explorer:v}:{},...i.depositTx?{depositTx:{hash:i.depositTx.hash.formatted,...i.depositTx.explorerUrl?{explorerUrl:i.depositTx.explorerUrl}:{}}}:{},...i.completionTx?{completionTx:{hash:i.completionTx.hash.formatted,...i.completionTx.explorerUrl?{explorerUrl:i.completionTx.explorerUrl}:{}}}:{},submittedAt:i.submittedAt.formatted,filledAt:i.filledAt.formatted,totalTime:i.totalTime.formatted,sourceWallet:p,children:[m(c,{title:s,onBack:u}),t??h(o.Body,{children:[m(o.Headline,{}),h(o.Details,{children:[m(o.FillStatusRow,{}),m(o.TotalTimeRow,{}),m(o.SourceRow,{}),m(o.DestinationRow,{}),m(o.YouReceiveRow,{}),y?h(o.MoreDetails,{children:[m(o.DepositTxRow,{}),m(o.CompletionTxRow,{}),m(o.SubmittedAtRow,{}),m(o.FilledAtRow,{})]}):null]})]})]})}function x({children:n}){let{_:r}=e(),i=t(),o=f(_);if(!o||o.payload.kind!==`failed`)return null;let{payload:s,direction:u,headerTitle:d,onBack:p}=o,g={...s.sourceWallet.name===void 0?{}:{name:s.sourceWallet.name},address:s.sourceWallet.address.formatted,...s.sourceWallet.explorerUrl?{explorerUrl:s.sourceWallet.explorerUrl}:{}},v={...s.destination.name===void 0?{}:{name:s.destination.name},address:s.destination.address.formatted},y=l(s.creditedAsset)??{symbol:s.creditedAsset.symbol},b={hash:s.txHash.formatted,...s.txExplorerUrl?{explorerUrl:s.txExplorerUrl}:{}},x=i(s.failureKind);return h(a,{headline:r(u===`withdraw`?{id:`KTNWsg`,message:`Withdrawal failed`}:{id:`i-4Fbp`,message:`Deposit failed`}),reason:x,headerTitle:d,sourceWallet:g,destination:v,receiveAmount:s.receiveAmount.formatted,receiveAsset:y,depositTx:b,submittedAt:s.submittedAt.formatted,failedAt:s.failedAt.formatted,children:[m(c,{title:d,onBack:p}),n??h(a.Body,{children:[m(a.Hero,{}),h(a.Details,{children:[m(a.FillStatusRow,{}),m(a.SourceRow,{}),m(a.DestinationRow,{}),m(a.YouReceiveRow,{}),h(a.MoreDetails,{children:[m(a.DepositTxRow,{}),m(a.SubmittedAtRow,{}),m(a.FailedAtRow,{})]})]}),m(a.HelpInfo,{})]})]})}(function(e){e.Processing=y,e.Succeeded=b,e.Failed=x})(v||={});export{v as ActivityDetail};
@@ -1 +1 @@
1
- "use client";import{DialogShell as e}from"../../../dialog/DialogShell.js";import{Card as t}from"../../../ui/Card/Card.js";import{Tooltip as n}from"../../../ui/Tooltip/Tooltip.js";import"../../../ui/Tooltip/index.js";import"../../../../ui/index.js";import{Frame as r}from"../../../dialog/Frame.js";import{AMOUNT_ENTRY_SLOTS as i}from"./AmountEntry.slots.js";import{styles as a}from"./AmountEntry.styles.js";import{AmountEntryDetails as o,AmountEntryDetailsRow as s}from"./components/Details.js";import{AmountEntryContext as c}from"./context.js";import{AmountEntryFlow as l}from"./components/Flow.js";import{AmountEntryFooter as u}from"./components/Footer.js";import{AmountEntryHeader as d}from"./components/Header.js";import{AmountEntryHero as f}from"./components/Hero/Hero.js";import"./components/Hero/index.js";import{AmountEntryNotice as p}from"./components/Notice.js";import{AmountEntryPills as m}from"./components/Pills.js";import{useMemo as h}from"react";import{jsx as g}from"react/jsx-runtime";import*as _ from"@stylexjs/stylex";const v={useGrouping:!0,maximumFractionDigits:8},y=[];function b(e){let{amount:t,sendToken:o,receiveToken:s,locale:l,format:u,min:d=0,max:f,onAmountChange:p,headerTitle:m,onBack:b,currencySymbol:x,subLine:S,subLineAmount:C,presets:w=y,activePreset:T,onPresetSelect:E,bridge:D,footerLabel:O,onContinue:k,notice:A,headerTrailing:j,children:M}=e,N=h(()=>({amount:t,sendToken:o,receiveToken:s,locale:l,format:u??v,min:d,max:f,onAmountChange:p,headerTitle:m,onBack:b,currencySymbol:x,subLine:S,subLineAmount:C,presets:w,activePreset:T,onPresetSelect:E,bridge:D,footerLabel:O,onContinue:k,notice:A,headerTrailing:j}),[t,o,s,l,u,d,f,p,m,b,x,S,C,w,T,E,D,O,k,A,j]);return g(c.Provider,{value:N,children:g(n.Provider,{children:g(r,{"data-stridge-slot":i.root,..._.props(a.root),children:M})})})}function x(e){return g(t.Body,{"data-stridge-slot":i.body,...e})}function S({open:t,defaultOpen:n,onOpenChange:r,trigger:i,children:a,...o}){return g(e,{open:t,defaultOpen:n,onOpenChange:r,trigger:i,children:g(b,{...o,children:a})})}(function(e){e.Header=d,e.Body=x,e.Hero=f,e.Pills=m,e.Flow=l,e.Footer=u,e.Notice=p,e.Details=o,e.DetailsRow=s,e.Dialog=S})(b||={});export{b as AmountEntry};
1
+ "use client";import{DialogShell as e}from"../../../dialog/DialogShell.js";import{Card as t}from"../../../ui/Card/Card.js";import{Tooltip as n}from"../../../ui/Tooltip/Tooltip.js";import"../../../ui/Tooltip/index.js";import"../../../../ui/index.js";import{Frame as r}from"../../../dialog/Frame.js";import{AMOUNT_ENTRY_SLOTS as i}from"./AmountEntry.slots.js";import{styles as a}from"./AmountEntry.styles.js";import{AmountEntryDetails as o,AmountEntryDetailsRow as s}from"./components/Details.js";import{AmountEntryContext as c}from"./context.js";import{AmountEntryFlow as l}from"./components/Flow.js";import{AmountEntryFooter as u}from"./components/Footer.js";import{AmountEntryHeader as d}from"./components/Header.js";import{AmountEntryHero as f}from"./components/Hero/Hero.js";import"./components/Hero/index.js";import{AmountEntryNotice as p}from"./components/Notice.js";import{AmountEntryPills as m}from"./components/Pills.js";import{useMemo as h}from"react";import{jsx as g}from"react/jsx-runtime";import*as _ from"@stylexjs/stylex";const v={useGrouping:!0,maximumFractionDigits:8},y=[];function b(e){let{amount:t,sendToken:o,receiveToken:s,locale:l,format:u,min:d=0,max:f,onAmountChange:p,headerTitle:m,onBack:b,currencySymbol:x,subLine:S,subLineAmount:C,presets:w=y,activePreset:T,onPresetSelect:E,bridge:D,footerLabel:O,onContinue:k,ctaDisabled:A,notice:j,headerTrailing:M,children:N}=e,P=h(()=>({amount:t,sendToken:o,receiveToken:s,locale:l,format:u??v,min:d,max:f,onAmountChange:p,headerTitle:m,onBack:b,currencySymbol:x,subLine:S,subLineAmount:C,presets:w,activePreset:T,onPresetSelect:E,bridge:D,footerLabel:O,onContinue:k,ctaDisabled:A,notice:j,headerTrailing:M}),[t,o,s,l,u,d,f,p,m,b,x,S,C,w,T,E,D,O,k,A,j,M]);return g(c.Provider,{value:P,children:g(n.Provider,{children:g(r,{"data-stridge-slot":i.root,..._.props(a.root),children:N})})})}function x(e){return g(t.Body,{"data-stridge-slot":i.body,...e})}function S({open:t,defaultOpen:n,onOpenChange:r,trigger:i,children:a,...o}){return g(e,{open:t,defaultOpen:n,onOpenChange:r,trigger:i,children:g(b,{...o,children:a})})}(function(e){e.Header=d,e.Body=x,e.Hero=f,e.Pills=m,e.Flow=l,e.Footer=u,e.Notice=p,e.Details=o,e.DetailsRow=s,e.Dialog=S})(b||={});export{b as AmountEntry};
@@ -1 +1 @@
1
- "use client";import{useLingui as e}from"../../../../i18n/useLingui.js";import"../../../../../i18n/index.js";import{Button as t}from"../../../../ui/Button/Button.js";import"../../../../ui/Button/index.js";import{AMOUNT_ENTRY_SLOTS as n}from"../AmountEntry.slots.js";import{styles as r}from"../AmountEntry.styles.js";import{useAmountEntryContext as i}from"../context.js";import{jsx as a,jsxs as o}from"react/jsx-runtime";import*as s from"@stylexjs/stylex";function c({label:c,onContinue:l,children:u}={}){let d=i(`AmountEntry.Footer`),{_:f}=e(),p=l??d.onContinue,m=c??d.footerLabel??f({id:`xGVfLh`,message:`Continue`}),h=typeof p==`function`;return o(`div`,{"data-stridge-slot":n.footer,...s.props(r.footer),children:[u,a(t,{size:`cta`,onClick:h?p:void 0,...s.props(r.cta,h?r.ctaInteractive:r.ctaInert),children:m})]})}export{c as AmountEntryFooter};
1
+ "use client";import{useLingui as e}from"../../../../i18n/useLingui.js";import"../../../../../i18n/index.js";import{Button as t}from"../../../../ui/Button/Button.js";import"../../../../ui/Button/index.js";import{AMOUNT_ENTRY_SLOTS as n}from"../AmountEntry.slots.js";import{styles as r}from"../AmountEntry.styles.js";import{useAmountEntryContext as i}from"../context.js";import{jsx as a,jsxs as o}from"react/jsx-runtime";import*as s from"@stylexjs/stylex";function c({label:c,onContinue:l,children:u}={}){let d=i(`AmountEntry.Footer`),{_:f}=e(),p=l??d.onContinue,m=c??d.footerLabel??f({id:`xGVfLh`,message:`Continue`}),h=d.ctaDisabled===!0,g=typeof p==`function`&&!h;return o(`div`,{"data-stridge-slot":n.footer,...s.props(r.footer),children:[u,a(t,{size:`cta`,disabled:h,onClick:g?p:void 0,...s.props(r.cta,g?r.ctaInteractive:r.ctaInert),children:m})]})}export{c as AmountEntryFooter};
@@ -126,6 +126,12 @@ interface AmountEntryProps {
126
126
  * Footer CTA click handler. When undefined the CTA renders inert.
127
127
  */
128
128
  onContinue?: () => void;
129
+ /**
130
+ * Renders the Footer CTA as a disabled `Button` (greyed, non-interactive) without withholding
131
+ * {@link onContinue}. Use for transient "not ready yet" states — e.g. the onramp quote is still
132
+ * loading — where the action exists but shouldn't fire yet.
133
+ */
134
+ ctaDisabled?: boolean;
129
135
  /**
130
136
  * Validation hint surfaced below the swap-direction Flow row when the typed amount sits
131
137
  * outside the host's allowed range (min / max / above balance). Omit when no hint is
@@ -151,16 +151,6 @@ interface StridgeDevConfig {
151
151
  * returns no address.
152
152
  */
153
153
  userAddressOverride?: Address;
154
- /**
155
- * Unlock the cash payment rail (Card / Apple Pay / Google Pay). The cash flow is currently
156
- * UI-only with no backend, so the rail is fused off for every integration by default and this
157
- * knob is the only switch that surfaces it. Reserved for Stridge's own demo / preview surfaces
158
- * while cash bakes — production integrations should not flip it. The
159
- * `flows.deposit.methods.cashRail.enabled` opt-in is still required *in addition* to this gate;
160
- * this knob will be removed (and the rail governed by the opt-in alone) once the cash backend
161
- * ships.
162
- */
163
- cashRail?: boolean;
164
154
  }
165
155
  /**
166
156
  * Persistence configuration for the kit's per-tab state (settlement banner acks, future kit-wide
@@ -1 +1 @@
1
- "use client";import{StridgeEventsContext as e}from"../events/context.js";import{createKitI18n as t}from"../shared/i18n/createKitI18n.js";import"../i18n/index.js";import{createStridgeCatalog as n}from"../drivers/stridge/catalog.js";import{createStridgeActivityDriver as r}from"../drivers/stridge/createStridgeActivityDriver.js";import{createStridgeDepositDriver as i}from"../drivers/stridge/createStridgeDepositDriver.js";import{createStridgeWithdrawDriver as a}from"../drivers/stridge/createStridgeWithdrawDriver.js";import"../_internal/drivers/stridge/index.js";import{createBus as ee}from"../events/bus/createBus.js";import{createFlowIdRegistry as te}from"../events/bus/flowIdRegistry.js";import{createMetadataStore as o}from"../events/bus/metadata.js";import"../events/bus/index.js";import{KitProvider as s}from"../KitProvider.js";import{resolveMerchantLink as c}from"../shared/merchant-link/resolveMerchantLink.js";import"../shared/merchant-link/index.js";import{useIntercomMerchantContext as l}from"../shared/support/useIntercomMerchantContext.js";import{useMerchantContext as u}from"../shared/support/useMerchantContext.js";import"../shared/support/index.js";import{useDeepMemo as d}from"../shared/utils/useDeepMemo.js";import{ConnectWalletContext as f}from"../shared/wallet/ConnectWalletContext.js";import{DepositOwnerContext as p}from"./depositOwner.js";import{useOptionalWagmi as m}from"./optionalWagmi.js";import{createStubDepositDriver as h,createStubWithdrawDriver as g}from"./stubs.js";import{useEffect as ne,useMemo as _,useRef as v}from"react";import{jsx as y}from"react/jsx-runtime";function b({gatewayKey:b,environment:x,asset:S,flows:C,appearance:w,i18n:T,storage:E,dev:D,support:O,terms:k,prefetch:A,connectWallet:j,className:re,children:ie}){if(!C.deposit&&!C.withdraw)throw Error("<StridgeProvider /> requires at least one of `flows.deposit` or `flows.withdraw`.");if(!S)throw Error("<StridgeProvider /> requires `asset: { networkId, symbol }`.");let{config:M,address:N}=m(),P=_(()=>t(T??{}),[T?.locale,T?.messages]),F=v(P);F.current=P;let I=d(S),L=d(C.deposit),R=d(C.withdraw),z=I.networkId,B=I.symbol,V=L?.owner?.address??N??D?.userAddressOverride,H=R?.owner.address,U=_(()=>n({projectKey:b,...x?{environment:x}:{}}),[b,x]),W=_(()=>{if(!(!L||!V))return i({userAddress:V,projectKey:b,destination:{network_id:z,asset_symbol:B,to_address:L.destination.address},wagmiConfig:M,catalog:U,getI18n:()=>F.current,...x?{environment:x}:{},...L.minAmountUsd===void 0?{}:{minAmountUsd:L.minAmountUsd},...L.maxAmountUsd===void 0?{}:{maxAmountUsd:L.maxAmountUsd},...L.metadata?{metadata:L.metadata}:{}})},[L,V,b,x,z,B,M,U]),G=_(()=>h(),[]),K=L?W??G:void 0,q=_(()=>{if(!(!R||!H))return a({userAddress:H,projectKey:b,currency:{networkId:z,assetSymbol:B},wagmiConfig:M,catalog:U,getI18n:()=>F.current,...x?{environment:x}:{},...R.minAmountUsd===void 0?{}:{minAmountUsd:R.minAmountUsd},...R.maxAmountUsd===void 0?{}:{maxAmountUsd:R.maxAmountUsd},...R.metadata?{metadata:R.metadata}:{}})},[R,H,b,x,z,B,M,U]),J=_(()=>g(),[]),Y=R?q??J:void 0,X=(L?V:void 0)??(R?H:void 0),Z=_(()=>{if(X)return r({userAddress:X,projectKey:b,catalog:U,...x?{environment:x}:{}})},[X,b,x,U]);ne(()=>{if(!A)return;let e=A===!0||A.includes(`deposit`),t=A===!0||A.includes(`withdraw`),n=A===!0||A.includes(`activity`)||e||t;e&&W?.arm(),t&&q?.arm(),n&&Z?.arm()},[A,W,q,Z]);let ae=_(()=>L?{resolved:V!==void 0}:null,[L,V]),oe=_(()=>j?{onClick:j.onClick,...j.label===void 0?{}:{label:j.label}}:null,[j?.onClick,j?.label]),Q=V??H,$=u({gatewayKey:b,environment:x??`production`,assetChain:z,assetSymbol:B,...Q?{userAddress:Q}:{},...W?{depositDriver:W}:{}});return l(c(O?{url:O.url,onSelect:O.onOpen}:void 0).kind===`default`?$:null),y(e,{value:_(()=>({bus:ee(),flowIds:te(),metadata:o()}),[]),children:y(f,{value:oe,children:y(p,{value:ae,children:y(s,{theme:w?.theme,accent:w?.accent,radius:w?.radius,direction:w?.direction,attribution:w?.attribution,presentation:w?.presentation,i18n:T,storage:E?.driver,storageNamespace:E?.namespace,className:re,support:O,merchantContext:$,terms:k,...K?{deposit:K}:{},...L?.methods?{depositMethods:L.methods}:{},...Y?{withdraw:Y}:{},...Z?{activity:Z}:{},...D?.cashRail?{dev:{cashRail:!0}}:{},children:ie})})})})}export{b as StridgeProvider};
1
+ "use client";import{StridgeEventsContext as e}from"../events/context.js";import{createKitI18n as t}from"../shared/i18n/createKitI18n.js";import"../i18n/index.js";import{createStridgeCatalog as n}from"../drivers/stridge/catalog.js";import{createStridgeActivityDriver as r}from"../drivers/stridge/createStridgeActivityDriver.js";import{createStridgeDepositDriver as i}from"../drivers/stridge/createStridgeDepositDriver.js";import{createStridgeWithdrawDriver as a}from"../drivers/stridge/createStridgeWithdrawDriver.js";import"../_internal/drivers/stridge/index.js";import{createBus as ee}from"../events/bus/createBus.js";import{createFlowIdRegistry as te}from"../events/bus/flowIdRegistry.js";import{createMetadataStore as o}from"../events/bus/metadata.js";import"../events/bus/index.js";import{KitProvider as s}from"../KitProvider.js";import{resolveMerchantLink as c}from"../shared/merchant-link/resolveMerchantLink.js";import"../shared/merchant-link/index.js";import{useIntercomMerchantContext as l}from"../shared/support/useIntercomMerchantContext.js";import{useMerchantContext as u}from"../shared/support/useMerchantContext.js";import"../shared/support/index.js";import{useDeepMemo as d}from"../shared/utils/useDeepMemo.js";import{ConnectWalletContext as f}from"../shared/wallet/ConnectWalletContext.js";import{DepositOwnerContext as p}from"./depositOwner.js";import{useOptionalWagmi as m}from"./optionalWagmi.js";import{createStubDepositDriver as h,createStubWithdrawDriver as g}from"./stubs.js";import{useEffect as _,useMemo as v,useRef as y}from"react";import{jsx as b}from"react/jsx-runtime";function x({gatewayKey:x,environment:S,asset:C,flows:w,appearance:T,i18n:E,storage:D,dev:O,support:k,terms:ne,prefetch:A,connectWallet:j,className:re,children:ie}){if(!w.deposit&&!w.withdraw)throw Error("<StridgeProvider /> requires at least one of `flows.deposit` or `flows.withdraw`.");if(!C)throw Error("<StridgeProvider /> requires `asset: { networkId, symbol }`.");let{config:M,address:N}=m(),P=v(()=>t(E??{}),[E?.locale,E?.messages]),F=y(P);F.current=P;let I=d(C),L=d(w.deposit),R=d(w.withdraw),z=I.networkId,B=I.symbol,V=L?.owner?.address??N??O?.userAddressOverride,H=R?.owner.address,U=v(()=>n({projectKey:x,...S?{environment:S}:{}}),[x,S]),W=v(()=>{if(!(!L||!V))return i({userAddress:V,projectKey:x,destination:{network_id:z,asset_symbol:B,to_address:L.destination.address},wagmiConfig:M,catalog:U,getI18n:()=>F.current,...S?{environment:S}:{},...L.minAmountUsd===void 0?{}:{minAmountUsd:L.minAmountUsd},...L.maxAmountUsd===void 0?{}:{maxAmountUsd:L.maxAmountUsd},...L.metadata?{metadata:L.metadata}:{}})},[L,V,x,S,z,B,M,U]),G=v(()=>h(),[]),K=L?W??G:void 0,q=v(()=>{if(!(!R||!H))return a({userAddress:H,projectKey:x,currency:{networkId:z,assetSymbol:B},wagmiConfig:M,catalog:U,getI18n:()=>F.current,...S?{environment:S}:{},...R.minAmountUsd===void 0?{}:{minAmountUsd:R.minAmountUsd},...R.maxAmountUsd===void 0?{}:{maxAmountUsd:R.maxAmountUsd},...R.metadata?{metadata:R.metadata}:{}})},[R,H,x,S,z,B,M,U]),J=v(()=>g(),[]),Y=R?q??J:void 0,X=(L?V:void 0)??(R?H:void 0),Z=v(()=>{if(X)return r({userAddress:X,projectKey:x,catalog:U,...S?{environment:S}:{}})},[X,x,S,U]);_(()=>{if(!A)return;let e=A===!0||A.includes(`deposit`),t=A===!0||A.includes(`withdraw`),n=A===!0||A.includes(`activity`)||e||t;e&&W?.arm(),t&&q?.arm(),n&&Z?.arm()},[A,W,q,Z]);let ae=v(()=>L?{resolved:V!==void 0}:null,[L,V]),oe=v(()=>j?{onClick:j.onClick,...j.label===void 0?{}:{label:j.label}}:null,[j?.onClick,j?.label]),Q=V??H,$=u({gatewayKey:x,environment:S??`production`,assetChain:z,assetSymbol:B,...Q?{userAddress:Q}:{},...W?{depositDriver:W}:{}});return l(c(k?{url:k.url,onSelect:k.onOpen}:void 0).kind===`default`?$:null),b(e,{value:v(()=>({bus:ee(),flowIds:te(),metadata:o()}),[]),children:b(f,{value:oe,children:b(p,{value:ae,children:b(s,{theme:T?.theme,accent:T?.accent,radius:T?.radius,direction:T?.direction,attribution:T?.attribution,presentation:T?.presentation,i18n:E,storage:D?.driver,storageNamespace:D?.namespace,className:re,support:k,merchantContext:$,terms:ne,...K?{deposit:K}:{},...L?.methods?{depositMethods:L.methods}:{},...Y?{withdraw:Y}:{},...Z?{activity:Z}:{},children:ie})})})})}export{x as StridgeProvider};