@multiversx/sdk-dapp-liquidity 2.4.0-alpha.0 → 2.4.0-alpha.1
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/BridgeHistory-0NVr8Uxp.js +2 -0
- package/{BridgeHistory-CInRkJ6T.mjs → BridgeHistory-BUSiuT1d.mjs} +10 -10
- package/{useFetchBridgeData-C_hZjzd_.mjs → hooks-DMIHvAKb.mjs} +16 -16
- package/hooks-SJPsZfDx.js +2 -0
- package/index.js +1 -1
- package/index.mjs +42 -42
- package/package.json +1 -1
- package/reactjs/components/BridgeForm/BridgeForm.js +1 -1
- package/reactjs/components/BridgeForm/BridgeForm.mjs +77 -49
- package/reactjs/components/BridgeForm/Deposit.js +1 -1
- package/reactjs/components/BridgeForm/Deposit.mjs +221 -222
- package/reactjs/components/BridgeForm/Transfer.js +1 -1
- package/reactjs/components/BridgeForm/Transfer.mjs +44 -44
- package/reactjs/components/BridgeForm/hooks/useBridgeTokenSelection.js +1 -1
- package/reactjs/components/BridgeForm/hooks/useBridgeTokenSelection.mjs +3 -3
- package/reactjs/components/BridgeForm/utils/bridgeFormHelpers.d.ts +2 -0
- package/reactjs/components/BridgeForm/utils/bridgeFormHelpers.js +1 -1
- package/reactjs/components/BridgeForm/utils/bridgeFormHelpers.mjs +2 -2
- package/reactjs/components/BridgeHistory/BridgeHistory.js +1 -1
- package/reactjs/components/BridgeHistory/BridgeHistory.mjs +1 -1
- package/reactjs/components/BridgeHistory/index.js +1 -1
- package/reactjs/components/BridgeHistory/index.mjs +1 -1
- package/reactjs/components/Connect/ChainSelectConnect.js +1 -1
- package/reactjs/components/Connect/ChainSelectConnect.mjs +3 -3
- package/reactjs/components/index.js +1 -1
- package/reactjs/components/index.mjs +1 -1
- package/reactjs/context/Web3AppProvider.js +1 -1
- package/reactjs/context/Web3AppProvider.mjs +5 -5
- package/reactjs/hooks/index.js +1 -1
- package/reactjs/hooks/index.mjs +14 -14
- package/reactjs/hooks/useBridgeFormik.js +1 -1
- package/reactjs/hooks/useBridgeFormik.mjs +14 -14
- package/reactjs/hooks/useFetchBridgeData.js +1 -1
- package/reactjs/hooks/useFetchBridgeData.mjs +1 -1
- package/reactjs/hooks/useFetchTokens.js +1 -1
- package/reactjs/hooks/useFetchTokens.mjs +1 -1
- package/reactjs/hooks/useSignTransaction.d.ts +3 -470
- package/reactjs/hooks/useSignTransaction.js +1 -1
- package/reactjs/hooks/useSignTransaction.mjs +39 -40
- package/reactjs/index.js +1 -1
- package/reactjs/index.mjs +42 -42
- package/reactjs/queries/index.js +1 -1
- package/reactjs/queries/index.mjs +3 -3
- package/reactjs/queries/useGetNonMvxTokensBalances.query.js +1 -1
- package/reactjs/queries/useGetNonMvxTokensBalances.query.mjs +1 -1
- package/reactjs/utils/index.js +1 -1
- package/reactjs/utils/index.mjs +11 -11
- package/BridgeHistory-BU-L_w0l.js +0 -2
- package/useFetchBridgeData-B5xt9GbW.js +0 -2
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as e } from "../../
|
|
1
|
+
import { t as e } from "../../hooks-DMIHvAKb.mjs";
|
|
2
2
|
export { e as useFetchBridgeData };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require("../../
|
|
2
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require("../../hooks-SJPsZfDx.js");exports.useFetchTokens=e.n;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as e } from "../../
|
|
1
|
+
import { n as e } from "../../hooks-DMIHvAKb.mjs";
|
|
2
2
|
export { e as useFetchTokens };
|
|
@@ -1,478 +1,10 @@
|
|
|
1
1
|
import { Provider } from '@reown/appkit-adapter-solana/react';
|
|
2
2
|
import { TransactionInstructionCtorFields } from '@solana/web3.js';
|
|
3
|
+
type EvmSignTransactionFn = (args: Record<string, unknown>) => Promise<`0x${string}`>;
|
|
3
4
|
export declare const useSignTransaction: () => {
|
|
4
5
|
evm: {
|
|
5
|
-
error: null;
|
|
6
|
-
status: "idle";
|
|
7
|
-
reset: () => void;
|
|
8
|
-
context: unknown;
|
|
9
|
-
variables: undefined;
|
|
10
|
-
isError: false;
|
|
11
|
-
isIdle: true;
|
|
12
|
-
isPending: false;
|
|
13
|
-
isSuccess: false;
|
|
14
|
-
failureCount: number;
|
|
15
|
-
failureReason: import('@wagmi/core').SendTransactionErrorType | null;
|
|
16
|
-
isPaused: boolean;
|
|
17
|
-
submittedAt: number;
|
|
18
|
-
mutate: import('wagmi/query').SendTransactionMutate<import('wagmi').Config, unknown>;
|
|
19
|
-
mutateAsync: import('wagmi/query').SendTransactionMutateAsync<import('wagmi').Config, unknown>;
|
|
20
|
-
sendTransaction: import('wagmi/query').SendTransactionMutate<import('wagmi').Config, unknown>;
|
|
21
6
|
hash: `0x${string}` | undefined;
|
|
22
|
-
signTransaction:
|
|
23
|
-
} | {
|
|
24
|
-
error: null;
|
|
25
|
-
status: "pending";
|
|
26
|
-
reset: () => void;
|
|
27
|
-
context: unknown;
|
|
28
|
-
variables: {
|
|
29
|
-
gasPrice?: bigint | undefined;
|
|
30
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
31
|
-
maxFeePerGas?: undefined | undefined;
|
|
32
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
33
|
-
type?: "legacy" | undefined;
|
|
34
|
-
nonce?: number | undefined;
|
|
35
|
-
to?: `0x${string}` | null | undefined;
|
|
36
|
-
value?: bigint | undefined;
|
|
37
|
-
accessList?: undefined;
|
|
38
|
-
authorizationList?: undefined;
|
|
39
|
-
blobVersionedHashes?: undefined;
|
|
40
|
-
data?: `0x${string}` | undefined;
|
|
41
|
-
blobs?: undefined;
|
|
42
|
-
kzg?: undefined;
|
|
43
|
-
sidecars?: undefined;
|
|
44
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
45
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
46
|
-
assertChainId?: boolean | undefined | undefined;
|
|
47
|
-
chainId?: number | undefined;
|
|
48
|
-
connector?: import('wagmi').Connector | undefined;
|
|
49
|
-
gas?: bigint | null | undefined;
|
|
50
|
-
} | {
|
|
51
|
-
gasPrice?: bigint | undefined;
|
|
52
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
53
|
-
maxFeePerGas?: undefined | undefined;
|
|
54
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
55
|
-
type?: "eip2930" | undefined;
|
|
56
|
-
nonce?: number | undefined;
|
|
57
|
-
to?: `0x${string}` | null | undefined;
|
|
58
|
-
value?: bigint | undefined;
|
|
59
|
-
accessList?: import('viem').AccessList | undefined;
|
|
60
|
-
authorizationList?: undefined;
|
|
61
|
-
blobVersionedHashes?: undefined;
|
|
62
|
-
data?: `0x${string}` | undefined;
|
|
63
|
-
blobs?: undefined;
|
|
64
|
-
kzg?: undefined;
|
|
65
|
-
sidecars?: undefined;
|
|
66
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
67
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
68
|
-
assertChainId?: boolean | undefined | undefined;
|
|
69
|
-
chainId?: number | undefined;
|
|
70
|
-
connector?: import('wagmi').Connector | undefined;
|
|
71
|
-
gas?: bigint | null | undefined;
|
|
72
|
-
} | {
|
|
73
|
-
gasPrice?: undefined | undefined;
|
|
74
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
75
|
-
maxFeePerGas?: bigint | undefined;
|
|
76
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
77
|
-
type?: "eip1559" | undefined;
|
|
78
|
-
nonce?: number | undefined;
|
|
79
|
-
to?: `0x${string}` | null | undefined;
|
|
80
|
-
value?: bigint | undefined;
|
|
81
|
-
accessList?: import('viem').AccessList | undefined;
|
|
82
|
-
authorizationList?: undefined;
|
|
83
|
-
blobVersionedHashes?: undefined;
|
|
84
|
-
data?: `0x${string}` | undefined;
|
|
85
|
-
blobs?: undefined;
|
|
86
|
-
kzg?: undefined;
|
|
87
|
-
sidecars?: undefined;
|
|
88
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
89
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
90
|
-
assertChainId?: boolean | undefined | undefined;
|
|
91
|
-
chainId?: number | undefined;
|
|
92
|
-
connector?: import('wagmi').Connector | undefined;
|
|
93
|
-
gas?: bigint | null | undefined;
|
|
94
|
-
} | {
|
|
95
|
-
gasPrice?: undefined | undefined;
|
|
96
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
97
|
-
maxFeePerGas?: bigint | undefined;
|
|
98
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
99
|
-
type?: "eip4844" | undefined;
|
|
100
|
-
nonce?: number | undefined;
|
|
101
|
-
to: `0x${string}` | null;
|
|
102
|
-
value?: bigint | undefined;
|
|
103
|
-
accessList?: import('viem').AccessList | undefined;
|
|
104
|
-
authorizationList?: undefined;
|
|
105
|
-
blobVersionedHashes: readonly import('viem').Hex[];
|
|
106
|
-
data?: `0x${string}` | undefined;
|
|
107
|
-
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
108
|
-
kzg?: undefined;
|
|
109
|
-
sidecars?: readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
110
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
111
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
112
|
-
assertChainId?: boolean | undefined | undefined;
|
|
113
|
-
chainId?: number | undefined;
|
|
114
|
-
connector?: import('wagmi').Connector | undefined;
|
|
115
|
-
gas?: bigint | null | undefined;
|
|
116
|
-
} | {
|
|
117
|
-
gasPrice?: undefined | undefined;
|
|
118
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
119
|
-
maxFeePerGas?: bigint | undefined;
|
|
120
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
121
|
-
type?: "eip4844" | undefined;
|
|
122
|
-
nonce?: number | undefined;
|
|
123
|
-
to: `0x${string}` | null;
|
|
124
|
-
value?: bigint | undefined;
|
|
125
|
-
accessList?: import('viem').AccessList | undefined;
|
|
126
|
-
authorizationList?: undefined;
|
|
127
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
128
|
-
data?: `0x${string}` | undefined;
|
|
129
|
-
blobs: readonly import('viem').Hex[] | readonly import('viem').ByteArray[];
|
|
130
|
-
kzg?: import('viem').Kzg | undefined;
|
|
131
|
-
sidecars?: readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
132
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
133
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
134
|
-
assertChainId?: boolean | undefined | undefined;
|
|
135
|
-
chainId?: number | undefined;
|
|
136
|
-
connector?: import('wagmi').Connector | undefined;
|
|
137
|
-
gas?: bigint | null | undefined;
|
|
138
|
-
} | {
|
|
139
|
-
gasPrice?: undefined | undefined;
|
|
140
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
141
|
-
maxFeePerGas?: bigint | undefined;
|
|
142
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
143
|
-
type?: "eip7702" | undefined;
|
|
144
|
-
nonce?: number | undefined;
|
|
145
|
-
to?: `0x${string}` | null | undefined;
|
|
146
|
-
value?: bigint | undefined;
|
|
147
|
-
accessList?: import('viem').AccessList | undefined;
|
|
148
|
-
authorizationList?: import('viem').AuthorizationList<number, boolean> | undefined;
|
|
149
|
-
blobVersionedHashes?: undefined;
|
|
150
|
-
data?: `0x${string}` | undefined;
|
|
151
|
-
blobs?: undefined;
|
|
152
|
-
kzg?: undefined;
|
|
153
|
-
sidecars?: undefined;
|
|
154
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
155
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
156
|
-
assertChainId?: boolean | undefined | undefined;
|
|
157
|
-
chainId?: number | undefined;
|
|
158
|
-
connector?: import('wagmi').Connector | undefined;
|
|
159
|
-
gas?: bigint | null | undefined;
|
|
160
|
-
};
|
|
161
|
-
isError: false;
|
|
162
|
-
isIdle: false;
|
|
163
|
-
isPending: true;
|
|
164
|
-
isSuccess: false;
|
|
165
|
-
failureCount: number;
|
|
166
|
-
failureReason: import('@wagmi/core').SendTransactionErrorType | null;
|
|
167
|
-
isPaused: boolean;
|
|
168
|
-
submittedAt: number;
|
|
169
|
-
mutate: import('wagmi/query').SendTransactionMutate<import('wagmi').Config, unknown>;
|
|
170
|
-
mutateAsync: import('wagmi/query').SendTransactionMutateAsync<import('wagmi').Config, unknown>;
|
|
171
|
-
sendTransaction: import('wagmi/query').SendTransactionMutate<import('wagmi').Config, unknown>;
|
|
172
|
-
hash: `0x${string}` | undefined;
|
|
173
|
-
signTransaction: import('wagmi/query').SendTransactionMutateAsync<import('wagmi').Config, unknown>;
|
|
174
|
-
} | {
|
|
175
|
-
error: import('@wagmi/core').SendTransactionErrorType;
|
|
176
|
-
status: "error";
|
|
177
|
-
reset: () => void;
|
|
178
|
-
context: unknown;
|
|
179
|
-
variables: {
|
|
180
|
-
gasPrice?: bigint | undefined;
|
|
181
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
182
|
-
maxFeePerGas?: undefined | undefined;
|
|
183
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
184
|
-
type?: "legacy" | undefined;
|
|
185
|
-
nonce?: number | undefined;
|
|
186
|
-
to?: `0x${string}` | null | undefined;
|
|
187
|
-
value?: bigint | undefined;
|
|
188
|
-
accessList?: undefined;
|
|
189
|
-
authorizationList?: undefined;
|
|
190
|
-
blobVersionedHashes?: undefined;
|
|
191
|
-
data?: `0x${string}` | undefined;
|
|
192
|
-
blobs?: undefined;
|
|
193
|
-
kzg?: undefined;
|
|
194
|
-
sidecars?: undefined;
|
|
195
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
196
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
197
|
-
assertChainId?: boolean | undefined | undefined;
|
|
198
|
-
chainId?: number | undefined;
|
|
199
|
-
connector?: import('wagmi').Connector | undefined;
|
|
200
|
-
gas?: bigint | null | undefined;
|
|
201
|
-
} | {
|
|
202
|
-
gasPrice?: bigint | undefined;
|
|
203
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
204
|
-
maxFeePerGas?: undefined | undefined;
|
|
205
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
206
|
-
type?: "eip2930" | undefined;
|
|
207
|
-
nonce?: number | undefined;
|
|
208
|
-
to?: `0x${string}` | null | undefined;
|
|
209
|
-
value?: bigint | undefined;
|
|
210
|
-
accessList?: import('viem').AccessList | undefined;
|
|
211
|
-
authorizationList?: undefined;
|
|
212
|
-
blobVersionedHashes?: undefined;
|
|
213
|
-
data?: `0x${string}` | undefined;
|
|
214
|
-
blobs?: undefined;
|
|
215
|
-
kzg?: undefined;
|
|
216
|
-
sidecars?: undefined;
|
|
217
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
218
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
219
|
-
assertChainId?: boolean | undefined | undefined;
|
|
220
|
-
chainId?: number | undefined;
|
|
221
|
-
connector?: import('wagmi').Connector | undefined;
|
|
222
|
-
gas?: bigint | null | undefined;
|
|
223
|
-
} | {
|
|
224
|
-
gasPrice?: undefined | undefined;
|
|
225
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
226
|
-
maxFeePerGas?: bigint | undefined;
|
|
227
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
228
|
-
type?: "eip1559" | undefined;
|
|
229
|
-
nonce?: number | undefined;
|
|
230
|
-
to?: `0x${string}` | null | undefined;
|
|
231
|
-
value?: bigint | undefined;
|
|
232
|
-
accessList?: import('viem').AccessList | undefined;
|
|
233
|
-
authorizationList?: undefined;
|
|
234
|
-
blobVersionedHashes?: undefined;
|
|
235
|
-
data?: `0x${string}` | undefined;
|
|
236
|
-
blobs?: undefined;
|
|
237
|
-
kzg?: undefined;
|
|
238
|
-
sidecars?: undefined;
|
|
239
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
240
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
241
|
-
assertChainId?: boolean | undefined | undefined;
|
|
242
|
-
chainId?: number | undefined;
|
|
243
|
-
connector?: import('wagmi').Connector | undefined;
|
|
244
|
-
gas?: bigint | null | undefined;
|
|
245
|
-
} | {
|
|
246
|
-
gasPrice?: undefined | undefined;
|
|
247
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
248
|
-
maxFeePerGas?: bigint | undefined;
|
|
249
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
250
|
-
type?: "eip4844" | undefined;
|
|
251
|
-
nonce?: number | undefined;
|
|
252
|
-
to: `0x${string}` | null;
|
|
253
|
-
value?: bigint | undefined;
|
|
254
|
-
accessList?: import('viem').AccessList | undefined;
|
|
255
|
-
authorizationList?: undefined;
|
|
256
|
-
blobVersionedHashes: readonly import('viem').Hex[];
|
|
257
|
-
data?: `0x${string}` | undefined;
|
|
258
|
-
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
259
|
-
kzg?: undefined;
|
|
260
|
-
sidecars?: readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
261
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
262
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
263
|
-
assertChainId?: boolean | undefined | undefined;
|
|
264
|
-
chainId?: number | undefined;
|
|
265
|
-
connector?: import('wagmi').Connector | undefined;
|
|
266
|
-
gas?: bigint | null | undefined;
|
|
267
|
-
} | {
|
|
268
|
-
gasPrice?: undefined | undefined;
|
|
269
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
270
|
-
maxFeePerGas?: bigint | undefined;
|
|
271
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
272
|
-
type?: "eip4844" | undefined;
|
|
273
|
-
nonce?: number | undefined;
|
|
274
|
-
to: `0x${string}` | null;
|
|
275
|
-
value?: bigint | undefined;
|
|
276
|
-
accessList?: import('viem').AccessList | undefined;
|
|
277
|
-
authorizationList?: undefined;
|
|
278
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
279
|
-
data?: `0x${string}` | undefined;
|
|
280
|
-
blobs: readonly import('viem').Hex[] | readonly import('viem').ByteArray[];
|
|
281
|
-
kzg?: import('viem').Kzg | undefined;
|
|
282
|
-
sidecars?: readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
283
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
284
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
285
|
-
assertChainId?: boolean | undefined | undefined;
|
|
286
|
-
chainId?: number | undefined;
|
|
287
|
-
connector?: import('wagmi').Connector | undefined;
|
|
288
|
-
gas?: bigint | null | undefined;
|
|
289
|
-
} | {
|
|
290
|
-
gasPrice?: undefined | undefined;
|
|
291
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
292
|
-
maxFeePerGas?: bigint | undefined;
|
|
293
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
294
|
-
type?: "eip7702" | undefined;
|
|
295
|
-
nonce?: number | undefined;
|
|
296
|
-
to?: `0x${string}` | null | undefined;
|
|
297
|
-
value?: bigint | undefined;
|
|
298
|
-
accessList?: import('viem').AccessList | undefined;
|
|
299
|
-
authorizationList?: import('viem').AuthorizationList<number, boolean> | undefined;
|
|
300
|
-
blobVersionedHashes?: undefined;
|
|
301
|
-
data?: `0x${string}` | undefined;
|
|
302
|
-
blobs?: undefined;
|
|
303
|
-
kzg?: undefined;
|
|
304
|
-
sidecars?: undefined;
|
|
305
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
306
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
307
|
-
assertChainId?: boolean | undefined | undefined;
|
|
308
|
-
chainId?: number | undefined;
|
|
309
|
-
connector?: import('wagmi').Connector | undefined;
|
|
310
|
-
gas?: bigint | null | undefined;
|
|
311
|
-
};
|
|
312
|
-
isError: true;
|
|
313
|
-
isIdle: false;
|
|
314
|
-
isPending: false;
|
|
315
|
-
isSuccess: false;
|
|
316
|
-
failureCount: number;
|
|
317
|
-
failureReason: import('@wagmi/core').SendTransactionErrorType | null;
|
|
318
|
-
isPaused: boolean;
|
|
319
|
-
submittedAt: number;
|
|
320
|
-
mutate: import('wagmi/query').SendTransactionMutate<import('wagmi').Config, unknown>;
|
|
321
|
-
mutateAsync: import('wagmi/query').SendTransactionMutateAsync<import('wagmi').Config, unknown>;
|
|
322
|
-
sendTransaction: import('wagmi/query').SendTransactionMutate<import('wagmi').Config, unknown>;
|
|
323
|
-
hash: `0x${string}` | undefined;
|
|
324
|
-
signTransaction: import('wagmi/query').SendTransactionMutateAsync<import('wagmi').Config, unknown>;
|
|
325
|
-
} | {
|
|
326
|
-
error: null;
|
|
327
|
-
status: "success";
|
|
328
|
-
reset: () => void;
|
|
329
|
-
context: unknown;
|
|
330
|
-
variables: {
|
|
331
|
-
gasPrice?: bigint | undefined;
|
|
332
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
333
|
-
maxFeePerGas?: undefined | undefined;
|
|
334
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
335
|
-
type?: "legacy" | undefined;
|
|
336
|
-
nonce?: number | undefined;
|
|
337
|
-
to?: `0x${string}` | null | undefined;
|
|
338
|
-
value?: bigint | undefined;
|
|
339
|
-
accessList?: undefined;
|
|
340
|
-
authorizationList?: undefined;
|
|
341
|
-
blobVersionedHashes?: undefined;
|
|
342
|
-
data?: `0x${string}` | undefined;
|
|
343
|
-
blobs?: undefined;
|
|
344
|
-
kzg?: undefined;
|
|
345
|
-
sidecars?: undefined;
|
|
346
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
347
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
348
|
-
assertChainId?: boolean | undefined | undefined;
|
|
349
|
-
chainId?: number | undefined;
|
|
350
|
-
connector?: import('wagmi').Connector | undefined;
|
|
351
|
-
gas?: bigint | null | undefined;
|
|
352
|
-
} | {
|
|
353
|
-
gasPrice?: bigint | undefined;
|
|
354
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
355
|
-
maxFeePerGas?: undefined | undefined;
|
|
356
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
357
|
-
type?: "eip2930" | undefined;
|
|
358
|
-
nonce?: number | undefined;
|
|
359
|
-
to?: `0x${string}` | null | undefined;
|
|
360
|
-
value?: bigint | undefined;
|
|
361
|
-
accessList?: import('viem').AccessList | undefined;
|
|
362
|
-
authorizationList?: undefined;
|
|
363
|
-
blobVersionedHashes?: undefined;
|
|
364
|
-
data?: `0x${string}` | undefined;
|
|
365
|
-
blobs?: undefined;
|
|
366
|
-
kzg?: undefined;
|
|
367
|
-
sidecars?: undefined;
|
|
368
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
369
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
370
|
-
assertChainId?: boolean | undefined | undefined;
|
|
371
|
-
chainId?: number | undefined;
|
|
372
|
-
connector?: import('wagmi').Connector | undefined;
|
|
373
|
-
gas?: bigint | null | undefined;
|
|
374
|
-
} | {
|
|
375
|
-
gasPrice?: undefined | undefined;
|
|
376
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
377
|
-
maxFeePerGas?: bigint | undefined;
|
|
378
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
379
|
-
type?: "eip1559" | undefined;
|
|
380
|
-
nonce?: number | undefined;
|
|
381
|
-
to?: `0x${string}` | null | undefined;
|
|
382
|
-
value?: bigint | undefined;
|
|
383
|
-
accessList?: import('viem').AccessList | undefined;
|
|
384
|
-
authorizationList?: undefined;
|
|
385
|
-
blobVersionedHashes?: undefined;
|
|
386
|
-
data?: `0x${string}` | undefined;
|
|
387
|
-
blobs?: undefined;
|
|
388
|
-
kzg?: undefined;
|
|
389
|
-
sidecars?: undefined;
|
|
390
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
391
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
392
|
-
assertChainId?: boolean | undefined | undefined;
|
|
393
|
-
chainId?: number | undefined;
|
|
394
|
-
connector?: import('wagmi').Connector | undefined;
|
|
395
|
-
gas?: bigint | null | undefined;
|
|
396
|
-
} | {
|
|
397
|
-
gasPrice?: undefined | undefined;
|
|
398
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
399
|
-
maxFeePerGas?: bigint | undefined;
|
|
400
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
401
|
-
type?: "eip4844" | undefined;
|
|
402
|
-
nonce?: number | undefined;
|
|
403
|
-
to: `0x${string}` | null;
|
|
404
|
-
value?: bigint | undefined;
|
|
405
|
-
accessList?: import('viem').AccessList | undefined;
|
|
406
|
-
authorizationList?: undefined;
|
|
407
|
-
blobVersionedHashes: readonly import('viem').Hex[];
|
|
408
|
-
data?: `0x${string}` | undefined;
|
|
409
|
-
blobs?: readonly `0x${string}`[] | readonly import('viem').ByteArray[] | undefined;
|
|
410
|
-
kzg?: undefined;
|
|
411
|
-
sidecars?: readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
412
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
413
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
414
|
-
assertChainId?: boolean | undefined | undefined;
|
|
415
|
-
chainId?: number | undefined;
|
|
416
|
-
connector?: import('wagmi').Connector | undefined;
|
|
417
|
-
gas?: bigint | null | undefined;
|
|
418
|
-
} | {
|
|
419
|
-
gasPrice?: undefined | undefined;
|
|
420
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
421
|
-
maxFeePerGas?: bigint | undefined;
|
|
422
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
423
|
-
type?: "eip4844" | undefined;
|
|
424
|
-
nonce?: number | undefined;
|
|
425
|
-
to: `0x${string}` | null;
|
|
426
|
-
value?: bigint | undefined;
|
|
427
|
-
accessList?: import('viem').AccessList | undefined;
|
|
428
|
-
authorizationList?: undefined;
|
|
429
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
430
|
-
data?: `0x${string}` | undefined;
|
|
431
|
-
blobs: readonly import('viem').Hex[] | readonly import('viem').ByteArray[];
|
|
432
|
-
kzg?: import('viem').Kzg | undefined;
|
|
433
|
-
sidecars?: readonly import('viem').BlobSidecar<`0x${string}`>[] | undefined;
|
|
434
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
435
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
436
|
-
assertChainId?: boolean | undefined | undefined;
|
|
437
|
-
chainId?: number | undefined;
|
|
438
|
-
connector?: import('wagmi').Connector | undefined;
|
|
439
|
-
gas?: bigint | null | undefined;
|
|
440
|
-
} | {
|
|
441
|
-
gasPrice?: undefined | undefined;
|
|
442
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
443
|
-
maxFeePerGas?: bigint | undefined;
|
|
444
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
445
|
-
type?: "eip7702" | undefined;
|
|
446
|
-
nonce?: number | undefined;
|
|
447
|
-
to?: `0x${string}` | null | undefined;
|
|
448
|
-
value?: bigint | undefined;
|
|
449
|
-
accessList?: import('viem').AccessList | undefined;
|
|
450
|
-
authorizationList?: import('viem').AuthorizationList<number, boolean> | undefined;
|
|
451
|
-
blobVersionedHashes?: undefined;
|
|
452
|
-
data?: `0x${string}` | undefined;
|
|
453
|
-
blobs?: undefined;
|
|
454
|
-
kzg?: undefined;
|
|
455
|
-
sidecars?: undefined;
|
|
456
|
-
account?: `0x${string}` | import('viem').Account | null | undefined;
|
|
457
|
-
dataSuffix?: `0x${string}` | undefined;
|
|
458
|
-
assertChainId?: boolean | undefined | undefined;
|
|
459
|
-
chainId?: number | undefined;
|
|
460
|
-
connector?: import('wagmi').Connector | undefined;
|
|
461
|
-
gas?: bigint | null | undefined;
|
|
462
|
-
};
|
|
463
|
-
isError: false;
|
|
464
|
-
isIdle: false;
|
|
465
|
-
isPending: false;
|
|
466
|
-
isSuccess: true;
|
|
467
|
-
failureCount: number;
|
|
468
|
-
failureReason: import('@wagmi/core').SendTransactionErrorType | null;
|
|
469
|
-
isPaused: boolean;
|
|
470
|
-
submittedAt: number;
|
|
471
|
-
mutate: import('wagmi/query').SendTransactionMutate<import('wagmi').Config, unknown>;
|
|
472
|
-
mutateAsync: import('wagmi/query').SendTransactionMutateAsync<import('wagmi').Config, unknown>;
|
|
473
|
-
sendTransaction: import('wagmi/query').SendTransactionMutate<import('wagmi').Config, unknown>;
|
|
474
|
-
hash: `0x${string}` | undefined;
|
|
475
|
-
signTransaction: import('wagmi/query').SendTransactionMutateAsync<import('wagmi').Config, unknown>;
|
|
7
|
+
signTransaction: EvmSignTransactionFn;
|
|
476
8
|
};
|
|
477
9
|
solana: {
|
|
478
10
|
signTransaction: ({ feePayer, instructions, recentBlockhash }: {
|
|
@@ -507,3 +39,4 @@ export declare const useSignTransaction: () => {
|
|
|
507
39
|
walletProvider: any;
|
|
508
40
|
};
|
|
509
41
|
};
|
|
42
|
+
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});let e=require("@solana/web3.js"),t=require("@reown/appkit/react"),n=require("wagmi"),r=require("@reown/appkit-adapter-solana/react");var i=()=>{let{data:i,sendTransactionAsync:a
|
|
2
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});let e=require("@solana/web3.js"),t=require("@reown/appkit/react"),n=require("wagmi"),r=require("@reown/appkit-adapter-solana/react");var i=()=>{let{data:i,sendTransactionAsync:a}=(0,n.useSendTransaction)(),{connection:o}=(0,r.useAppKitConnection)(),{walletProvider:s}=(0,t.useAppKitProvider)(`solana`),{walletProvider:c}=(0,t.useAppKitProvider)(`bip122`),{walletProvider:l}=(0,t.useAppKitProvider)(`sui`),{address:u}=(0,t.useAppKitAccount)({namespace:`sui`});return{evm:{hash:i,signTransaction:a},solana:{signTransaction:async({feePayer:t,instructions:n,recentBlockhash:r})=>{for(let i of n){let n=new e.TransactionInstruction({...i}),a=new e.Transaction().add(n);return a.feePayer=new e.PublicKey(t),o&&(a.recentBlockhash=r??(await o.getLatestBlockhash(`confirmed`)).blockhash),await s.signAndSendTransaction(a)}},connection:o,walletProvider:s},bitcoin:{signTransaction:async e=>{if(!c)throw Error(`user is disconnected`);return(await c.signPSBT(e)).psbt},walletProvider:c},sui:{signTransaction:async e=>{let t=e?.transaction??e?.transactionBlock;if(!t)throw Error(`No Sui transaction bytes provided`);if(!e?.address)throw Error(`No Sui sender address`);if(!l)throw Error(`Sui wallet not connected`);let n=32*1024;if(!t||typeof t!=`string`)throw Error(`Invalid Sui transaction: payload must be a non-empty string`);try{if(atob(t).length>n)throw Error(`Sui transaction payload exceeds maximum size of ${n} bytes`)}catch(e){throw e instanceof Error&&e.message.includes(`maximum size`)?e:Error(`Invalid Sui transaction: payload is not valid base64`)}if(e.address&&u&&e.address!==u)throw Error(`Sui address mismatch: expected ${u}, got ${e.address}`);let r=await l.request({method:`sui_signTransaction`,params:{transaction:t,address:e.address}});if(!r)throw Error(`Sui wallet did not return a signature`);return r.signature},walletProvider:l}}};exports.useSignTransaction=i;
|
|
@@ -4,55 +4,54 @@ import { useSendTransaction as a } from "wagmi";
|
|
|
4
4
|
import { useAppKitConnection as o } from "@reown/appkit-adapter-solana/react";
|
|
5
5
|
//#region src/reactjs/hooks/useSignTransaction.ts
|
|
6
6
|
var s = () => {
|
|
7
|
-
let { data: s, sendTransactionAsync: c
|
|
8
|
-
for (let o of i) {
|
|
9
|
-
let i = new n({ ...o }), s = new t().add(i);
|
|
10
|
-
return s.feePayer = new e(r), u && (s.recentBlockhash = a ?? (await u.getLatestBlockhash("confirmed")).blockhash), await d.signAndSendTransaction(s);
|
|
11
|
-
}
|
|
12
|
-
}, g = async (e) => {
|
|
13
|
-
if (!f) throw Error("user is disconnected");
|
|
14
|
-
return (await f.signPSBT(e)).psbt;
|
|
15
|
-
}, _ = async (e) => {
|
|
16
|
-
let t = e?.transaction ?? e?.transactionBlock;
|
|
17
|
-
if (!t) throw Error("No Sui transaction bytes provided");
|
|
18
|
-
if (!e?.address) throw Error("No Sui sender address");
|
|
19
|
-
if (!p) throw Error("Sui wallet not connected");
|
|
20
|
-
let n = 32 * 1024;
|
|
21
|
-
if (!t || typeof t != "string") throw Error("Invalid Sui transaction: payload must be a non-empty string");
|
|
22
|
-
try {
|
|
23
|
-
if (atob(t).length > n) throw Error(`Sui transaction payload exceeds maximum size of ${n} bytes`);
|
|
24
|
-
} catch (e) {
|
|
25
|
-
throw e instanceof Error && e.message.includes("maximum size") ? e : Error("Invalid Sui transaction: payload is not valid base64");
|
|
26
|
-
}
|
|
27
|
-
if (e.address && m && e.address !== m) throw Error(`Sui address mismatch: expected ${m}, got ${e.address}`);
|
|
28
|
-
let r = await p.request({
|
|
29
|
-
method: "sui_signTransaction",
|
|
30
|
-
params: {
|
|
31
|
-
transaction: t,
|
|
32
|
-
address: e.address
|
|
33
|
-
}
|
|
34
|
-
});
|
|
35
|
-
if (!r) throw Error("Sui wallet did not return a signature");
|
|
36
|
-
return r.signature;
|
|
37
|
-
};
|
|
7
|
+
let { data: s, sendTransactionAsync: c } = a(), { connection: l } = o(), { walletProvider: u } = i("solana"), { walletProvider: d } = i("bip122"), { walletProvider: f } = i("sui"), { address: p } = r({ namespace: "sui" });
|
|
38
8
|
return {
|
|
39
9
|
evm: {
|
|
40
10
|
hash: s,
|
|
41
|
-
signTransaction: c
|
|
42
|
-
...l
|
|
11
|
+
signTransaction: c
|
|
43
12
|
},
|
|
44
13
|
solana: {
|
|
45
|
-
signTransaction:
|
|
46
|
-
|
|
47
|
-
|
|
14
|
+
signTransaction: async ({ feePayer: r, instructions: i, recentBlockhash: a }) => {
|
|
15
|
+
for (let o of i) {
|
|
16
|
+
let i = new n({ ...o }), s = new t().add(i);
|
|
17
|
+
return s.feePayer = new e(r), l && (s.recentBlockhash = a ?? (await l.getLatestBlockhash("confirmed")).blockhash), await u.signAndSendTransaction(s);
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
connection: l,
|
|
21
|
+
walletProvider: u
|
|
48
22
|
},
|
|
49
23
|
bitcoin: {
|
|
50
|
-
signTransaction:
|
|
51
|
-
|
|
24
|
+
signTransaction: async (e) => {
|
|
25
|
+
if (!d) throw Error("user is disconnected");
|
|
26
|
+
return (await d.signPSBT(e)).psbt;
|
|
27
|
+
},
|
|
28
|
+
walletProvider: d
|
|
52
29
|
},
|
|
53
30
|
sui: {
|
|
54
|
-
signTransaction:
|
|
55
|
-
|
|
31
|
+
signTransaction: async (e) => {
|
|
32
|
+
let t = e?.transaction ?? e?.transactionBlock;
|
|
33
|
+
if (!t) throw Error("No Sui transaction bytes provided");
|
|
34
|
+
if (!e?.address) throw Error("No Sui sender address");
|
|
35
|
+
if (!f) throw Error("Sui wallet not connected");
|
|
36
|
+
let n = 32 * 1024;
|
|
37
|
+
if (!t || typeof t != "string") throw Error("Invalid Sui transaction: payload must be a non-empty string");
|
|
38
|
+
try {
|
|
39
|
+
if (atob(t).length > n) throw Error(`Sui transaction payload exceeds maximum size of ${n} bytes`);
|
|
40
|
+
} catch (e) {
|
|
41
|
+
throw e instanceof Error && e.message.includes("maximum size") ? e : Error("Invalid Sui transaction: payload is not valid base64");
|
|
42
|
+
}
|
|
43
|
+
if (e.address && p && e.address !== p) throw Error(`Sui address mismatch: expected ${p}, got ${e.address}`);
|
|
44
|
+
let r = await f.request({
|
|
45
|
+
method: "sui_signTransaction",
|
|
46
|
+
params: {
|
|
47
|
+
transaction: t,
|
|
48
|
+
address: e.address
|
|
49
|
+
}
|
|
50
|
+
});
|
|
51
|
+
if (!r) throw Error("Sui wallet did not return a signature");
|
|
52
|
+
return r.signature;
|
|
53
|
+
},
|
|
54
|
+
walletProvider: f
|
|
56
55
|
}
|
|
57
56
|
};
|
|
58
57
|
};
|
package/reactjs/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require("../chains-Bmeag21l.js"),t=require("./constants/index.js"),n=require("./utils/mxClsx.js"),r=require("./components/TrimAddress/TrimAddress.js"),i=require("./components/AccountAddress/AccountAddress.js"),a=require("./components/base/MxButton/MxButton.js"),o=require("./components/base/MxCard/MxCard.js"),s=require("./components/base/MxLink/MxLink.js"),ee=require("./hooks/useDebounce.js"),te=require("./components/base/MxSearch/MxSearch.js"),c=require("./components/base/MxSlideover/MxSlideover.js"),l=require("./components/base/MxTooltip/MxTooltip.js"),u=require("./components/AmountCard/AmountCard.js"),d=require("./components/AmountInput/AmountInput.js"),f=require("./utils/
|
|
2
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require("../chains-Bmeag21l.js"),t=require("./constants/index.js"),n=require("./utils/mxClsx.js"),r=require("./components/TrimAddress/TrimAddress.js"),i=require("./components/AccountAddress/AccountAddress.js"),a=require("./components/base/MxButton/MxButton.js"),o=require("./components/base/MxCard/MxCard.js"),s=require("./components/base/MxLink/MxLink.js"),ee=require("./hooks/useDebounce.js"),te=require("./components/base/MxSearch/MxSearch.js"),c=require("./components/base/MxSlideover/MxSlideover.js"),l=require("./components/base/MxTooltip/MxTooltip.js"),u=require("./components/AmountCard/AmountCard.js"),d=require("./components/AmountInput/AmountInput.js"),f=require("./utils/testNumber.js"),p=require("./utils/hasEnoughFunds.js"),m=require("./hooks/validation/useTestHasEnoughFunds.js"),h=require("./hooks/useAccount.js"),g=require("./hooks/validation/useTestIsConnected.js"),_=require("./hooks/validation/useAmountSchema.js"),v=require("./hooks/validation/useSecondAmountSchema.js"),y=require("./context/Web3AppProvider.js"),b=require("./context/useWeb3App.js"),x=require("./hooks/useBalances.js"),S=require("./hooks/useBridgeFormik.js"),C=require("./hooks/useBridgeApiChainId.js"),w=require("./queries/useGetAllTokens.query.js"),T=require("./queries/useGetMvxTokensBalances.query.js"),E=require("../hooks-SJPsZfDx.js"),D=require("./queries/useGetChains.query.js"),O=require("./hooks/useGetChainId.js"),k=require("./hooks/useResolveTokenChain.js"),A=require("./hooks/useSendTransactions.js"),j=require("./hooks/useSignTransaction.js"),M=require("./hooks/useSuiConnect.js"),N=require("./utils/delay.js"),P=require("./utils/isStringFloat.js"),F=require("./utils/roundAmount.js"),ne=require("./utils/formatAmount.js"),I=require("./utils/removeCommas.js"),L=require("./utils/getCleanStringAmount.js"),R=require("./utils/getCompletePathname.js"),z=require("./utils/getInitialTokens.js"),B=require("./utils/pipe.js");require("./utils/index.js");const V=require("./queries/useGetHistory.query.js"),H=require("./queries/useGetRate.mutation.js"),U=require("../BridgeHistory-0NVr8Uxp.js"),W=require("./components/Connect/CustomConnectButton.js"),G=require("./components/Connect/BridgeConnectButton.js"),K=require("./components/Connect/MvxConnectButton.js"),q=require("./components/Connect/SwitchChainButton.js"),J=require("./components/CopyButton/CopyButton.js"),Y=require("./components/Connect/BridgeAccountDisplay.js"),X=require("./components/Connect/MvxAccountDisplay.js"),Z=require("./components/Connect/ChainSelectConnect.js"),re=require("./components/SmallLoader/SmallLoader.js"),ie=require("./components/DisplayAmount/DisplayAmount.js"),ae=require("./components/TokenSelector/TokenSelector.js"),oe=require("./components/BridgeForm/BridgeForm.js"),se=require("./components/TransactionToast/TransactionToastContainer.js"),ce=require("./components/TransactionToast/TransactionToast.js"),le=require("./components/Error/Error.js");require("./components/index.js");const ue=require("./context/queryClient.js"),Q=require("./init/init.js");require("./init/index.js"),require("./queries/index.js"),require("./reexports.js");let $=require("@reown/appkit/react"),de=require("wagmi");exports.ALL_NETWORK_ID=e.t,exports.AccountAddress=i.AccountAddress,exports.AmountCard=u.AmountCard,exports.AmountInput=d.AmountInput,exports.BridgeAccountDisplay=Y.BridgeAccountDisplay,exports.BridgeConnectButton=G.BridgeConnectButton,exports.BridgeForm=oe.BridgeForm,exports.BridgeFormikValuesEnum=S.BridgeFormikValuesEnum,exports.BridgeHistory=U.t,exports.ChainName=e.n,exports.ChainSelectConnect=Z.ChainSelectConnect,exports.CopyButton=J.CopyButton,exports.CustomConnectButton=W.CustomConnectButton,exports.DisplayAmount=ie.DisplayAmount,exports.Error=le.Error,exports.MvxAccountDisplay=X.MvxAccountDisplay,exports.MvxConnectButton=K.MvxConnectButton,exports.MxButton=a.MxButton,exports.MxCard=o.MxCard,exports.MxLink=s.MxLink,exports.MxSearch=te.MxSearch,exports.MxSlideover=c.MxSlideover,exports.MxTooltip=l.MxTooltip,exports.SmallLoader=re.SmallLoader,exports.SuiMethods=Q.SuiMethods,exports.SwitchChainButton=q.SwitchChainButton,exports.TokenSelector=ae.TokenSelector,exports.TransactionToast=ce.TransactionToast,exports.TransactionToastContainer=se.TransactionToastContainer,exports.TrimAddress=r.TrimAddress,exports.Web3AppContext=y.Web3AppContext,exports.Web3AppProvider=y.Web3AppProvider,exports.chainIdentifier=e.r,exports.delay=N.delay,exports.formatAmount=ne.formatAmount,exports.getCleanStringAmount=L.getCleanStringAmount,exports.getCompletePathname=R.getCompletePathname,exports.getInitialTokens=z.getInitialTokens,exports.getQueryClient=ue.getQueryClient,exports.hasEnoughFunds=p.hasEnoughFunds,exports.init=Q.init,exports.isStringFloat=P.isStringFloat,exports.mxClsx=n.mxClsx,exports.pipe=B.pipe,exports.removeCommas=I.removeCommas,exports.roundAmount=F.roundAmount,exports.safeDocument=t.safeDocument,exports.safeWindow=t.safeWindow,exports.testNumber=f.testNumber,exports.useAccount=h.useAccount,exports.useAmountSchema=_.useAmountSchema,exports.useAppKit=$.useAppKit,exports.useAppKitAccount=$.useAppKitAccount,exports.useAppKitEvents=$.useAppKitEvents,exports.useAppKitNetwork=$.useAppKitNetwork,exports.useAppKitNetworkCore=$.useAppKitNetworkCore,exports.useAppKitProvider=$.useAppKitProvider,exports.useAppKitState=$.useAppKitState,exports.useAppKitTheme=$.useAppKitTheme,exports.useBalances=x.useBalances,exports.useBridgeApiChainId=C.useBridgeApiChainId,exports.useBridgeFormik=S.useBridgeFormik,exports.useDebounce=ee.useDebounce,exports.useDisconnect=$.useDisconnect,exports.useFetchBridgeData=E.t,exports.useFetchTokens=E.n,exports.useGetAllTokensQuery=w.useGetAllTokensQuery,exports.useGetChainId=O.useGetChainId,exports.useGetChainsQuery=D.useGetChainsQuery,exports.useGetHistoryQuery=V.useGetHistoryQuery,exports.useGetMvxTokensBalancesQuery=T.useGetMvxTokensBalancesQuery,exports.useGetNonMvxTokensBalancesQuery=E.r,exports.useGetRateMutation=H.useGetRateMutation,exports.useInvalidateEvmTokensBalances=E.i,exports.useInvalidateHistoryQuery=V.useInvalidateHistoryQuery,exports.useInvalidateMvxTokensBalancesQuery=T.useInvalidateMvxTokensBalancesQuery,exports.useResolveTokenChain=k.useResolveTokenChain,exports.useSecondAmountSchema=v.useSecondAmountSchema,exports.useSendTransactions=A.useSendTransactions,exports.useSignTransaction=j.useSignTransaction,exports.useSuiConnect=M.useSuiConnect,exports.useTestHasEnoughFunds=m.useTestHasEnoughFunds,exports.useTestIsConnected=g.useTestIsConnected,exports.useWaitForTransactionReceipt=de.useWaitForTransactionReceipt,exports.useWalletInfo=$.useWalletInfo,exports.useWeb3App=b.useWeb3App;
|