@rhinestone/deposit-modal 0.2.4 → 0.3.0-alpha.0
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/README.md +40 -211
- package/dist/{DepositModalReown-CY5MSQGK.mjs → DepositModalReown-GXY65HZP.mjs} +3 -3
- package/dist/{DepositModalReown-2UMPITRN.cjs → DepositModalReown-HVIEA6YA.cjs} +4 -4
- package/dist/QRCode-SMMYPUQC.cjs +58 -0
- package/dist/QRCode-YMQTKSSK.mjs +58 -0
- package/dist/{WithdrawModalReown-Z5BUZQ4Z.cjs → WithdrawModalReown-4M3PBY2T.cjs} +4 -4
- package/dist/{WithdrawModalReown-YSRO5ZTA.mjs → WithdrawModalReown-O6V6KRH6.mjs} +3 -3
- package/dist/{chunk-ARGMXV6E.cjs → chunk-7SYZG47X.cjs} +1723 -1881
- package/dist/{chunk-WHW3ZMOT.mjs → chunk-EEHUOFIW.mjs} +107 -90
- package/dist/{chunk-KJEHVIPZ.mjs → chunk-FKPTIHU7.mjs} +631 -423
- package/dist/{chunk-HFQV7EHS.mjs → chunk-U5QIFNG4.mjs} +1774 -1932
- package/dist/{chunk-WNFGZS56.mjs → chunk-UIHAYD7J.mjs} +1079 -784
- package/dist/{chunk-R2HP743T.cjs → chunk-XCAF6B3D.cjs} +51 -34
- package/dist/{chunk-NFXJEOE6.cjs → chunk-Y3RA3YGA.cjs} +1101 -806
- package/dist/{chunk-QUOP5C6V.cjs → chunk-Z2SIC2TH.cjs} +686 -478
- package/dist/constants.cjs +2 -2
- package/dist/constants.d.cts +3 -2
- package/dist/constants.d.ts +3 -2
- package/dist/constants.mjs +1 -1
- package/dist/deposit.cjs +4 -4
- package/dist/deposit.d.cts +2 -3
- package/dist/deposit.d.ts +2 -3
- package/dist/deposit.mjs +3 -3
- package/dist/index.cjs +5 -5
- package/dist/index.d.cts +5 -3
- package/dist/index.d.ts +5 -3
- package/dist/index.mjs +4 -4
- package/dist/styles.css +1068 -752
- package/dist/{types-DGQzvl6v.d.ts → types-DRou84ZM.d.cts} +147 -33
- package/dist/{types-DJ1fzNC7.d.cts → types-DRou84ZM.d.ts} +147 -33
- package/dist/withdraw.cjs +4 -4
- package/dist/withdraw.d.cts +2 -3
- package/dist/withdraw.d.ts +2 -3
- package/dist/withdraw.mjs +3 -3
- package/package.json +13 -12
- package/dist/reown.cjs +0 -16
- package/dist/reown.d.cts +0 -10
- package/dist/reown.d.ts +0 -10
- package/dist/reown.mjs +0 -16
- package/dist/safe.cjs +0 -1
- package/dist/safe.d.cts +0 -62
- package/dist/safe.d.ts +0 -62
- package/dist/safe.mjs +0 -0
package/dist/safe.d.cts
DELETED
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import { Address, Hex } from 'viem';
|
|
2
|
-
|
|
3
|
-
interface SafeTransactionRequest {
|
|
4
|
-
chainId: number;
|
|
5
|
-
safeAddress: Address;
|
|
6
|
-
safeTxHash: Hex;
|
|
7
|
-
typedData: {
|
|
8
|
-
domain: {
|
|
9
|
-
chainId: number;
|
|
10
|
-
verifyingContract: Address;
|
|
11
|
-
};
|
|
12
|
-
types: typeof SAFE_TX_TYPES;
|
|
13
|
-
primaryType: "SafeTx";
|
|
14
|
-
message: {
|
|
15
|
-
to: Address;
|
|
16
|
-
value: bigint;
|
|
17
|
-
data: Hex;
|
|
18
|
-
operation: number;
|
|
19
|
-
safeTxGas: bigint;
|
|
20
|
-
baseGas: bigint;
|
|
21
|
-
gasPrice: bigint;
|
|
22
|
-
gasToken: Address;
|
|
23
|
-
refundReceiver: Address;
|
|
24
|
-
nonce: bigint;
|
|
25
|
-
};
|
|
26
|
-
};
|
|
27
|
-
}
|
|
28
|
-
declare const SAFE_TX_TYPES: {
|
|
29
|
-
readonly SafeTx: readonly [{
|
|
30
|
-
readonly name: "to";
|
|
31
|
-
readonly type: "address";
|
|
32
|
-
}, {
|
|
33
|
-
readonly name: "value";
|
|
34
|
-
readonly type: "uint256";
|
|
35
|
-
}, {
|
|
36
|
-
readonly name: "data";
|
|
37
|
-
readonly type: "bytes";
|
|
38
|
-
}, {
|
|
39
|
-
readonly name: "operation";
|
|
40
|
-
readonly type: "uint8";
|
|
41
|
-
}, {
|
|
42
|
-
readonly name: "safeTxGas";
|
|
43
|
-
readonly type: "uint256";
|
|
44
|
-
}, {
|
|
45
|
-
readonly name: "baseGas";
|
|
46
|
-
readonly type: "uint256";
|
|
47
|
-
}, {
|
|
48
|
-
readonly name: "gasPrice";
|
|
49
|
-
readonly type: "uint256";
|
|
50
|
-
}, {
|
|
51
|
-
readonly name: "gasToken";
|
|
52
|
-
readonly type: "address";
|
|
53
|
-
}, {
|
|
54
|
-
readonly name: "refundReceiver";
|
|
55
|
-
readonly type: "address";
|
|
56
|
-
}, {
|
|
57
|
-
readonly name: "nonce";
|
|
58
|
-
readonly type: "uint256";
|
|
59
|
-
}];
|
|
60
|
-
};
|
|
61
|
-
|
|
62
|
-
export type { SafeTransactionRequest };
|
package/dist/safe.d.ts
DELETED
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import { Address, Hex } from 'viem';
|
|
2
|
-
|
|
3
|
-
interface SafeTransactionRequest {
|
|
4
|
-
chainId: number;
|
|
5
|
-
safeAddress: Address;
|
|
6
|
-
safeTxHash: Hex;
|
|
7
|
-
typedData: {
|
|
8
|
-
domain: {
|
|
9
|
-
chainId: number;
|
|
10
|
-
verifyingContract: Address;
|
|
11
|
-
};
|
|
12
|
-
types: typeof SAFE_TX_TYPES;
|
|
13
|
-
primaryType: "SafeTx";
|
|
14
|
-
message: {
|
|
15
|
-
to: Address;
|
|
16
|
-
value: bigint;
|
|
17
|
-
data: Hex;
|
|
18
|
-
operation: number;
|
|
19
|
-
safeTxGas: bigint;
|
|
20
|
-
baseGas: bigint;
|
|
21
|
-
gasPrice: bigint;
|
|
22
|
-
gasToken: Address;
|
|
23
|
-
refundReceiver: Address;
|
|
24
|
-
nonce: bigint;
|
|
25
|
-
};
|
|
26
|
-
};
|
|
27
|
-
}
|
|
28
|
-
declare const SAFE_TX_TYPES: {
|
|
29
|
-
readonly SafeTx: readonly [{
|
|
30
|
-
readonly name: "to";
|
|
31
|
-
readonly type: "address";
|
|
32
|
-
}, {
|
|
33
|
-
readonly name: "value";
|
|
34
|
-
readonly type: "uint256";
|
|
35
|
-
}, {
|
|
36
|
-
readonly name: "data";
|
|
37
|
-
readonly type: "bytes";
|
|
38
|
-
}, {
|
|
39
|
-
readonly name: "operation";
|
|
40
|
-
readonly type: "uint8";
|
|
41
|
-
}, {
|
|
42
|
-
readonly name: "safeTxGas";
|
|
43
|
-
readonly type: "uint256";
|
|
44
|
-
}, {
|
|
45
|
-
readonly name: "baseGas";
|
|
46
|
-
readonly type: "uint256";
|
|
47
|
-
}, {
|
|
48
|
-
readonly name: "gasPrice";
|
|
49
|
-
readonly type: "uint256";
|
|
50
|
-
}, {
|
|
51
|
-
readonly name: "gasToken";
|
|
52
|
-
readonly type: "address";
|
|
53
|
-
}, {
|
|
54
|
-
readonly name: "refundReceiver";
|
|
55
|
-
readonly type: "address";
|
|
56
|
-
}, {
|
|
57
|
-
readonly name: "nonce";
|
|
58
|
-
readonly type: "uint256";
|
|
59
|
-
}];
|
|
60
|
-
};
|
|
61
|
-
|
|
62
|
-
export type { SafeTransactionRequest };
|
package/dist/safe.mjs
DELETED
|
File without changes
|