@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.
Files changed (43) hide show
  1. package/README.md +40 -211
  2. package/dist/{DepositModalReown-CY5MSQGK.mjs → DepositModalReown-GXY65HZP.mjs} +3 -3
  3. package/dist/{DepositModalReown-2UMPITRN.cjs → DepositModalReown-HVIEA6YA.cjs} +4 -4
  4. package/dist/QRCode-SMMYPUQC.cjs +58 -0
  5. package/dist/QRCode-YMQTKSSK.mjs +58 -0
  6. package/dist/{WithdrawModalReown-Z5BUZQ4Z.cjs → WithdrawModalReown-4M3PBY2T.cjs} +4 -4
  7. package/dist/{WithdrawModalReown-YSRO5ZTA.mjs → WithdrawModalReown-O6V6KRH6.mjs} +3 -3
  8. package/dist/{chunk-ARGMXV6E.cjs → chunk-7SYZG47X.cjs} +1723 -1881
  9. package/dist/{chunk-WHW3ZMOT.mjs → chunk-EEHUOFIW.mjs} +107 -90
  10. package/dist/{chunk-KJEHVIPZ.mjs → chunk-FKPTIHU7.mjs} +631 -423
  11. package/dist/{chunk-HFQV7EHS.mjs → chunk-U5QIFNG4.mjs} +1774 -1932
  12. package/dist/{chunk-WNFGZS56.mjs → chunk-UIHAYD7J.mjs} +1079 -784
  13. package/dist/{chunk-R2HP743T.cjs → chunk-XCAF6B3D.cjs} +51 -34
  14. package/dist/{chunk-NFXJEOE6.cjs → chunk-Y3RA3YGA.cjs} +1101 -806
  15. package/dist/{chunk-QUOP5C6V.cjs → chunk-Z2SIC2TH.cjs} +686 -478
  16. package/dist/constants.cjs +2 -2
  17. package/dist/constants.d.cts +3 -2
  18. package/dist/constants.d.ts +3 -2
  19. package/dist/constants.mjs +1 -1
  20. package/dist/deposit.cjs +4 -4
  21. package/dist/deposit.d.cts +2 -3
  22. package/dist/deposit.d.ts +2 -3
  23. package/dist/deposit.mjs +3 -3
  24. package/dist/index.cjs +5 -5
  25. package/dist/index.d.cts +5 -3
  26. package/dist/index.d.ts +5 -3
  27. package/dist/index.mjs +4 -4
  28. package/dist/styles.css +1068 -752
  29. package/dist/{types-DGQzvl6v.d.ts → types-DRou84ZM.d.cts} +147 -33
  30. package/dist/{types-DJ1fzNC7.d.cts → types-DRou84ZM.d.ts} +147 -33
  31. package/dist/withdraw.cjs +4 -4
  32. package/dist/withdraw.d.cts +2 -3
  33. package/dist/withdraw.d.ts +2 -3
  34. package/dist/withdraw.mjs +3 -3
  35. package/package.json +13 -12
  36. package/dist/reown.cjs +0 -16
  37. package/dist/reown.d.cts +0 -10
  38. package/dist/reown.d.ts +0 -10
  39. package/dist/reown.mjs +0 -16
  40. package/dist/safe.cjs +0 -1
  41. package/dist/safe.d.cts +0 -62
  42. package/dist/safe.d.ts +0 -62
  43. 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