@0xsquid/react-hooks 6.3.9-beta.8 → 6.3.9-evmos-beta.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/dist/core/abis/ics20.json +534 -0
- package/dist/core/constants.d.ts +1 -7
- package/dist/core/constants.js +1 -26
- package/dist/core/constants.js.map +1 -1
- package/dist/core/externalLinks.d.ts +1 -1
- package/dist/core/externalLinks.js +1 -1
- package/dist/core/externalLinks.js.map +1 -1
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.js +1 -1
- package/dist/core/index.js.map +1 -1
- package/dist/core/providers/CosmosProvider.d.ts +1 -1
- package/dist/core/providers/CosmosProvider.js.map +1 -1
- package/dist/core/queries/queries-keys.d.ts +4 -4
- package/dist/core/types/error.d.ts +1 -0
- package/dist/core/types/error.js.map +1 -1
- package/dist/core/types/transaction.d.ts +1 -0
- package/dist/core/types/wallet.d.ts +3 -21
- package/dist/core/types/wallet.js +0 -2
- package/dist/core/types/wallet.js.map +1 -1
- package/dist/core/wagmiConfig.js +32 -17
- package/dist/core/wagmiConfig.js.map +1 -1
- package/dist/core/wallets.js +0 -39
- package/dist/core/wallets.js.map +1 -1
- package/dist/hooks/chains/useSquidChains.js +1 -1
- package/dist/hooks/chains/useSquidChains.js.map +1 -1
- package/dist/hooks/cosmos/useCosmos.js +15 -5
- package/dist/hooks/cosmos/useCosmos.js.map +1 -1
- package/dist/hooks/evmos/useIcs20Allowance.d.ts +142 -0
- package/dist/hooks/evmos/useIcs20Allowance.js +34 -0
- package/dist/hooks/evmos/useIcs20Allowance.js.map +1 -0
- package/dist/hooks/index.d.ts +0 -1
- package/dist/hooks/index.js +0 -1
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/squid/useSquid.js +1 -1
- package/dist/hooks/squid/useSquid.js.map +1 -1
- package/dist/hooks/store/useWalletStore.js +6 -5
- package/dist/hooks/store/useWalletStore.js.map +1 -1
- package/dist/hooks/swap/useSwap.js +3 -9
- package/dist/hooks/swap/useSwap.js.map +1 -1
- package/dist/hooks/tokens/useAllConnectedWalletBalances.js +1 -12
- package/dist/hooks/tokens/useAllConnectedWalletBalances.js.map +1 -1
- package/dist/hooks/tokens/useAllTokensWithBalanceForChainType.d.ts +5 -4
- package/dist/hooks/tokens/useAllTokensWithBalanceForChainType.js +16 -30
- package/dist/hooks/tokens/useAllTokensWithBalanceForChainType.js.map +1 -1
- package/dist/hooks/tokens/useBalance.d.ts +246 -18
- package/dist/hooks/tokens/useBalance.js +26 -63
- package/dist/hooks/tokens/useBalance.js.map +1 -1
- package/dist/hooks/tokens/useMultiChainBalance.d.ts +1 -1
- package/dist/hooks/tokens/useMultiChainBalance.js +19 -18
- package/dist/hooks/tokens/useMultiChainBalance.js.map +1 -1
- package/dist/hooks/tokens/useNativeBalance.d.ts +18 -16
- package/dist/hooks/tokens/useNativeBalance.js +52 -121
- package/dist/hooks/tokens/useNativeBalance.js.map +1 -1
- package/dist/hooks/tokens/useNativeTokenForChain.js +4 -6
- package/dist/hooks/tokens/useNativeTokenForChain.js.map +1 -1
- package/dist/hooks/tokens/useSquidTokens.d.ts +11 -2
- package/dist/hooks/tokens/useSquidTokens.js +16 -10
- package/dist/hooks/tokens/useSquidTokens.js.map +1 -1
- package/dist/hooks/transaction/useApproval.js +75 -16
- package/dist/hooks/transaction/useApproval.js.map +1 -1
- package/dist/hooks/transaction/useEstimate.js +1 -1
- package/dist/hooks/transaction/useEstimate.js.map +1 -1
- package/dist/hooks/transaction/useExecuteTransaction.d.ts +2 -0
- package/dist/hooks/transaction/useExecuteTransaction.js +53 -72
- package/dist/hooks/transaction/useExecuteTransaction.js.map +1 -1
- package/dist/hooks/transaction/useGetRoute.d.ts +8 -7
- package/dist/hooks/transaction/useGetRoute.js +15 -219
- package/dist/hooks/transaction/useGetRoute.js.map +1 -1
- package/dist/hooks/transaction/useSingleTransaction.js +1 -1
- package/dist/hooks/transaction/useSingleTransaction.js.map +1 -1
- package/dist/hooks/user/useUserParams.js +1 -1
- package/dist/hooks/user/useUserParams.js.map +1 -1
- package/dist/hooks/wallet/useIntegratorContext.js +1 -1
- package/dist/hooks/wallet/useIntegratorContext.js.map +1 -1
- package/dist/hooks/wallet/useMultiChainWallet.d.ts +4 -10
- package/dist/hooks/wallet/useMultiChainWallet.js +55 -43
- package/dist/hooks/wallet/useMultiChainWallet.js.map +1 -1
- package/dist/hooks/wallet/useSigner.d.ts +2 -2
- package/dist/hooks/wallet/useSigner.js +3 -34
- package/dist/hooks/wallet/useSigner.js.map +1 -1
- package/dist/hooks/wallet/useWallet.d.ts +1 -1
- package/dist/hooks/wallet/useWallet.js +5 -14
- package/dist/hooks/wallet/useWallet.js.map +1 -1
- package/dist/provider/index.d.ts +1 -1
- package/dist/provider/index.js +7 -7
- package/dist/provider/index.js.map +1 -1
- package/dist/services/external/rpcService.d.ts +1 -4
- package/dist/services/external/rpcService.js +8 -96
- package/dist/services/external/rpcService.js.map +1 -1
- package/dist/services/index.d.ts +0 -1
- package/dist/services/index.js +0 -1
- package/dist/services/index.js.map +1 -1
- package/dist/services/internal/assetsService.d.ts +11 -4
- package/dist/services/internal/assetsService.js +90 -136
- package/dist/services/internal/assetsService.js.map +1 -1
- package/dist/services/internal/cosmosService.d.ts +13 -3
- package/dist/services/internal/cosmosService.js +1 -1
- package/dist/services/internal/cosmosService.js.map +1 -1
- package/dist/services/internal/errorService.d.ts +5 -1
- package/dist/services/internal/errorService.js +35 -21
- package/dist/services/internal/errorService.js.map +1 -1
- package/dist/services/internal/evmService.d.ts +7 -2
- package/dist/services/internal/evmService.js +6 -0
- package/dist/services/internal/evmService.js.map +1 -1
- package/dist/services/internal/solanaService.d.ts +5 -2
- package/dist/services/internal/solanaService.js.map +1 -1
- package/dist/services/internal/transactionService.d.ts +2 -1
- package/dist/services/internal/transactionService.js +1 -10
- package/dist/services/internal/transactionService.js.map +1 -1
- package/dist/services/internal/walletService.d.ts +11 -21
- package/dist/services/internal/walletService.js +17 -44
- package/dist/services/internal/walletService.js.map +1 -1
- package/package.json +7 -8
- package/dist/core/connectors/xrp/CrossMark.d.ts +0 -16
- package/dist/core/connectors/xrp/CrossMark.js +0 -30
- package/dist/core/connectors/xrp/CrossMark.js.map +0 -1
- package/dist/core/connectors/xrp/XrpMetamaskSnap.d.ts +0 -40
- package/dist/core/connectors/xrp/XrpMetamaskSnap.js +0 -204
- package/dist/core/connectors/xrp/XrpMetamaskSnap.js.map +0 -1
- package/dist/core/types/xrp.d.ts +0 -23
- package/dist/core/types/xrp.js +0 -2
- package/dist/core/types/xrp.js.map +0 -1
- package/dist/core/xrp/config.d.ts +0 -21
- package/dist/core/xrp/config.js +0 -53
- package/dist/core/xrp/config.js.map +0 -1
- package/dist/hooks/xrp/useXrp.d.ts +0 -7
- package/dist/hooks/xrp/useXrp.js +0 -22
- package/dist/hooks/xrp/useXrp.js.map +0 -1
- package/dist/hooks/xrp/useXrpPrice.d.ts +0 -1
- package/dist/hooks/xrp/useXrpPrice.js +0 -12
- package/dist/hooks/xrp/useXrpPrice.js.map +0 -1
- package/dist/services/internal/xrpService.d.ts +0 -27
- package/dist/services/internal/xrpService.js +0 -86
- package/dist/services/internal/xrpService.js.map +0 -1
- package/dist/services/internal/xrpStatusService.d.ts +0 -4
- package/dist/services/internal/xrpStatusService.js +0 -100
- package/dist/services/internal/xrpStatusService.js.map +0 -1
|
@@ -0,0 +1,534 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"anonymous": false,
|
|
4
|
+
"inputs": [
|
|
5
|
+
{
|
|
6
|
+
"indexed": true,
|
|
7
|
+
"internalType": "address",
|
|
8
|
+
"name": "sender",
|
|
9
|
+
"type": "address"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"indexed": true,
|
|
13
|
+
"internalType": "string",
|
|
14
|
+
"name": "receiver",
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"indexed": false,
|
|
19
|
+
"internalType": "string",
|
|
20
|
+
"name": "sourcePort",
|
|
21
|
+
"type": "string"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"indexed": false,
|
|
25
|
+
"internalType": "string",
|
|
26
|
+
"name": "sourceChannel",
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"indexed": false,
|
|
31
|
+
"internalType": "string",
|
|
32
|
+
"name": "denom",
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"indexed": false,
|
|
37
|
+
"internalType": "uint256",
|
|
38
|
+
"name": "amount",
|
|
39
|
+
"type": "uint256"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"indexed": false,
|
|
43
|
+
"internalType": "string",
|
|
44
|
+
"name": "memo",
|
|
45
|
+
"type": "string"
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"name": "IBCTransfer",
|
|
49
|
+
"type": "event"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"anonymous": false,
|
|
53
|
+
"inputs": [
|
|
54
|
+
{
|
|
55
|
+
"indexed": true,
|
|
56
|
+
"internalType": "address",
|
|
57
|
+
"name": "grantee",
|
|
58
|
+
"type": "address"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"indexed": true,
|
|
62
|
+
"internalType": "address",
|
|
63
|
+
"name": "granter",
|
|
64
|
+
"type": "address"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"components": [
|
|
68
|
+
{
|
|
69
|
+
"internalType": "string",
|
|
70
|
+
"name": "sourcePort",
|
|
71
|
+
"type": "string"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"internalType": "string",
|
|
75
|
+
"name": "sourceChannel",
|
|
76
|
+
"type": "string"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"components": [
|
|
80
|
+
{
|
|
81
|
+
"internalType": "string",
|
|
82
|
+
"name": "denom",
|
|
83
|
+
"type": "string"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"internalType": "uint256",
|
|
87
|
+
"name": "amount",
|
|
88
|
+
"type": "uint256"
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"internalType": "struct Coin[]",
|
|
92
|
+
"name": "spendLimit",
|
|
93
|
+
"type": "tuple[]"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"internalType": "string[]",
|
|
97
|
+
"name": "allowList",
|
|
98
|
+
"type": "string[]"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"internalType": "string[]",
|
|
102
|
+
"name": "allowedPacketData",
|
|
103
|
+
"type": "string[]"
|
|
104
|
+
}
|
|
105
|
+
],
|
|
106
|
+
"indexed": false,
|
|
107
|
+
"internalType": "struct ICS20Allocation[]",
|
|
108
|
+
"name": "allocations",
|
|
109
|
+
"type": "tuple[]"
|
|
110
|
+
}
|
|
111
|
+
],
|
|
112
|
+
"name": "IBCTransferAuthorization",
|
|
113
|
+
"type": "event"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"inputs": [
|
|
117
|
+
{
|
|
118
|
+
"internalType": "address",
|
|
119
|
+
"name": "grantee",
|
|
120
|
+
"type": "address"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"internalType": "address",
|
|
124
|
+
"name": "granter",
|
|
125
|
+
"type": "address"
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"name": "allowance",
|
|
129
|
+
"outputs": [
|
|
130
|
+
{
|
|
131
|
+
"components": [
|
|
132
|
+
{
|
|
133
|
+
"internalType": "string",
|
|
134
|
+
"name": "sourcePort",
|
|
135
|
+
"type": "string"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"internalType": "string",
|
|
139
|
+
"name": "sourceChannel",
|
|
140
|
+
"type": "string"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"components": [
|
|
144
|
+
{
|
|
145
|
+
"internalType": "string",
|
|
146
|
+
"name": "denom",
|
|
147
|
+
"type": "string"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"internalType": "uint256",
|
|
151
|
+
"name": "amount",
|
|
152
|
+
"type": "uint256"
|
|
153
|
+
}
|
|
154
|
+
],
|
|
155
|
+
"internalType": "struct Coin[]",
|
|
156
|
+
"name": "spendLimit",
|
|
157
|
+
"type": "tuple[]"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"internalType": "string[]",
|
|
161
|
+
"name": "allowList",
|
|
162
|
+
"type": "string[]"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"internalType": "string[]",
|
|
166
|
+
"name": "allowedPacketData",
|
|
167
|
+
"type": "string[]"
|
|
168
|
+
}
|
|
169
|
+
],
|
|
170
|
+
"internalType": "struct ICS20Allocation[]",
|
|
171
|
+
"name": "allocations",
|
|
172
|
+
"type": "tuple[]"
|
|
173
|
+
}
|
|
174
|
+
],
|
|
175
|
+
"stateMutability": "view",
|
|
176
|
+
"type": "function"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"inputs": [
|
|
180
|
+
{
|
|
181
|
+
"internalType": "address",
|
|
182
|
+
"name": "grantee",
|
|
183
|
+
"type": "address"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"components": [
|
|
187
|
+
{
|
|
188
|
+
"internalType": "string",
|
|
189
|
+
"name": "sourcePort",
|
|
190
|
+
"type": "string"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"internalType": "string",
|
|
194
|
+
"name": "sourceChannel",
|
|
195
|
+
"type": "string"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"components": [
|
|
199
|
+
{
|
|
200
|
+
"internalType": "string",
|
|
201
|
+
"name": "denom",
|
|
202
|
+
"type": "string"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"internalType": "uint256",
|
|
206
|
+
"name": "amount",
|
|
207
|
+
"type": "uint256"
|
|
208
|
+
}
|
|
209
|
+
],
|
|
210
|
+
"internalType": "struct Coin[]",
|
|
211
|
+
"name": "spendLimit",
|
|
212
|
+
"type": "tuple[]"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"internalType": "string[]",
|
|
216
|
+
"name": "allowList",
|
|
217
|
+
"type": "string[]"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"internalType": "string[]",
|
|
221
|
+
"name": "allowedPacketData",
|
|
222
|
+
"type": "string[]"
|
|
223
|
+
}
|
|
224
|
+
],
|
|
225
|
+
"internalType": "struct ICS20Allocation[]",
|
|
226
|
+
"name": "allocations",
|
|
227
|
+
"type": "tuple[]"
|
|
228
|
+
}
|
|
229
|
+
],
|
|
230
|
+
"name": "approve",
|
|
231
|
+
"outputs": [
|
|
232
|
+
{
|
|
233
|
+
"internalType": "bool",
|
|
234
|
+
"name": "approved",
|
|
235
|
+
"type": "bool"
|
|
236
|
+
}
|
|
237
|
+
],
|
|
238
|
+
"stateMutability": "nonpayable",
|
|
239
|
+
"type": "function"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"inputs": [
|
|
243
|
+
{
|
|
244
|
+
"internalType": "address",
|
|
245
|
+
"name": "grantee",
|
|
246
|
+
"type": "address"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"internalType": "string",
|
|
250
|
+
"name": "sourcePort",
|
|
251
|
+
"type": "string"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"internalType": "string",
|
|
255
|
+
"name": "sourceChannel",
|
|
256
|
+
"type": "string"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"internalType": "string",
|
|
260
|
+
"name": "denom",
|
|
261
|
+
"type": "string"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"internalType": "uint256",
|
|
265
|
+
"name": "amount",
|
|
266
|
+
"type": "uint256"
|
|
267
|
+
}
|
|
268
|
+
],
|
|
269
|
+
"name": "decreaseAllowance",
|
|
270
|
+
"outputs": [
|
|
271
|
+
{
|
|
272
|
+
"internalType": "bool",
|
|
273
|
+
"name": "approved",
|
|
274
|
+
"type": "bool"
|
|
275
|
+
}
|
|
276
|
+
],
|
|
277
|
+
"stateMutability": "nonpayable",
|
|
278
|
+
"type": "function"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"inputs": [
|
|
282
|
+
{
|
|
283
|
+
"internalType": "string",
|
|
284
|
+
"name": "trace",
|
|
285
|
+
"type": "string"
|
|
286
|
+
}
|
|
287
|
+
],
|
|
288
|
+
"name": "denomHash",
|
|
289
|
+
"outputs": [
|
|
290
|
+
{
|
|
291
|
+
"internalType": "string",
|
|
292
|
+
"name": "hash",
|
|
293
|
+
"type": "string"
|
|
294
|
+
}
|
|
295
|
+
],
|
|
296
|
+
"stateMutability": "view",
|
|
297
|
+
"type": "function"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"inputs": [
|
|
301
|
+
{
|
|
302
|
+
"internalType": "string",
|
|
303
|
+
"name": "hash",
|
|
304
|
+
"type": "string"
|
|
305
|
+
}
|
|
306
|
+
],
|
|
307
|
+
"name": "denomTrace",
|
|
308
|
+
"outputs": [
|
|
309
|
+
{
|
|
310
|
+
"components": [
|
|
311
|
+
{
|
|
312
|
+
"internalType": "string",
|
|
313
|
+
"name": "path",
|
|
314
|
+
"type": "string"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"internalType": "string",
|
|
318
|
+
"name": "baseDenom",
|
|
319
|
+
"type": "string"
|
|
320
|
+
}
|
|
321
|
+
],
|
|
322
|
+
"internalType": "struct DenomTrace",
|
|
323
|
+
"name": "denomTrace",
|
|
324
|
+
"type": "tuple"
|
|
325
|
+
}
|
|
326
|
+
],
|
|
327
|
+
"stateMutability": "view",
|
|
328
|
+
"type": "function"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"inputs": [
|
|
332
|
+
{
|
|
333
|
+
"components": [
|
|
334
|
+
{
|
|
335
|
+
"internalType": "bytes",
|
|
336
|
+
"name": "key",
|
|
337
|
+
"type": "bytes"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"internalType": "uint64",
|
|
341
|
+
"name": "offset",
|
|
342
|
+
"type": "uint64"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"internalType": "uint64",
|
|
346
|
+
"name": "limit",
|
|
347
|
+
"type": "uint64"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"internalType": "bool",
|
|
351
|
+
"name": "countTotal",
|
|
352
|
+
"type": "bool"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"internalType": "bool",
|
|
356
|
+
"name": "reverse",
|
|
357
|
+
"type": "bool"
|
|
358
|
+
}
|
|
359
|
+
],
|
|
360
|
+
"internalType": "struct PageRequest",
|
|
361
|
+
"name": "pageRequest",
|
|
362
|
+
"type": "tuple"
|
|
363
|
+
}
|
|
364
|
+
],
|
|
365
|
+
"name": "denomTraces",
|
|
366
|
+
"outputs": [
|
|
367
|
+
{
|
|
368
|
+
"components": [
|
|
369
|
+
{
|
|
370
|
+
"internalType": "string",
|
|
371
|
+
"name": "path",
|
|
372
|
+
"type": "string"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"internalType": "string",
|
|
376
|
+
"name": "baseDenom",
|
|
377
|
+
"type": "string"
|
|
378
|
+
}
|
|
379
|
+
],
|
|
380
|
+
"internalType": "struct DenomTrace[]",
|
|
381
|
+
"name": "denomTraces",
|
|
382
|
+
"type": "tuple[]"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"components": [
|
|
386
|
+
{
|
|
387
|
+
"internalType": "bytes",
|
|
388
|
+
"name": "nextKey",
|
|
389
|
+
"type": "bytes"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"internalType": "uint64",
|
|
393
|
+
"name": "total",
|
|
394
|
+
"type": "uint64"
|
|
395
|
+
}
|
|
396
|
+
],
|
|
397
|
+
"internalType": "struct PageResponse",
|
|
398
|
+
"name": "pageResponse",
|
|
399
|
+
"type": "tuple"
|
|
400
|
+
}
|
|
401
|
+
],
|
|
402
|
+
"stateMutability": "view",
|
|
403
|
+
"type": "function"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"inputs": [
|
|
407
|
+
{
|
|
408
|
+
"internalType": "address",
|
|
409
|
+
"name": "grantee",
|
|
410
|
+
"type": "address"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"internalType": "string",
|
|
414
|
+
"name": "sourcePort",
|
|
415
|
+
"type": "string"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"internalType": "string",
|
|
419
|
+
"name": "sourceChannel",
|
|
420
|
+
"type": "string"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"internalType": "string",
|
|
424
|
+
"name": "denom",
|
|
425
|
+
"type": "string"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"internalType": "uint256",
|
|
429
|
+
"name": "amount",
|
|
430
|
+
"type": "uint256"
|
|
431
|
+
}
|
|
432
|
+
],
|
|
433
|
+
"name": "increaseAllowance",
|
|
434
|
+
"outputs": [
|
|
435
|
+
{
|
|
436
|
+
"internalType": "bool",
|
|
437
|
+
"name": "approved",
|
|
438
|
+
"type": "bool"
|
|
439
|
+
}
|
|
440
|
+
],
|
|
441
|
+
"stateMutability": "nonpayable",
|
|
442
|
+
"type": "function"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"inputs": [
|
|
446
|
+
{
|
|
447
|
+
"internalType": "address",
|
|
448
|
+
"name": "grantee",
|
|
449
|
+
"type": "address"
|
|
450
|
+
}
|
|
451
|
+
],
|
|
452
|
+
"name": "revoke",
|
|
453
|
+
"outputs": [
|
|
454
|
+
{
|
|
455
|
+
"internalType": "bool",
|
|
456
|
+
"name": "revoked",
|
|
457
|
+
"type": "bool"
|
|
458
|
+
}
|
|
459
|
+
],
|
|
460
|
+
"stateMutability": "nonpayable",
|
|
461
|
+
"type": "function"
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"inputs": [
|
|
465
|
+
{
|
|
466
|
+
"internalType": "string",
|
|
467
|
+
"name": "sourcePort",
|
|
468
|
+
"type": "string"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"internalType": "string",
|
|
472
|
+
"name": "sourceChannel",
|
|
473
|
+
"type": "string"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"internalType": "string",
|
|
477
|
+
"name": "denom",
|
|
478
|
+
"type": "string"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"internalType": "uint256",
|
|
482
|
+
"name": "amount",
|
|
483
|
+
"type": "uint256"
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"internalType": "address",
|
|
487
|
+
"name": "sender",
|
|
488
|
+
"type": "address"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"internalType": "string",
|
|
492
|
+
"name": "receiver",
|
|
493
|
+
"type": "string"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"components": [
|
|
497
|
+
{
|
|
498
|
+
"internalType": "uint64",
|
|
499
|
+
"name": "revisionNumber",
|
|
500
|
+
"type": "uint64"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"internalType": "uint64",
|
|
504
|
+
"name": "revisionHeight",
|
|
505
|
+
"type": "uint64"
|
|
506
|
+
}
|
|
507
|
+
],
|
|
508
|
+
"internalType": "struct Height",
|
|
509
|
+
"name": "timeoutHeight",
|
|
510
|
+
"type": "tuple"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"internalType": "uint64",
|
|
514
|
+
"name": "timeoutTimestamp",
|
|
515
|
+
"type": "uint64"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"internalType": "string",
|
|
519
|
+
"name": "memo",
|
|
520
|
+
"type": "string"
|
|
521
|
+
}
|
|
522
|
+
],
|
|
523
|
+
"name": "transfer",
|
|
524
|
+
"outputs": [
|
|
525
|
+
{
|
|
526
|
+
"internalType": "uint64",
|
|
527
|
+
"name": "nextSequence",
|
|
528
|
+
"type": "uint64"
|
|
529
|
+
}
|
|
530
|
+
],
|
|
531
|
+
"stateMutability": "nonpayable",
|
|
532
|
+
"type": "function"
|
|
533
|
+
}
|
|
534
|
+
]
|
package/dist/core/constants.d.ts
CHANGED
|
@@ -5,7 +5,6 @@ export declare const nativeEvmTokenAddress = "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
|
|
|
5
5
|
export declare const nativeCosmosTokenAddress = "uosmo";
|
|
6
6
|
export declare const nativeSolanaTokenAddress = "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee";
|
|
7
7
|
export declare const nativeBitcoinTokenAddress = "satoshi";
|
|
8
|
-
export declare const nativeXrpTokenAddress = "rrrrrrrrrrrrrrrrrrrrrhoLvTp";
|
|
9
8
|
export declare const maxPriceImpact = 30;
|
|
10
9
|
export declare const limitTradeSizeUsd = 10000000;
|
|
11
10
|
export declare const defaultSlippage: SlippageOption;
|
|
@@ -20,7 +19,7 @@ export declare const backendVersion = "v2";
|
|
|
20
19
|
export declare const internalSquidApiBaseUrl = "https://app.squidrouter.com/api";
|
|
21
20
|
export declare const TOKEN_PRICE_API_URL = "https://beta.app.squidrouter.com/api/coingecko";
|
|
22
21
|
export declare const SOLANA_RPC_URL = "https://meredith-ute2ko-fast-mainnet.helius-rpc.com";
|
|
23
|
-
export declare const INTEGRATOR_ID = "
|
|
22
|
+
export declare const INTEGRATOR_ID = "squid-swap-widget";
|
|
24
23
|
export declare const CHAIN_RPC_MAPPING: {
|
|
25
24
|
[key: string]: string;
|
|
26
25
|
};
|
|
@@ -39,7 +38,6 @@ export declare const CHAIN_IDS: {
|
|
|
39
38
|
readonly MIGALOO: "migaloo-1";
|
|
40
39
|
readonly UMEE: "umee-1";
|
|
41
40
|
readonly PERSISTENCE: "core-1";
|
|
42
|
-
readonly AGORIC: "agoric-3";
|
|
43
41
|
readonly ETHEREUM: "1";
|
|
44
42
|
readonly ARBITRUM: "42161";
|
|
45
43
|
readonly BSC: "56";
|
|
@@ -47,11 +45,7 @@ export declare const CHAIN_IDS: {
|
|
|
47
45
|
readonly OPTIMISM: "10";
|
|
48
46
|
readonly BITCOIN: "bitcoin";
|
|
49
47
|
readonly SOLANA: "solana-mainnet-beta";
|
|
50
|
-
readonly XRPL_EVM: string;
|
|
51
|
-
readonly XRPL: string;
|
|
52
48
|
};
|
|
53
|
-
export declare const chainTypeToDefaultChainIdMap: Record<ChainType, string>;
|
|
54
|
-
export declare const chainTypeToNativeTokenAddressMap: Record<ChainType, string>;
|
|
55
49
|
export declare const widgetHeaderSize: {
|
|
56
50
|
height: number;
|
|
57
51
|
paddingY: number;
|
package/dist/core/constants.js
CHANGED
|
@@ -2,23 +2,19 @@
|
|
|
2
2
|
import { ChainType } from "@0xsquid/squid-types";
|
|
3
3
|
import { zeroAddress as evmZeroAddress } from "viem";
|
|
4
4
|
import { squidApiBaseUrl } from "./externalLinks";
|
|
5
|
-
import { XRPL_CHAIN_ID, XRPL_EVM_CHAIN_ID } from "./xrp/config";
|
|
6
5
|
const btcZeroAddress = "bc1qcdyjau30xhw26h2egcfklwyyyskafhp9x8qtg2";
|
|
7
6
|
const cosmosZeroAddress = "osmo1awrua7e2kj69d7vn5qt5tccrhavmj9xa6y8hhu";
|
|
8
7
|
const solanaZeroAddress = "AuF3k2X5CsXJiXo7YKL5jxDG3gmf9MjaVK8hqt7Kfes1";
|
|
9
|
-
const xrpZeroAddress = "rrrrrrrrrrrrrrrrrrrrrhoLvTp";
|
|
10
8
|
export const chainTypeToZeroAddressMap = {
|
|
11
9
|
[ChainType.EVM]: evmZeroAddress,
|
|
12
10
|
[ChainType.COSMOS]: cosmosZeroAddress,
|
|
13
11
|
[ChainType.BTC]: btcZeroAddress,
|
|
14
12
|
[ChainType.SOLANA]: solanaZeroAddress,
|
|
15
|
-
[ChainType.XRP]: xrpZeroAddress,
|
|
16
13
|
};
|
|
17
14
|
export const nativeEvmTokenAddress = "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee";
|
|
18
15
|
export const nativeCosmosTokenAddress = "uosmo";
|
|
19
16
|
export const nativeSolanaTokenAddress = "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee";
|
|
20
17
|
export const nativeBitcoinTokenAddress = "satoshi";
|
|
21
|
-
export const nativeXrpTokenAddress = xrpZeroAddress;
|
|
22
18
|
export const maxPriceImpact = 30;
|
|
23
19
|
export const limitTradeSizeUsd = 10000000;
|
|
24
20
|
// by setting slippage to undefined, it's set to "auto"
|
|
@@ -34,7 +30,7 @@ export const backendVersion = "v2";
|
|
|
34
30
|
export const internalSquidApiBaseUrl = "https://app.squidrouter.com/api";
|
|
35
31
|
export const TOKEN_PRICE_API_URL = `https://beta.app.squidrouter.com/api/coingecko`;
|
|
36
32
|
export const SOLANA_RPC_URL = "https://meredith-ute2ko-fast-mainnet.helius-rpc.com";
|
|
37
|
-
export const INTEGRATOR_ID = "
|
|
33
|
+
export const INTEGRATOR_ID = "squid-swap-widget";
|
|
38
34
|
export const CHAIN_RPC_MAPPING = {
|
|
39
35
|
"137": "https://polygon.llamarpc.com",
|
|
40
36
|
};
|
|
@@ -54,7 +50,6 @@ export const CHAIN_IDS = {
|
|
|
54
50
|
MIGALOO: "migaloo-1",
|
|
55
51
|
UMEE: "umee-1",
|
|
56
52
|
PERSISTENCE: "core-1",
|
|
57
|
-
AGORIC: "agoric-3",
|
|
58
53
|
// EVM
|
|
59
54
|
ETHEREUM: "1",
|
|
60
55
|
ARBITRUM: "42161",
|
|
@@ -64,26 +59,6 @@ export const CHAIN_IDS = {
|
|
|
64
59
|
// others
|
|
65
60
|
BITCOIN: "bitcoin",
|
|
66
61
|
SOLANA: "solana-mainnet-beta",
|
|
67
|
-
// TODO: using XRPL devnet chain IDs for now
|
|
68
|
-
// Axelar is using a string (like xrpl-evm-devnet), but we need it to be a number
|
|
69
|
-
// in order to fetch balances correctly as it is an evm chain.
|
|
70
|
-
// When fetching status we'll parse it accordingly
|
|
71
|
-
XRPL_EVM: XRPL_EVM_CHAIN_ID,
|
|
72
|
-
XRPL: XRPL_CHAIN_ID,
|
|
73
|
-
};
|
|
74
|
-
export const chainTypeToDefaultChainIdMap = {
|
|
75
|
-
[ChainType.EVM]: CHAIN_IDS.ETHEREUM,
|
|
76
|
-
[ChainType.COSMOS]: CHAIN_IDS.OSMOSIS,
|
|
77
|
-
[ChainType.BTC]: CHAIN_IDS.BITCOIN,
|
|
78
|
-
[ChainType.SOLANA]: CHAIN_IDS.SOLANA,
|
|
79
|
-
[ChainType.XRP]: CHAIN_IDS.XRPL,
|
|
80
|
-
};
|
|
81
|
-
export const chainTypeToNativeTokenAddressMap = {
|
|
82
|
-
[ChainType.EVM]: nativeEvmTokenAddress,
|
|
83
|
-
[ChainType.COSMOS]: nativeCosmosTokenAddress,
|
|
84
|
-
[ChainType.BTC]: nativeBitcoinTokenAddress,
|
|
85
|
-
[ChainType.SOLANA]: nativeSolanaTokenAddress,
|
|
86
|
-
[ChainType.XRP]: nativeXrpTokenAddress,
|
|
87
62
|
};
|
|
88
63
|
export const widgetHeaderSize = {
|
|
89
64
|
height: 60,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/core/constants.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACjD,OAAO,EAAE,WAAW,IAAI,cAAc,EAAE,MAAM,MAAM,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/core/constants.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const squidMainLink = "https://www.squidrouter.com/";
|
|
2
2
|
export declare const squidDocLink = "https://docs.widget.squidrouter.com/";
|
|
3
|
-
export declare const squidApiBaseUrl = "https://
|
|
3
|
+
export declare const squidApiBaseUrl = "https://api.devsquidrouter.com";
|
|
4
4
|
export declare const squidDiscordLink = "https://discord.gg/squidrouter";
|
|
5
5
|
export declare const squidSupportLink = "https://support.squidrouter.com";
|
|
6
6
|
export declare const squidHelpLink: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// Squid Links
|
|
2
2
|
export const squidMainLink = "https://www.squidrouter.com/";
|
|
3
3
|
export const squidDocLink = "https://docs.widget.squidrouter.com/";
|
|
4
|
-
export const squidApiBaseUrl = "https://
|
|
4
|
+
export const squidApiBaseUrl = "https://api.devsquidrouter.com";
|
|
5
5
|
export const squidDiscordLink = "https://discord.gg/squidrouter";
|
|
6
6
|
export const squidSupportLink = "https://support.squidrouter.com";
|
|
7
7
|
export const squidHelpLink = `${squidDocLink}troubleshooting#additional-support`;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"externalLinks.js","sourceRoot":"","sources":["../../src/core/externalLinks.ts"],"names":[],"mappings":"AAAA,cAAc;AACd,MAAM,CAAC,MAAM,aAAa,GAAG,8BAA8B,CAAC;AAC5D,MAAM,CAAC,MAAM,YAAY,GAAG,sCAAsC,CAAC;AACnE,MAAM,CAAC,MAAM,eAAe,GAAG,
|
|
1
|
+
{"version":3,"file":"externalLinks.js","sourceRoot":"","sources":["../../src/core/externalLinks.ts"],"names":[],"mappings":"AAAA,cAAc;AACd,MAAM,CAAC,MAAM,aAAa,GAAG,8BAA8B,CAAC;AAC5D,MAAM,CAAC,MAAM,YAAY,GAAG,sCAAsC,CAAC;AACnE,MAAM,CAAC,MAAM,eAAe,GAAG,gCAAgC,CAAC;AAChE,MAAM,CAAC,MAAM,gBAAgB,GAAG,gCAAgC,CAAC;AACjE,MAAM,CAAC,MAAM,gBAAgB,GAAG,iCAAiC,CAAC;AAElE,MAAM,CAAC,MAAM,aAAa,GAAG,GAAG,YAAY,oCAAoC,CAAC;AACjF,MAAM,CAAC,MAAM,0BAA0B,GAAG,GAAG,YAAY,6BAA6B,CAAC;AACvF,MAAM,CAAC,MAAM,uBAAuB,GAAG,GAAG,YAAY,mDAAmD,CAAC;AAC1G,MAAM,CAAC,MAAM,gCAAgC,GAAG,GAAG,YAAY,2CAA2C,CAAC;AAC3G,MAAM,CAAC,MAAM,sBAAsB,GAAG,GAAG,YAAY,sBAAsB,CAAC;AAE5E,eAAe;AACf,MAAM,CAAC,MAAM,kBAAkB,GAC7B,uEAAuE,CAAC;AAC1E,MAAM,CAAC,MAAM,cAAc,GAAG,yBAAyB,CAAC;AACxD,MAAM,CAAC,MAAM,mBAAmB,GAC9B,gGAAgG,CAAC;AAEnG,cAAc;AACd,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,oEAAoE;CAC3E,CAAC"}
|