@rhinestone/deposit-modal 0.1.29 → 0.1.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{DepositModalReown-4PFOMSC6.cjs → DepositModalReown-N7GCYZF7.cjs} +7 -7
- package/dist/{DepositModalReown-BVHWFWIG.mjs → DepositModalReown-S7HER5HU.mjs} +4 -4
- package/dist/{WithdrawModalReown-YREQR7DV.cjs → WithdrawModalReown-DJCJ5U7E.cjs} +7 -7
- package/dist/{WithdrawModalReown-CJCNT7SA.mjs → WithdrawModalReown-DMDRLYTE.mjs} +4 -4
- package/dist/{chunk-CSQRKM4Y.mjs → chunk-3ICS43XC.mjs} +14 -9
- package/dist/{chunk-XTTTHW3W.mjs → chunk-AWFJFSPH.mjs} +164 -85
- package/dist/{chunk-LBEP3A2Z.mjs → chunk-CS6UIMCF.mjs} +3 -1
- package/dist/{chunk-N6T4TKXI.mjs → chunk-EVU7M7A6.mjs} +71 -42
- package/dist/{chunk-7ZCUANBT.cjs → chunk-G2RDCQHL.cjs} +109 -80
- package/dist/{chunk-5QJNOPNF.cjs → chunk-MU2BOEDN.cjs} +291 -212
- package/dist/{chunk-DLYVHOME.cjs → chunk-PE6OK3FH.cjs} +15 -10
- package/dist/{chunk-K6YG3I6O.mjs → chunk-SLI5FHTT.mjs} +9 -9
- package/dist/{chunk-CPIQJR47.cjs → chunk-SZ35G2DT.cjs} +59 -59
- package/dist/{chunk-6VJ2ZTNQ.cjs → chunk-VKQA3FO3.cjs} +2 -0
- package/dist/constants.cjs +4 -2
- package/dist/constants.d.cts +2 -1
- package/dist/constants.d.ts +2 -1
- package/dist/constants.mjs +3 -1
- package/dist/deposit.cjs +4 -4
- package/dist/deposit.d.cts +2 -2
- package/dist/deposit.d.ts +2 -2
- package/dist/deposit.mjs +3 -3
- package/dist/index.cjs +7 -5
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +6 -4
- package/dist/reown.cjs +5 -5
- package/dist/reown.d.cts +1 -1
- package/dist/reown.d.ts +1 -1
- package/dist/reown.mjs +4 -4
- package/dist/styles.css +8 -5
- package/dist/{types-BwaQ7jK5.d.cts → types-DELv717e.d.cts} +5 -1
- package/dist/{types-CgXyx46m.d.ts → types-DTBfMH0p.d.ts} +5 -1
- package/dist/withdraw.cjs +4 -4
- package/dist/withdraw.d.cts +2 -2
- package/dist/withdraw.d.ts +2 -2
- package/dist/withdraw.mjs +3 -3
- package/package.json +1 -1
package/dist/constants.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ declare function getUsdcAddress(chainId: number): Address | undefined;
|
|
|
28
28
|
declare function getUsdcDecimals(chainId: number): number;
|
|
29
29
|
declare function getTokenAddress(symbol: string, chainId: number): Address | undefined;
|
|
30
30
|
declare function getTokenDecimals(symbol: string, chainId: number): number;
|
|
31
|
+
declare function getTargetTokenSymbolsForChain(chainId: number): string[];
|
|
31
32
|
declare function getSupportedTokenSymbolsForChain(chainId: number): string[];
|
|
32
33
|
declare function getSupportedChainIds(): number[];
|
|
33
34
|
declare function isSupportedTokenAddressForChain(token: Address, chainId: number): boolean;
|
|
@@ -47,4 +48,4 @@ declare function getExplorerName(chainId: number): string;
|
|
|
47
48
|
declare function getChainIcon(chainId: number): string | undefined;
|
|
48
49
|
declare function getTokenIcon(symbol: string): string | undefined;
|
|
49
50
|
|
|
50
|
-
export { CHAIN_BY_ID, DEFAULT_BACKEND_URL, DEFAULT_SIGNER_ADDRESS, NATIVE_TOKEN_ADDRESS, SOURCE_CHAINS, SUPPORTED_CHAINS, type SupportedTokenOption, chainRegistry, findChainIdForToken, getChainBadge, getChainIcon, getChainId, getChainName, getChainObject, getExplorerName, getExplorerTxUrl, getExplorerUrl, getSupportedChainIds, getSupportedTargetTokens, getSupportedTokenSymbolsForChain, getTokenAddress, getTokenDecimals, getTokenDecimalsByAddress, getTokenIcon, getTokenSymbol, getUsdcAddress, getUsdcDecimals, isSupportedTokenAddressForChain };
|
|
51
|
+
export { CHAIN_BY_ID, DEFAULT_BACKEND_URL, DEFAULT_SIGNER_ADDRESS, NATIVE_TOKEN_ADDRESS, SOURCE_CHAINS, SUPPORTED_CHAINS, type SupportedTokenOption, chainRegistry, findChainIdForToken, getChainBadge, getChainIcon, getChainId, getChainName, getChainObject, getExplorerName, getExplorerTxUrl, getExplorerUrl, getSupportedChainIds, getSupportedTargetTokens, getSupportedTokenSymbolsForChain, getTargetTokenSymbolsForChain, getTokenAddress, getTokenDecimals, getTokenDecimalsByAddress, getTokenIcon, getTokenSymbol, getUsdcAddress, getUsdcDecimals, isSupportedTokenAddressForChain };
|
package/dist/constants.mjs
CHANGED
|
@@ -18,6 +18,7 @@ import {
|
|
|
18
18
|
getSupportedChainIds,
|
|
19
19
|
getSupportedTargetTokens,
|
|
20
20
|
getSupportedTokenSymbolsForChain,
|
|
21
|
+
getTargetTokenSymbolsForChain,
|
|
21
22
|
getTokenAddress,
|
|
22
23
|
getTokenDecimals,
|
|
23
24
|
getTokenDecimalsByAddress,
|
|
@@ -26,7 +27,7 @@ import {
|
|
|
26
27
|
getUsdcAddress,
|
|
27
28
|
getUsdcDecimals,
|
|
28
29
|
isSupportedTokenAddressForChain
|
|
29
|
-
} from "./chunk-
|
|
30
|
+
} from "./chunk-3ICS43XC.mjs";
|
|
30
31
|
export {
|
|
31
32
|
CHAIN_BY_ID,
|
|
32
33
|
DEFAULT_BACKEND_URL,
|
|
@@ -47,6 +48,7 @@ export {
|
|
|
47
48
|
getSupportedChainIds,
|
|
48
49
|
getSupportedTargetTokens,
|
|
49
50
|
getSupportedTokenSymbolsForChain,
|
|
51
|
+
getTargetTokenSymbolsForChain,
|
|
50
52
|
getTokenAddress,
|
|
51
53
|
getTokenDecimals,
|
|
52
54
|
getTokenDecimalsByAddress,
|
package/dist/deposit.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-
|
|
3
|
+
var _chunkMU2BOEDNcjs = require('./chunk-MU2BOEDN.cjs');
|
|
4
|
+
require('./chunk-G2RDCQHL.cjs');
|
|
5
|
+
require('./chunk-PE6OK3FH.cjs');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.DepositModal =
|
|
8
|
+
exports.DepositModal = _chunkMU2BOEDNcjs.DepositModal;
|
package/dist/deposit.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { c as DepositModalProps } from './types-
|
|
3
|
-
export { A as AssetOption, C as ConnectedEventData, D as DepositCompleteEventData, a as DepositFailedEventData, b as DepositModalBranding, d as DepositModalTheme, e as DepositModalUIConfig, f as DepositSubmittedEventData, E as ErrorEventData } from './types-
|
|
2
|
+
import { c as DepositModalProps } from './types-DELv717e.cjs';
|
|
3
|
+
export { A as AssetOption, C as ConnectedEventData, D as DepositCompleteEventData, a as DepositFailedEventData, b as DepositModalBranding, d as DepositModalTheme, e as DepositModalUIConfig, f as DepositSubmittedEventData, E as ErrorEventData } from './types-DELv717e.cjs';
|
|
4
4
|
import 'viem';
|
|
5
5
|
import './safe.cjs';
|
|
6
6
|
|
package/dist/deposit.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { c as DepositModalProps } from './types-
|
|
3
|
-
export { A as AssetOption, C as ConnectedEventData, D as DepositCompleteEventData, a as DepositFailedEventData, b as DepositModalBranding, d as DepositModalTheme, e as DepositModalUIConfig, f as DepositSubmittedEventData, E as ErrorEventData } from './types-
|
|
2
|
+
import { c as DepositModalProps } from './types-DTBfMH0p.js';
|
|
3
|
+
export { A as AssetOption, C as ConnectedEventData, D as DepositCompleteEventData, a as DepositFailedEventData, b as DepositModalBranding, d as DepositModalTheme, e as DepositModalUIConfig, f as DepositSubmittedEventData, E as ErrorEventData } from './types-DTBfMH0p.js';
|
|
4
4
|
import 'viem';
|
|
5
5
|
import './safe.js';
|
|
6
6
|
|
package/dist/deposit.mjs
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkMU2BOEDNcjs = require('./chunk-MU2BOEDN.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
7
|
-
require('./chunk-
|
|
6
|
+
var _chunkSZ35G2DTcjs = require('./chunk-SZ35G2DT.cjs');
|
|
7
|
+
require('./chunk-G2RDCQHL.cjs');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
@@ -33,8 +33,8 @@ require('./chunk-7ZCUANBT.cjs');
|
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
var _chunkDLYVHOMEcjs = require('./chunk-DLYVHOME.cjs');
|
|
37
36
|
|
|
37
|
+
var _chunkPE6OK3FHcjs = require('./chunk-PE6OK3FH.cjs');
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
|
|
@@ -64,4 +64,6 @@ var _chunkDLYVHOMEcjs = require('./chunk-DLYVHOME.cjs');
|
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
|
|
67
|
-
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
exports.CHAIN_BY_ID = _chunkPE6OK3FHcjs.CHAIN_BY_ID; exports.DEFAULT_BACKEND_URL = _chunkPE6OK3FHcjs.DEFAULT_BACKEND_URL; exports.DEFAULT_SIGNER_ADDRESS = _chunkPE6OK3FHcjs.DEFAULT_SIGNER_ADDRESS; exports.DepositModal = _chunkMU2BOEDNcjs.DepositModal; exports.NATIVE_TOKEN_ADDRESS = _chunkPE6OK3FHcjs.NATIVE_TOKEN_ADDRESS; exports.SOURCE_CHAINS = _chunkPE6OK3FHcjs.SOURCE_CHAINS; exports.SUPPORTED_CHAINS = _chunkPE6OK3FHcjs.SUPPORTED_CHAINS; exports.WithdrawModal = _chunkSZ35G2DTcjs.WithdrawModal; exports.chainRegistry = _chunkPE6OK3FHcjs.chainRegistry; exports.findChainIdForToken = _chunkPE6OK3FHcjs.findChainIdForToken; exports.getChainBadge = _chunkPE6OK3FHcjs.getChainBadge; exports.getChainIcon = _chunkPE6OK3FHcjs.getChainIcon; exports.getChainId = _chunkPE6OK3FHcjs.getChainId; exports.getChainName = _chunkPE6OK3FHcjs.getChainName; exports.getChainObject = _chunkPE6OK3FHcjs.getChainObject; exports.getExplorerName = _chunkPE6OK3FHcjs.getExplorerName; exports.getExplorerTxUrl = _chunkPE6OK3FHcjs.getExplorerTxUrl; exports.getExplorerUrl = _chunkPE6OK3FHcjs.getExplorerUrl; exports.getSupportedChainIds = _chunkPE6OK3FHcjs.getSupportedChainIds; exports.getSupportedTargetTokens = _chunkPE6OK3FHcjs.getSupportedTargetTokens; exports.getSupportedTokenSymbolsForChain = _chunkPE6OK3FHcjs.getSupportedTokenSymbolsForChain; exports.getTargetTokenSymbolsForChain = _chunkPE6OK3FHcjs.getTargetTokenSymbolsForChain; exports.getTokenAddress = _chunkPE6OK3FHcjs.getTokenAddress; exports.getTokenDecimals = _chunkPE6OK3FHcjs.getTokenDecimals; exports.getTokenDecimalsByAddress = _chunkPE6OK3FHcjs.getTokenDecimalsByAddress; exports.getTokenIcon = _chunkPE6OK3FHcjs.getTokenIcon; exports.getTokenSymbol = _chunkPE6OK3FHcjs.getTokenSymbol; exports.getUsdcAddress = _chunkPE6OK3FHcjs.getUsdcAddress; exports.getUsdcDecimals = _chunkPE6OK3FHcjs.getUsdcDecimals; exports.isSupportedTokenAddressForChain = _chunkPE6OK3FHcjs.isSupportedTokenAddressForChain;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { DepositModal } from './deposit.cjs';
|
|
2
2
|
export { WithdrawModal } from './withdraw.cjs';
|
|
3
|
-
export { A as AssetOption, C as ConnectedEventData, D as DepositCompleteEventData, a as DepositFailedEventData, b as DepositModalBranding, c as DepositModalProps, d as DepositModalTheme, e as DepositModalUIConfig, f as DepositSubmittedEventData, E as ErrorEventData, W as WithdrawCompleteEventData, g as WithdrawFailedEventData, h as WithdrawModalProps, i as WithdrawSubmittedEventData } from './types-
|
|
4
|
-
export { CHAIN_BY_ID, DEFAULT_BACKEND_URL, DEFAULT_SIGNER_ADDRESS, NATIVE_TOKEN_ADDRESS, SOURCE_CHAINS, SUPPORTED_CHAINS, chainRegistry, findChainIdForToken, getChainBadge, getChainIcon, getChainId, getChainName, getChainObject, getExplorerName, getExplorerTxUrl, getExplorerUrl, getSupportedChainIds, getSupportedTargetTokens, getSupportedTokenSymbolsForChain, getTokenAddress, getTokenDecimals, getTokenDecimalsByAddress, getTokenIcon, getTokenSymbol, getUsdcAddress, getUsdcDecimals, isSupportedTokenAddressForChain } from './constants.cjs';
|
|
3
|
+
export { A as AssetOption, C as ConnectedEventData, D as DepositCompleteEventData, a as DepositFailedEventData, b as DepositModalBranding, c as DepositModalProps, d as DepositModalTheme, e as DepositModalUIConfig, f as DepositSubmittedEventData, E as ErrorEventData, W as WithdrawCompleteEventData, g as WithdrawFailedEventData, h as WithdrawModalProps, i as WithdrawSubmittedEventData } from './types-DELv717e.cjs';
|
|
4
|
+
export { CHAIN_BY_ID, DEFAULT_BACKEND_URL, DEFAULT_SIGNER_ADDRESS, NATIVE_TOKEN_ADDRESS, SOURCE_CHAINS, SUPPORTED_CHAINS, chainRegistry, findChainIdForToken, getChainBadge, getChainIcon, getChainId, getChainName, getChainObject, getExplorerName, getExplorerTxUrl, getExplorerUrl, getSupportedChainIds, getSupportedTargetTokens, getSupportedTokenSymbolsForChain, getTargetTokenSymbolsForChain, getTokenAddress, getTokenDecimals, getTokenDecimalsByAddress, getTokenIcon, getTokenSymbol, getUsdcAddress, getUsdcDecimals, isSupportedTokenAddressForChain } from './constants.cjs';
|
|
5
5
|
export { SafeTransactionRequest } from './safe.cjs';
|
|
6
6
|
import 'react/jsx-runtime';
|
|
7
7
|
import 'viem';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { DepositModal } from './deposit.js';
|
|
2
2
|
export { WithdrawModal } from './withdraw.js';
|
|
3
|
-
export { A as AssetOption, C as ConnectedEventData, D as DepositCompleteEventData, a as DepositFailedEventData, b as DepositModalBranding, c as DepositModalProps, d as DepositModalTheme, e as DepositModalUIConfig, f as DepositSubmittedEventData, E as ErrorEventData, W as WithdrawCompleteEventData, g as WithdrawFailedEventData, h as WithdrawModalProps, i as WithdrawSubmittedEventData } from './types-
|
|
4
|
-
export { CHAIN_BY_ID, DEFAULT_BACKEND_URL, DEFAULT_SIGNER_ADDRESS, NATIVE_TOKEN_ADDRESS, SOURCE_CHAINS, SUPPORTED_CHAINS, chainRegistry, findChainIdForToken, getChainBadge, getChainIcon, getChainId, getChainName, getChainObject, getExplorerName, getExplorerTxUrl, getExplorerUrl, getSupportedChainIds, getSupportedTargetTokens, getSupportedTokenSymbolsForChain, getTokenAddress, getTokenDecimals, getTokenDecimalsByAddress, getTokenIcon, getTokenSymbol, getUsdcAddress, getUsdcDecimals, isSupportedTokenAddressForChain } from './constants.js';
|
|
3
|
+
export { A as AssetOption, C as ConnectedEventData, D as DepositCompleteEventData, a as DepositFailedEventData, b as DepositModalBranding, c as DepositModalProps, d as DepositModalTheme, e as DepositModalUIConfig, f as DepositSubmittedEventData, E as ErrorEventData, W as WithdrawCompleteEventData, g as WithdrawFailedEventData, h as WithdrawModalProps, i as WithdrawSubmittedEventData } from './types-DTBfMH0p.js';
|
|
4
|
+
export { CHAIN_BY_ID, DEFAULT_BACKEND_URL, DEFAULT_SIGNER_ADDRESS, NATIVE_TOKEN_ADDRESS, SOURCE_CHAINS, SUPPORTED_CHAINS, chainRegistry, findChainIdForToken, getChainBadge, getChainIcon, getChainId, getChainName, getChainObject, getExplorerName, getExplorerTxUrl, getExplorerUrl, getSupportedChainIds, getSupportedTargetTokens, getSupportedTokenSymbolsForChain, getTargetTokenSymbolsForChain, getTokenAddress, getTokenDecimals, getTokenDecimalsByAddress, getTokenIcon, getTokenSymbol, getUsdcAddress, getUsdcDecimals, isSupportedTokenAddressForChain } from './constants.js';
|
|
5
5
|
export { SafeTransactionRequest } from './safe.js';
|
|
6
6
|
import 'react/jsx-runtime';
|
|
7
7
|
import 'viem';
|
package/dist/index.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
DepositModal
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-AWFJFSPH.mjs";
|
|
4
4
|
import {
|
|
5
5
|
WithdrawModal
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import "./chunk-
|
|
6
|
+
} from "./chunk-SLI5FHTT.mjs";
|
|
7
|
+
import "./chunk-EVU7M7A6.mjs";
|
|
8
8
|
import {
|
|
9
9
|
CHAIN_BY_ID,
|
|
10
10
|
DEFAULT_BACKEND_URL,
|
|
@@ -25,6 +25,7 @@ import {
|
|
|
25
25
|
getSupportedChainIds,
|
|
26
26
|
getSupportedTargetTokens,
|
|
27
27
|
getSupportedTokenSymbolsForChain,
|
|
28
|
+
getTargetTokenSymbolsForChain,
|
|
28
29
|
getTokenAddress,
|
|
29
30
|
getTokenDecimals,
|
|
30
31
|
getTokenDecimalsByAddress,
|
|
@@ -33,7 +34,7 @@ import {
|
|
|
33
34
|
getUsdcAddress,
|
|
34
35
|
getUsdcDecimals,
|
|
35
36
|
isSupportedTokenAddressForChain
|
|
36
|
-
} from "./chunk-
|
|
37
|
+
} from "./chunk-3ICS43XC.mjs";
|
|
37
38
|
export {
|
|
38
39
|
CHAIN_BY_ID,
|
|
39
40
|
DEFAULT_BACKEND_URL,
|
|
@@ -56,6 +57,7 @@ export {
|
|
|
56
57
|
getSupportedChainIds,
|
|
57
58
|
getSupportedTargetTokens,
|
|
58
59
|
getSupportedTokenSymbolsForChain,
|
|
60
|
+
getTargetTokenSymbolsForChain,
|
|
59
61
|
getTokenAddress,
|
|
60
62
|
getTokenDecimals,
|
|
61
63
|
getTokenDecimalsByAddress,
|
package/dist/reown.cjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkMU2BOEDNcjs = require('./chunk-MU2BOEDN.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
7
|
-
require('./chunk-
|
|
8
|
-
require('./chunk-
|
|
6
|
+
var _chunkSZ35G2DTcjs = require('./chunk-SZ35G2DT.cjs');
|
|
7
|
+
require('./chunk-G2RDCQHL.cjs');
|
|
8
|
+
require('./chunk-PE6OK3FH.cjs');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.DepositModal =
|
|
12
|
+
exports.DepositModal = _chunkMU2BOEDNcjs.DepositModal; exports.WithdrawModal = _chunkSZ35G2DTcjs.WithdrawModal;
|
package/dist/reown.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { DepositModal } from './deposit.cjs';
|
|
2
2
|
export { WithdrawModal } from './withdraw.cjs';
|
|
3
|
-
export { A as AssetOption, C as ConnectedEventData, D as DepositCompleteEventData, a as DepositFailedEventData, b as DepositModalBranding, c as DepositModalProps, d as DepositModalTheme, e as DepositModalUIConfig, f as DepositSubmittedEventData, E as ErrorEventData, W as WithdrawCompleteEventData, g as WithdrawFailedEventData, h as WithdrawModalProps, i as WithdrawSubmittedEventData } from './types-
|
|
3
|
+
export { A as AssetOption, C as ConnectedEventData, D as DepositCompleteEventData, a as DepositFailedEventData, b as DepositModalBranding, c as DepositModalProps, d as DepositModalTheme, e as DepositModalUIConfig, f as DepositSubmittedEventData, E as ErrorEventData, W as WithdrawCompleteEventData, g as WithdrawFailedEventData, h as WithdrawModalProps, i as WithdrawSubmittedEventData } from './types-DELv717e.cjs';
|
|
4
4
|
export { SafeTransactionRequest } from './safe.cjs';
|
|
5
5
|
import 'react/jsx-runtime';
|
|
6
6
|
import 'viem';
|
package/dist/reown.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { DepositModal } from './deposit.js';
|
|
2
2
|
export { WithdrawModal } from './withdraw.js';
|
|
3
|
-
export { A as AssetOption, C as ConnectedEventData, D as DepositCompleteEventData, a as DepositFailedEventData, b as DepositModalBranding, c as DepositModalProps, d as DepositModalTheme, e as DepositModalUIConfig, f as DepositSubmittedEventData, E as ErrorEventData, W as WithdrawCompleteEventData, g as WithdrawFailedEventData, h as WithdrawModalProps, i as WithdrawSubmittedEventData } from './types-
|
|
3
|
+
export { A as AssetOption, C as ConnectedEventData, D as DepositCompleteEventData, a as DepositFailedEventData, b as DepositModalBranding, c as DepositModalProps, d as DepositModalTheme, e as DepositModalUIConfig, f as DepositSubmittedEventData, E as ErrorEventData, W as WithdrawCompleteEventData, g as WithdrawFailedEventData, h as WithdrawModalProps, i as WithdrawSubmittedEventData } from './types-DTBfMH0p.js';
|
|
4
4
|
export { SafeTransactionRequest } from './safe.js';
|
|
5
5
|
import 'react/jsx-runtime';
|
|
6
6
|
import 'viem';
|
package/dist/reown.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
DepositModal
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-AWFJFSPH.mjs";
|
|
4
4
|
import {
|
|
5
5
|
WithdrawModal
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
6
|
+
} from "./chunk-SLI5FHTT.mjs";
|
|
7
|
+
import "./chunk-EVU7M7A6.mjs";
|
|
8
|
+
import "./chunk-3ICS43XC.mjs";
|
|
9
9
|
export {
|
|
10
10
|
DepositModal,
|
|
11
11
|
WithdrawModal
|
package/dist/styles.css
CHANGED
|
@@ -735,8 +735,9 @@
|
|
|
735
735
|
right: -2px;
|
|
736
736
|
width: 16px;
|
|
737
737
|
height: 16px;
|
|
738
|
-
border-radius:
|
|
738
|
+
border-radius: 3px;
|
|
739
739
|
border: 2px solid var(--rs-background);
|
|
740
|
+
background-color: var(--rs-background);
|
|
740
741
|
display: flex;
|
|
741
742
|
align-items: center;
|
|
742
743
|
justify-content: center;
|
|
@@ -747,7 +748,8 @@
|
|
|
747
748
|
.rs-asset-chain-badge img {
|
|
748
749
|
width: 100%;
|
|
749
750
|
height: 100%;
|
|
750
|
-
border-radius:
|
|
751
|
+
border-radius: 3px;
|
|
752
|
+
object-fit: cover;
|
|
751
753
|
}
|
|
752
754
|
|
|
753
755
|
.rs-asset-name {
|
|
@@ -1722,8 +1724,9 @@
|
|
|
1722
1724
|
right: -2px;
|
|
1723
1725
|
width: 12px;
|
|
1724
1726
|
height: 12px;
|
|
1725
|
-
border-radius:
|
|
1727
|
+
border-radius: 3px;
|
|
1726
1728
|
border: 1.5px solid var(--rs-surface);
|
|
1729
|
+
background-color: var(--rs-background);
|
|
1727
1730
|
display: flex;
|
|
1728
1731
|
align-items: center;
|
|
1729
1732
|
justify-content: center;
|
|
@@ -1735,8 +1738,8 @@
|
|
|
1735
1738
|
.rs-flow-pill-chain-badge img {
|
|
1736
1739
|
width: 100%;
|
|
1737
1740
|
height: 100%;
|
|
1738
|
-
border-radius:
|
|
1739
|
-
object-fit:
|
|
1741
|
+
border-radius: 3px;
|
|
1742
|
+
object-fit: cover;
|
|
1740
1743
|
}
|
|
1741
1744
|
|
|
1742
1745
|
.rs-flow-pill-token-symbol {
|
|
@@ -15,7 +15,11 @@ interface DepositModalUIConfig {
|
|
|
15
15
|
showLogo?: boolean;
|
|
16
16
|
showStepper?: boolean;
|
|
17
17
|
showBackButton?: boolean;
|
|
18
|
-
|
|
18
|
+
balance?: {
|
|
19
|
+
title: string;
|
|
20
|
+
amount?: string;
|
|
21
|
+
};
|
|
22
|
+
showTokenBalance?: boolean;
|
|
19
23
|
maxDepositUsd?: number;
|
|
20
24
|
minDepositUsd?: number;
|
|
21
25
|
}
|
|
@@ -15,7 +15,11 @@ interface DepositModalUIConfig {
|
|
|
15
15
|
showLogo?: boolean;
|
|
16
16
|
showStepper?: boolean;
|
|
17
17
|
showBackButton?: boolean;
|
|
18
|
-
|
|
18
|
+
balance?: {
|
|
19
|
+
title: string;
|
|
20
|
+
amount?: string;
|
|
21
|
+
};
|
|
22
|
+
showTokenBalance?: boolean;
|
|
19
23
|
maxDepositUsd?: number;
|
|
20
24
|
minDepositUsd?: number;
|
|
21
25
|
}
|
package/dist/withdraw.cjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-
|
|
3
|
+
var _chunkSZ35G2DTcjs = require('./chunk-SZ35G2DT.cjs');
|
|
4
|
+
require('./chunk-G2RDCQHL.cjs');
|
|
5
|
+
require('./chunk-PE6OK3FH.cjs');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.WithdrawModal =
|
|
8
|
+
exports.WithdrawModal = _chunkSZ35G2DTcjs.WithdrawModal;
|
package/dist/withdraw.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { h as WithdrawModalProps } from './types-
|
|
3
|
-
export { A as AssetOption, C as ConnectedEventData, E as ErrorEventData, W as WithdrawCompleteEventData, g as WithdrawFailedEventData, i as WithdrawSubmittedEventData } from './types-
|
|
2
|
+
import { h as WithdrawModalProps } from './types-DELv717e.cjs';
|
|
3
|
+
export { A as AssetOption, C as ConnectedEventData, E as ErrorEventData, W as WithdrawCompleteEventData, g as WithdrawFailedEventData, i as WithdrawSubmittedEventData } from './types-DELv717e.cjs';
|
|
4
4
|
export { SafeTransactionRequest } from './safe.cjs';
|
|
5
5
|
import 'viem';
|
|
6
6
|
|
package/dist/withdraw.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { h as WithdrawModalProps } from './types-
|
|
3
|
-
export { A as AssetOption, C as ConnectedEventData, E as ErrorEventData, W as WithdrawCompleteEventData, g as WithdrawFailedEventData, i as WithdrawSubmittedEventData } from './types-
|
|
2
|
+
import { h as WithdrawModalProps } from './types-DTBfMH0p.js';
|
|
3
|
+
export { A as AssetOption, C as ConnectedEventData, E as ErrorEventData, W as WithdrawCompleteEventData, g as WithdrawFailedEventData, i as WithdrawSubmittedEventData } from './types-DTBfMH0p.js';
|
|
4
4
|
export { SafeTransactionRequest } from './safe.js';
|
|
5
5
|
import 'viem';
|
|
6
6
|
|
package/dist/withdraw.mjs
CHANGED