@rhinestone/deposit-modal 0.1.50 → 0.1.51
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-EKRWDULN.mjs → DepositModalReown-BMHCHJ2P.mjs} +2 -2
- package/dist/{DepositModalReown-SUED62QO.cjs → DepositModalReown-KT5MMNTJ.cjs} +3 -3
- package/dist/{WithdrawModalReown-JIKBNJU7.cjs → WithdrawModalReown-DULPL255.cjs} +3 -3
- package/dist/{WithdrawModalReown-AHHM3VTB.mjs → WithdrawModalReown-V5HYDMO2.mjs} +2 -2
- package/dist/{chunk-HXNHL64V.cjs → chunk-2AS2NAJ2.cjs} +88 -85
- package/dist/{chunk-FKNYONM2.mjs → chunk-BNSX25TA.mjs} +5 -4
- package/dist/{chunk-CTZVI5NR.cjs → chunk-DKYHVAHN.cjs} +45 -36
- package/dist/{chunk-GZIGVCI2.mjs → chunk-G2GXEC7C.mjs} +14 -5
- package/dist/{chunk-7HJ7IBRH.cjs → chunk-NU3ES4JY.cjs} +5 -4
- package/dist/{chunk-N5BRA3ZN.mjs → chunk-SKL3JJP6.mjs} +8 -5
- package/dist/deposit.cjs +3 -3
- package/dist/deposit.d.cts +2 -2
- package/dist/deposit.d.ts +2 -2
- package/dist/deposit.mjs +2 -2
- package/dist/index.cjs +4 -4
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +3 -3
- package/dist/reown.cjs +4 -4
- package/dist/reown.d.cts +1 -1
- package/dist/reown.d.ts +1 -1
- package/dist/reown.mjs +3 -3
- package/dist/{types-Qv3sYfjZ.d.ts → types-D1nvo2dK.d.ts} +10 -0
- package/dist/{types-C2uBaYtU.d.cts → types-DgiqazTb.d.cts} +10 -0
- package/dist/withdraw.cjs +3 -3
- package/dist/withdraw.d.cts +2 -2
- package/dist/withdraw.d.ts +2 -2
- package/dist/withdraw.mjs +2 -2
- package/package.json +1 -1
|
@@ -40,6 +40,11 @@ interface DepositSubmittedEventData {
|
|
|
40
40
|
interface DepositCompleteEventData {
|
|
41
41
|
txHash: string;
|
|
42
42
|
destinationTxHash?: string;
|
|
43
|
+
amount: string;
|
|
44
|
+
sourceChain: ChainId;
|
|
45
|
+
sourceToken: string;
|
|
46
|
+
targetChain: number;
|
|
47
|
+
targetToken: string;
|
|
43
48
|
}
|
|
44
49
|
interface DepositFailedEventData {
|
|
45
50
|
txHash: string;
|
|
@@ -54,6 +59,11 @@ interface WithdrawSubmittedEventData {
|
|
|
54
59
|
interface WithdrawCompleteEventData {
|
|
55
60
|
txHash: Hex;
|
|
56
61
|
destinationTxHash?: Hex;
|
|
62
|
+
amount: string;
|
|
63
|
+
sourceChain: number;
|
|
64
|
+
sourceToken: Address;
|
|
65
|
+
targetChain: number;
|
|
66
|
+
targetToken: Address;
|
|
57
67
|
}
|
|
58
68
|
interface WithdrawFailedEventData {
|
|
59
69
|
txHash: Hex;
|
|
@@ -40,6 +40,11 @@ interface DepositSubmittedEventData {
|
|
|
40
40
|
interface DepositCompleteEventData {
|
|
41
41
|
txHash: string;
|
|
42
42
|
destinationTxHash?: string;
|
|
43
|
+
amount: string;
|
|
44
|
+
sourceChain: ChainId;
|
|
45
|
+
sourceToken: string;
|
|
46
|
+
targetChain: number;
|
|
47
|
+
targetToken: string;
|
|
43
48
|
}
|
|
44
49
|
interface DepositFailedEventData {
|
|
45
50
|
txHash: string;
|
|
@@ -54,6 +59,11 @@ interface WithdrawSubmittedEventData {
|
|
|
54
59
|
interface WithdrawCompleteEventData {
|
|
55
60
|
txHash: Hex;
|
|
56
61
|
destinationTxHash?: Hex;
|
|
62
|
+
amount: string;
|
|
63
|
+
sourceChain: number;
|
|
64
|
+
sourceToken: Address;
|
|
65
|
+
targetChain: number;
|
|
66
|
+
targetToken: Address;
|
|
57
67
|
}
|
|
58
68
|
interface WithdrawFailedEventData {
|
|
59
69
|
txHash: Hex;
|
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-
|
|
3
|
+
var _chunkDKYHVAHNcjs = require('./chunk-DKYHVAHN.cjs');
|
|
4
|
+
require('./chunk-NU3ES4JY.cjs');
|
|
5
5
|
require('./chunk-NELAYNA3.cjs');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.WithdrawModal =
|
|
8
|
+
exports.WithdrawModal = _chunkDKYHVAHNcjs.WithdrawModal;
|
package/dist/withdraw.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { i as WithdrawModalProps } from './types-
|
|
3
|
-
export { A as AssetOption, a as ConnectedEventData, E as ErrorEventData, W as WithdrawCompleteEventData, h as WithdrawFailedEventData, j as WithdrawSubmittedEventData } from './types-
|
|
2
|
+
import { i as WithdrawModalProps } from './types-DgiqazTb.cjs';
|
|
3
|
+
export { A as AssetOption, a as ConnectedEventData, E as ErrorEventData, W as WithdrawCompleteEventData, h as WithdrawFailedEventData, j as WithdrawSubmittedEventData } from './types-DgiqazTb.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 { i as WithdrawModalProps } from './types-
|
|
3
|
-
export { A as AssetOption, a as ConnectedEventData, E as ErrorEventData, W as WithdrawCompleteEventData, h as WithdrawFailedEventData, j as WithdrawSubmittedEventData } from './types-
|
|
2
|
+
import { i as WithdrawModalProps } from './types-D1nvo2dK.js';
|
|
3
|
+
export { A as AssetOption, a as ConnectedEventData, E as ErrorEventData, W as WithdrawCompleteEventData, h as WithdrawFailedEventData, j as WithdrawSubmittedEventData } from './types-D1nvo2dK.js';
|
|
4
4
|
export { SafeTransactionRequest } from './safe.js';
|
|
5
5
|
import 'viem';
|
|
6
6
|
|
package/dist/withdraw.mjs
CHANGED