@rhinestone/deposit-modal 0.2.0 → 0.2.2

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.
@@ -1680,6 +1680,7 @@ function getCurrentPhaseId(state, phaseTimings, isEarlyComplete) {
1680
1680
  }
1681
1681
  function ProcessingStep({
1682
1682
  smartAccount,
1683
+ solanaDepositAddress,
1683
1684
  txHash,
1684
1685
  sourceChain,
1685
1686
  sourceToken,
@@ -1792,12 +1793,13 @@ function ProcessingStep({
1792
1793
  let isMounted = true;
1793
1794
  async function pollStatus() {
1794
1795
  try {
1796
+ const account = sourceChain === "solana" && solanaDepositAddress ? solanaDepositAddress : smartAccount;
1795
1797
  debugLog(debug, "processing", "poll:request", {
1796
- smartAccount,
1798
+ account,
1797
1799
  txHash,
1798
1800
  intervalMs: pollIntervalRef.current
1799
1801
  });
1800
- const data = await service.fetchStatus(smartAccount, txHash);
1802
+ const data = await service.fetchStatus(account, txHash);
1801
1803
  const lastEvent2 = data.lastEvent;
1802
1804
  const eventMatchesTx = isEventForTx(lastEvent2, txHash);
1803
1805
  const eventForCurrentTx = eventMatchesTx ? lastEvent2 : void 0;
@@ -1949,6 +1951,8 @@ function ProcessingStep({
1949
1951
  processingContextRef,
1950
1952
  service,
1951
1953
  smartAccount,
1954
+ solanaDepositAddress,
1955
+ sourceChain,
1952
1956
  state.type,
1953
1957
  txHash
1954
1958
  ]);
@@ -28,7 +28,7 @@ import {
28
28
  tokenFormatter,
29
29
  txRefsMatch,
30
30
  useLatestRef
31
- } from "./chunk-3CRG5NPG.mjs";
31
+ } from "./chunk-JRNGXHWQ.mjs";
32
32
  import {
33
33
  DEFAULT_BACKEND_URL,
34
34
  DEFAULT_SIGNER_ADDRESS,
@@ -1451,6 +1451,7 @@ var txLinkIcon = /* @__PURE__ */ jsx7(
1451
1451
  function DepositNotification({
1452
1452
  deposit,
1453
1453
  smartAccount,
1454
+ solanaDepositAddress,
1454
1455
  targetChain,
1455
1456
  targetToken,
1456
1457
  waitForFinalTx,
@@ -1521,7 +1522,8 @@ function DepositNotification({
1521
1522
  let isMounted = true;
1522
1523
  async function pollStatus() {
1523
1524
  try {
1524
- const data = await service.fetchStatus(smartAccount, txHash);
1525
+ const account = sourceChain === "solana" && solanaDepositAddress ? solanaDepositAddress : smartAccount;
1526
+ const data = await service.fetchStatus(account, txHash);
1525
1527
  if (!isMounted) return;
1526
1528
  const lastEvent = data.lastEvent;
1527
1529
  const eventForTx = isEventForTx(lastEvent, txHash) ? lastEvent : void 0;
@@ -1582,6 +1584,8 @@ function DepositNotification({
1582
1584
  handleFailed,
1583
1585
  service,
1584
1586
  smartAccount,
1587
+ solanaDepositAddress,
1588
+ sourceChain,
1585
1589
  status,
1586
1590
  txHash
1587
1591
  ]);
@@ -2116,8 +2120,23 @@ function DepositAddressStep({
2116
2120
  return;
2117
2121
  }
2118
2122
  try {
2119
- const status = await service.fetchLatestStatus(smartAccount);
2123
+ const accounts = [smartAccount];
2124
+ if (solanaDepositAddress) accounts.push(solanaDepositAddress);
2125
+ const results = await Promise.all(
2126
+ accounts.map(
2127
+ (addr) => service.fetchLatestStatus(addr).catch(() => ({ lastEvent: void 0 }))
2128
+ )
2129
+ );
2120
2130
  if (cancelled) return;
2131
+ const events = results.map((r) => r.lastEvent).filter((e) => Boolean(e));
2132
+ const status = {
2133
+ lastEvent: events.reduce((latest, ev) => {
2134
+ if (!latest) return ev;
2135
+ const a = ev.time ? Date.parse(ev.time) : 0;
2136
+ const b = latest.time ? Date.parse(latest.time) : 0;
2137
+ return a > b ? ev : latest;
2138
+ }, void 0)
2139
+ };
2121
2140
  if (isTrackingRef.current) {
2122
2141
  if (!cancelled) {
2123
2142
  timeoutId = setTimeout(poll, POLL_INTERVAL_MS);
@@ -2183,7 +2202,7 @@ function DepositAddressStep({
2183
2202
  cancelled = true;
2184
2203
  clearTimeout(timeoutId);
2185
2204
  };
2186
- }, [smartAccount, service]);
2205
+ }, [smartAccount, solanaDepositAddress, service]);
2187
2206
  const handleNotificationComplete = useCallback4(
2188
2207
  (txHash, destinationTxHash, context) => {
2189
2208
  isTrackingRef.current = false;
@@ -2362,9 +2381,29 @@ function DepositAddressStep({
2362
2381
  /* @__PURE__ */ jsx8("div", { className: "rs-deposit-address-qr", children: /* @__PURE__ */ jsx8(QRCode, { value: displayAddress, size: 150, iconSrc: qrIconSrc }) }),
2363
2382
  /* @__PURE__ */ jsxs7("div", { className: "rs-deposit-address-info", children: [
2364
2383
  /* @__PURE__ */ jsxs7("div", { className: "rs-deposit-address-label", children: [
2365
- "Your ",
2366
- isSolana ? "Solana" : "EVM",
2367
- " deposit address"
2384
+ /* @__PURE__ */ jsx8("span", { children: "Your deposit address" }),
2385
+ /* @__PURE__ */ jsx8(Tooltip, { content: "Send any accepted token to this address and it will auto swap to your account.", children: /* @__PURE__ */ jsxs7(
2386
+ "svg",
2387
+ {
2388
+ className: "rs-deposit-address-label-icon",
2389
+ viewBox: "0 0 24 24",
2390
+ fill: "none",
2391
+ stroke: "currentColor",
2392
+ strokeWidth: "2",
2393
+ "aria-hidden": "true",
2394
+ children: [
2395
+ /* @__PURE__ */ jsx8("circle", { cx: "12", cy: "12", r: "9" }),
2396
+ /* @__PURE__ */ jsx8(
2397
+ "path",
2398
+ {
2399
+ strokeLinecap: "round",
2400
+ strokeLinejoin: "round",
2401
+ d: "M12 8h.01M11 12h1v4h1"
2402
+ }
2403
+ )
2404
+ ]
2405
+ }
2406
+ ) })
2368
2407
  ] }),
2369
2408
  /* @__PURE__ */ jsx8("div", { className: "rs-deposit-address-value", children: displayAddress }),
2370
2409
  /* @__PURE__ */ jsxs7(
@@ -2529,6 +2568,7 @@ function DepositAddressStep({
2529
2568
  {
2530
2569
  deposit,
2531
2570
  smartAccount,
2571
+ solanaDepositAddress,
2532
2572
  targetChain,
2533
2573
  targetToken,
2534
2574
  waitForFinalTx,
@@ -3851,6 +3891,7 @@ function DepositFlow({
3851
3891
  return {
3852
3892
  type: "processing",
3853
3893
  smartAccount: prev.smartAccount,
3894
+ solanaDepositAddress: prev.solanaDepositAddress,
3854
3895
  txHash,
3855
3896
  sourceChain: "solana",
3856
3897
  sourceToken: prev.token.mint,
@@ -4238,6 +4279,7 @@ function DepositFlow({
4238
4279
  ProcessingStep,
4239
4280
  {
4240
4281
  smartAccount: step.smartAccount,
4282
+ solanaDepositAddress: step.solanaDepositAddress,
4241
4283
  txHash: step.txHash,
4242
4284
  sourceChain: step.sourceChain,
4243
4285
  sourceToken: step.sourceToken,
@@ -4362,6 +4404,7 @@ function DepositFlow({
4362
4404
  ProcessingStep,
4363
4405
  {
4364
4406
  smartAccount: step.smartAccount,
4407
+ solanaDepositAddress: step.solanaDepositAddress,
4365
4408
  txHash: step.txHash,
4366
4409
  sourceChain: step.sourceChain,
4367
4410
  sourceToken: step.sourceToken,
@@ -4478,10 +4521,12 @@ function getTxExplorerUrl(txHash, chainId) {
4478
4521
  if (!base) return null;
4479
4522
  return `${base}/tx/${txHash}`;
4480
4523
  }
4481
- function normalizeStatus(raw) {
4524
+ function normalizeStatus(raw, isSpam) {
4482
4525
  const lower = raw.toLowerCase();
4483
4526
  if (lower === "completed" || lower === "complete" || lower === "bridge-complete" || lower === "processed") return "completed";
4484
- if (lower === "failed" || lower === "error" || lower === "bridge-failed") return "failed";
4527
+ if (lower === "failed" || lower === "error" || lower === "bridge-failed") {
4528
+ return isSpam ? "spam" : "failed";
4529
+ }
4485
4530
  if (lower === "processing" || lower === "submitted" || lower === "bridging") return "processing";
4486
4531
  return "pending";
4487
4532
  }
@@ -4489,7 +4534,8 @@ var STATUS_LABEL = {
4489
4534
  pending: "Pending",
4490
4535
  processing: "Processing",
4491
4536
  completed: "Completed",
4492
- failed: "Failed"
4537
+ failed: "Failed",
4538
+ spam: "Spam token"
4493
4539
  };
4494
4540
  function ExternalLinkIcon() {
4495
4541
  return /* @__PURE__ */ jsx13("svg", { className: "rs-history-ext-icon", viewBox: "0 0 12 12", fill: "none", stroke: "currentColor", strokeWidth: "1.5", children: /* @__PURE__ */ jsx13("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M4.5 1.5H2.25A.75.75 0 0 0 1.5 2.25v7.5c0 .414.336.75.75.75h7.5a.75.75 0 0 0 .75-.75V7.5m-3-6h3m0 0v3m0-3L6 6" }) });
@@ -4570,7 +4616,7 @@ function DepositHistoryPanel({
4570
4616
  );
4571
4617
  }
4572
4618
  function HistoryRow({ deposit }) {
4573
- const status = normalizeStatus(deposit.status);
4619
+ const status = normalizeStatus(deposit.status, deposit.isSpam);
4574
4620
  const sourceChainId = resolveChainId(deposit.chain);
4575
4621
  const targetChainId = resolveChainId(deposit.targetChain);
4576
4622
  const sourceChainName = sourceChainId ? getChainName(sourceChainId) : null;
@@ -4651,7 +4697,7 @@ DepositHistoryPanel.displayName = "DepositHistoryPanel";
4651
4697
  // src/DepositModal.tsx
4652
4698
  import { jsx as jsx14, jsxs as jsxs13 } from "react/jsx-runtime";
4653
4699
  var ReownDepositInner = lazy(
4654
- () => import("./DepositModalReown-PROPLCBI.mjs").then((m) => ({ default: m.DepositModalReown }))
4700
+ () => import("./DepositModalReown-3H4EAZIF.mjs").then((m) => ({ default: m.DepositModalReown }))
4655
4701
  );
4656
4702
  function DepositModal(props) {
4657
4703
  const needsReown = !!props.reownAppId;
package/dist/deposit.cjs CHANGED
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkUHQSFV5Vcjs = require('./chunk-UHQSFV5V.cjs');
4
- require('./chunk-XW4M7WDI.cjs');
3
+ var _chunkOPCYL3OIcjs = require('./chunk-OPCYL3OI.cjs');
4
+ require('./chunk-T2KOQH57.cjs');
5
5
  require('./chunk-MUWVDVY4.cjs');
6
6
 
7
7
 
8
- exports.DepositModal = _chunkUHQSFV5Vcjs.DepositModal;
8
+ exports.DepositModal = _chunkOPCYL3OIcjs.DepositModal;
package/dist/deposit.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  DepositModal
3
- } from "./chunk-7NEVAAPY.mjs";
4
- import "./chunk-3CRG5NPG.mjs";
3
+ } from "./chunk-UTQ7EYXO.mjs";
4
+ import "./chunk-JRNGXHWQ.mjs";
5
5
  import "./chunk-SDZKKUCJ.mjs";
6
6
  export {
7
7
  DepositModal
package/dist/index.cjs CHANGED
@@ -1,13 +1,13 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkUHQSFV5Vcjs = require('./chunk-UHQSFV5V.cjs');
3
+ var _chunkOPCYL3OIcjs = require('./chunk-OPCYL3OI.cjs');
4
4
 
5
5
 
6
- var _chunk7TEGUTU4cjs = require('./chunk-7TEGUTU4.cjs');
6
+ var _chunk5EU7N73Mcjs = require('./chunk-5EU7N73M.cjs');
7
7
 
8
8
 
9
9
  var _chunkYQFH2WSWcjs = require('./chunk-YQFH2WSW.cjs');
10
- require('./chunk-XW4M7WDI.cjs');
10
+ require('./chunk-T2KOQH57.cjs');
11
11
 
12
12
 
13
13
 
@@ -70,4 +70,4 @@ var _chunkMUWVDVY4cjs = require('./chunk-MUWVDVY4.cjs');
70
70
 
71
71
 
72
72
 
73
- exports.CHAIN_BY_ID = _chunkMUWVDVY4cjs.CHAIN_BY_ID; exports.DEFAULT_BACKEND_URL = _chunkMUWVDVY4cjs.DEFAULT_BACKEND_URL; exports.DEFAULT_SIGNER_ADDRESS = _chunkMUWVDVY4cjs.DEFAULT_SIGNER_ADDRESS; exports.DepositModal = _chunkUHQSFV5Vcjs.DepositModal; exports.NATIVE_TOKEN_ADDRESS = _chunkMUWVDVY4cjs.NATIVE_TOKEN_ADDRESS; exports.SOURCE_CHAINS = _chunkMUWVDVY4cjs.SOURCE_CHAINS; exports.SUPPORTED_CHAINS = _chunkMUWVDVY4cjs.SUPPORTED_CHAINS; exports.WithdrawModal = _chunk7TEGUTU4cjs.WithdrawModal; exports.chainRegistry = _chunkMUWVDVY4cjs.chainRegistry; exports.disconnectWallet = _chunkYQFH2WSWcjs.disconnectWallet; exports.findChainIdForToken = _chunkMUWVDVY4cjs.findChainIdForToken; exports.getChainBadge = _chunkMUWVDVY4cjs.getChainBadge; exports.getChainIcon = _chunkMUWVDVY4cjs.getChainIcon; exports.getChainId = _chunkMUWVDVY4cjs.getChainId; exports.getChainName = _chunkMUWVDVY4cjs.getChainName; exports.getChainObject = _chunkMUWVDVY4cjs.getChainObject; exports.getExplorerName = _chunkMUWVDVY4cjs.getExplorerName; exports.getExplorerTxUrl = _chunkMUWVDVY4cjs.getExplorerTxUrl; exports.getExplorerUrl = _chunkMUWVDVY4cjs.getExplorerUrl; exports.getSupportedChainIds = _chunkMUWVDVY4cjs.getSupportedChainIds; exports.getSupportedTargetTokens = _chunkMUWVDVY4cjs.getSupportedTargetTokens; exports.getSupportedTokenSymbolsForChain = _chunkMUWVDVY4cjs.getSupportedTokenSymbolsForChain; exports.getTargetTokenSymbolsForChain = _chunkMUWVDVY4cjs.getTargetTokenSymbolsForChain; exports.getTokenAddress = _chunkMUWVDVY4cjs.getTokenAddress; exports.getTokenDecimals = _chunkMUWVDVY4cjs.getTokenDecimals; exports.getTokenDecimalsByAddress = _chunkMUWVDVY4cjs.getTokenDecimalsByAddress; exports.getTokenIcon = _chunkMUWVDVY4cjs.getTokenIcon; exports.getTokenSymbol = _chunkMUWVDVY4cjs.getTokenSymbol; exports.getUsdcAddress = _chunkMUWVDVY4cjs.getUsdcAddress; exports.getUsdcDecimals = _chunkMUWVDVY4cjs.getUsdcDecimals; exports.isSupportedTokenAddressForChain = _chunkMUWVDVY4cjs.isSupportedTokenAddressForChain;
73
+ exports.CHAIN_BY_ID = _chunkMUWVDVY4cjs.CHAIN_BY_ID; exports.DEFAULT_BACKEND_URL = _chunkMUWVDVY4cjs.DEFAULT_BACKEND_URL; exports.DEFAULT_SIGNER_ADDRESS = _chunkMUWVDVY4cjs.DEFAULT_SIGNER_ADDRESS; exports.DepositModal = _chunkOPCYL3OIcjs.DepositModal; exports.NATIVE_TOKEN_ADDRESS = _chunkMUWVDVY4cjs.NATIVE_TOKEN_ADDRESS; exports.SOURCE_CHAINS = _chunkMUWVDVY4cjs.SOURCE_CHAINS; exports.SUPPORTED_CHAINS = _chunkMUWVDVY4cjs.SUPPORTED_CHAINS; exports.WithdrawModal = _chunk5EU7N73Mcjs.WithdrawModal; exports.chainRegistry = _chunkMUWVDVY4cjs.chainRegistry; exports.disconnectWallet = _chunkYQFH2WSWcjs.disconnectWallet; exports.findChainIdForToken = _chunkMUWVDVY4cjs.findChainIdForToken; exports.getChainBadge = _chunkMUWVDVY4cjs.getChainBadge; exports.getChainIcon = _chunkMUWVDVY4cjs.getChainIcon; exports.getChainId = _chunkMUWVDVY4cjs.getChainId; exports.getChainName = _chunkMUWVDVY4cjs.getChainName; exports.getChainObject = _chunkMUWVDVY4cjs.getChainObject; exports.getExplorerName = _chunkMUWVDVY4cjs.getExplorerName; exports.getExplorerTxUrl = _chunkMUWVDVY4cjs.getExplorerTxUrl; exports.getExplorerUrl = _chunkMUWVDVY4cjs.getExplorerUrl; exports.getSupportedChainIds = _chunkMUWVDVY4cjs.getSupportedChainIds; exports.getSupportedTargetTokens = _chunkMUWVDVY4cjs.getSupportedTargetTokens; exports.getSupportedTokenSymbolsForChain = _chunkMUWVDVY4cjs.getSupportedTokenSymbolsForChain; exports.getTargetTokenSymbolsForChain = _chunkMUWVDVY4cjs.getTargetTokenSymbolsForChain; exports.getTokenAddress = _chunkMUWVDVY4cjs.getTokenAddress; exports.getTokenDecimals = _chunkMUWVDVY4cjs.getTokenDecimals; exports.getTokenDecimalsByAddress = _chunkMUWVDVY4cjs.getTokenDecimalsByAddress; exports.getTokenIcon = _chunkMUWVDVY4cjs.getTokenIcon; exports.getTokenSymbol = _chunkMUWVDVY4cjs.getTokenSymbol; exports.getUsdcAddress = _chunkMUWVDVY4cjs.getUsdcAddress; exports.getUsdcDecimals = _chunkMUWVDVY4cjs.getUsdcDecimals; exports.isSupportedTokenAddressForChain = _chunkMUWVDVY4cjs.isSupportedTokenAddressForChain;
package/dist/index.mjs CHANGED
@@ -1,13 +1,13 @@
1
1
  import {
2
2
  DepositModal
3
- } from "./chunk-7NEVAAPY.mjs";
3
+ } from "./chunk-UTQ7EYXO.mjs";
4
4
  import {
5
5
  WithdrawModal
6
- } from "./chunk-TKTOPC2W.mjs";
6
+ } from "./chunk-MKO5TNVQ.mjs";
7
7
  import {
8
8
  disconnectWallet
9
9
  } from "./chunk-5YXAQB6A.mjs";
10
- import "./chunk-3CRG5NPG.mjs";
10
+ import "./chunk-JRNGXHWQ.mjs";
11
11
  import {
12
12
  CHAIN_BY_ID,
13
13
  DEFAULT_BACKEND_URL,
package/dist/reown.cjs CHANGED
@@ -1,16 +1,16 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkUHQSFV5Vcjs = require('./chunk-UHQSFV5V.cjs');
3
+ var _chunkOPCYL3OIcjs = require('./chunk-OPCYL3OI.cjs');
4
4
 
5
5
 
6
- var _chunk7TEGUTU4cjs = require('./chunk-7TEGUTU4.cjs');
6
+ var _chunk5EU7N73Mcjs = require('./chunk-5EU7N73M.cjs');
7
7
 
8
8
 
9
9
  var _chunkYQFH2WSWcjs = require('./chunk-YQFH2WSW.cjs');
10
- require('./chunk-XW4M7WDI.cjs');
10
+ require('./chunk-T2KOQH57.cjs');
11
11
  require('./chunk-MUWVDVY4.cjs');
12
12
 
13
13
 
14
14
 
15
15
 
16
- exports.DepositModal = _chunkUHQSFV5Vcjs.DepositModal; exports.WithdrawModal = _chunk7TEGUTU4cjs.WithdrawModal; exports.disconnectWallet = _chunkYQFH2WSWcjs.disconnectWallet;
16
+ exports.DepositModal = _chunkOPCYL3OIcjs.DepositModal; exports.WithdrawModal = _chunk5EU7N73Mcjs.WithdrawModal; exports.disconnectWallet = _chunkYQFH2WSWcjs.disconnectWallet;
package/dist/reown.mjs CHANGED
@@ -1,13 +1,13 @@
1
1
  import {
2
2
  DepositModal
3
- } from "./chunk-7NEVAAPY.mjs";
3
+ } from "./chunk-UTQ7EYXO.mjs";
4
4
  import {
5
5
  WithdrawModal
6
- } from "./chunk-TKTOPC2W.mjs";
6
+ } from "./chunk-MKO5TNVQ.mjs";
7
7
  import {
8
8
  disconnectWallet
9
9
  } from "./chunk-5YXAQB6A.mjs";
10
- import "./chunk-3CRG5NPG.mjs";
10
+ import "./chunk-JRNGXHWQ.mjs";
11
11
  import "./chunk-SDZKKUCJ.mjs";
12
12
  export {
13
13
  DepositModal,
package/dist/styles.css CHANGED
@@ -2845,12 +2845,22 @@
2845
2845
  }
2846
2846
 
2847
2847
  .rs-deposit-address-label {
2848
+ display: flex;
2849
+ align-items: center;
2850
+ gap: 5px;
2848
2851
  font-size: 13px;
2849
2852
  font-weight: 600;
2850
2853
  color: var(--rs-muted);
2851
2854
  margin-bottom: 8px;
2852
2855
  }
2853
2856
 
2857
+ .rs-deposit-address-label-icon {
2858
+ width: 13px;
2859
+ height: 13px;
2860
+ display: block;
2861
+ color: var(--rs-muted-foreground);
2862
+ }
2863
+
2854
2864
  .rs-deposit-address-value {
2855
2865
  font-size: 12px;
2856
2866
  font-family:
@@ -3686,6 +3696,10 @@
3686
3696
  background: var(--color-red9);
3687
3697
  }
3688
3698
 
3699
+ .rs-history-dot--spam {
3700
+ background: var(--rs-muted-foreground);
3701
+ }
3702
+
3689
3703
  @keyframes rs-history-dot-pulse {
3690
3704
  0%, 100% { opacity: 1; }
3691
3705
  50% { opacity: 0.4; }
@@ -3707,6 +3721,10 @@
3707
3721
  color: var(--color-amber8);
3708
3722
  }
3709
3723
 
3724
+ .rs-history-status--spam {
3725
+ color: var(--rs-muted-foreground);
3726
+ }
3727
+
3710
3728
  /* Row secondary: amount + time */
3711
3729
 
3712
3730
  .rs-history-row-secondary {
package/dist/withdraw.cjs CHANGED
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk7TEGUTU4cjs = require('./chunk-7TEGUTU4.cjs');
4
- require('./chunk-XW4M7WDI.cjs');
3
+ var _chunk5EU7N73Mcjs = require('./chunk-5EU7N73M.cjs');
4
+ require('./chunk-T2KOQH57.cjs');
5
5
  require('./chunk-MUWVDVY4.cjs');
6
6
 
7
7
 
8
- exports.WithdrawModal = _chunk7TEGUTU4cjs.WithdrawModal;
8
+ exports.WithdrawModal = _chunk5EU7N73Mcjs.WithdrawModal;
package/dist/withdraw.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  WithdrawModal
3
- } from "./chunk-TKTOPC2W.mjs";
4
- import "./chunk-3CRG5NPG.mjs";
3
+ } from "./chunk-MKO5TNVQ.mjs";
4
+ import "./chunk-JRNGXHWQ.mjs";
5
5
  import "./chunk-SDZKKUCJ.mjs";
6
6
  export {
7
7
  WithdrawModal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rhinestone/deposit-modal",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "React modal component for Rhinestone cross-chain deposits",
5
5
  "author": "Rhinestone <dev@rhinestone.wtf>",
6
6
  "bugs": {