@rhinestone/shared-configs 1.4.24 → 1.4.26
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/configs/chains.json +16 -0
- package/dist/src/chains.d.ts +2 -2
- package/dist/src/chains.d.ts.map +1 -1
- package/dist/src/chains.js +86 -74
- package/dist/src/index.d.ts +2 -2
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +2 -1
- package/package.json +1 -1
package/dist/configs/chains.json
CHANGED
|
@@ -92,6 +92,14 @@
|
|
|
92
92
|
"approvalSlot": null,
|
|
93
93
|
"supportsMultichain": false
|
|
94
94
|
},
|
|
95
|
+
{
|
|
96
|
+
"symbol": "WPOL",
|
|
97
|
+
"address": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270",
|
|
98
|
+
"decimals": 18,
|
|
99
|
+
"balanceSlot": 3,
|
|
100
|
+
"approvalSlot": 4,
|
|
101
|
+
"supportsMultichain": false
|
|
102
|
+
},
|
|
95
103
|
{
|
|
96
104
|
"symbol": "USDC",
|
|
97
105
|
"address": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359",
|
|
@@ -197,6 +205,14 @@
|
|
|
197
205
|
"approvalSlot": null,
|
|
198
206
|
"supportsMultichain": false
|
|
199
207
|
},
|
|
208
|
+
{
|
|
209
|
+
"symbol": "WXPL",
|
|
210
|
+
"address": "0x6100E367285b01F48D07953803A2d8dCA5D19873",
|
|
211
|
+
"decimals": 18,
|
|
212
|
+
"balanceSlot": 3,
|
|
213
|
+
"approvalSlot": 4,
|
|
214
|
+
"supportsMultichain": false
|
|
215
|
+
},
|
|
200
216
|
{
|
|
201
217
|
"symbol": "USDT",
|
|
202
218
|
"address": "0x502012b361AebCE43b26Ec812B74D9a51dB4D412",
|
package/dist/src/chains.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { Address } from
|
|
2
|
-
import type { ProviderName, SettlementLayer, SupportedChain, SwapQuoter } from
|
|
1
|
+
import type { Address } from "viem";
|
|
2
|
+
import type { ProviderName, SettlementLayer, SupportedChain, SwapQuoter } from "./types";
|
|
3
3
|
interface Token {
|
|
4
4
|
address: Address;
|
|
5
5
|
symbol?: string;
|
package/dist/src/chains.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chains.d.ts","sourceRoot":"","sources":["../../src/chains.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,MAAM,
|
|
1
|
+
{"version":3,"file":"chains.d.ts","sourceRoot":"","sources":["../../src/chains.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,KAAK,EACV,YAAY,EACZ,eAAe,EACf,cAAc,EACd,UAAU,EACX,MAAM,SAAS,CAAC;AAEjB,UAAU,KAAK;IACb,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,kBAAkB,EAAE,OAAO,CAAC;CAC7B;AAED,UAAU,KAAK;IACb,gBAAgB,EAAE,eAAe,EAAE,CAAC;IACpC,SAAS,EAAE,YAAY,EAAE,CAAC;IAC1B,WAAW,EAAE,UAAU,EAAE,CAAC;IAC1B,MAAM,EAAE,KAAK,EAAE,CAAC;CACjB;AAED,QAAA,MAAM,MAAM,EAAE,MAAM,CAAC,cAAc,EAAE,KAAK,CAySzC,CAAC;AAEF,OAAO,EAAE,MAAM,EAAE,CAAC;AAClB,YAAY,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC"}
|
package/dist/src/chains.js
CHANGED
|
@@ -2,126 +2,132 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.chains = void 0;
|
|
4
4
|
const chains = {
|
|
5
|
-
|
|
6
|
-
settlementLayers: [
|
|
7
|
-
providers: [
|
|
8
|
-
swapQuoters: [
|
|
5
|
+
"1": {
|
|
6
|
+
settlementLayers: ["ACROSS", "ECO", "RELAY"],
|
|
7
|
+
providers: ["DRPC", "Alchemy"],
|
|
8
|
+
swapQuoters: ["1inch"],
|
|
9
9
|
tokens: [
|
|
10
10
|
{
|
|
11
|
-
address:
|
|
11
|
+
address: "0x0000000000000000000000000000000000000000",
|
|
12
12
|
balanceSlot: null,
|
|
13
13
|
approvalSlot: null,
|
|
14
14
|
supportsMultichain: true,
|
|
15
15
|
},
|
|
16
16
|
{
|
|
17
|
-
address:
|
|
17
|
+
address: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
|
|
18
18
|
balanceSlot: 9,
|
|
19
19
|
approvalSlot: 10,
|
|
20
20
|
supportsMultichain: true,
|
|
21
21
|
},
|
|
22
22
|
{
|
|
23
|
-
address:
|
|
23
|
+
address: "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
|
|
24
24
|
balanceSlot: 3,
|
|
25
25
|
approvalSlot: 4,
|
|
26
26
|
supportsMultichain: true,
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
},
|
|
30
|
-
|
|
31
|
-
settlementLayers: [
|
|
32
|
-
providers: [
|
|
33
|
-
swapQuoters: [
|
|
30
|
+
"10": {
|
|
31
|
+
settlementLayers: ["ACROSS", "ECO", "RELAY"],
|
|
32
|
+
providers: ["DRPC", "Alchemy"],
|
|
33
|
+
swapQuoters: ["1inch"],
|
|
34
34
|
tokens: [
|
|
35
35
|
{
|
|
36
|
-
address:
|
|
36
|
+
address: "0x0000000000000000000000000000000000000000",
|
|
37
37
|
balanceSlot: null,
|
|
38
38
|
approvalSlot: null,
|
|
39
39
|
supportsMultichain: true,
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
|
-
address:
|
|
42
|
+
address: "0x0b2c639c533813f4aa9d7837caf62653d097ff85",
|
|
43
43
|
balanceSlot: 9,
|
|
44
44
|
approvalSlot: 10,
|
|
45
45
|
supportsMultichain: true,
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
|
-
address:
|
|
48
|
+
address: "0x4200000000000000000000000000000000000006",
|
|
49
49
|
balanceSlot: 3,
|
|
50
50
|
approvalSlot: 4,
|
|
51
51
|
supportsMultichain: true,
|
|
52
52
|
},
|
|
53
53
|
],
|
|
54
54
|
},
|
|
55
|
-
|
|
56
|
-
settlementLayers: [
|
|
57
|
-
providers: [
|
|
58
|
-
swapQuoters: [
|
|
55
|
+
"8453": {
|
|
56
|
+
settlementLayers: ["ACROSS", "ECO", "RELAY"],
|
|
57
|
+
providers: ["DRPC", "Alchemy"],
|
|
58
|
+
swapQuoters: ["1inch"],
|
|
59
59
|
tokens: [
|
|
60
60
|
{
|
|
61
|
-
address:
|
|
61
|
+
address: "0x0000000000000000000000000000000000000000",
|
|
62
62
|
balanceSlot: null,
|
|
63
63
|
approvalSlot: null,
|
|
64
64
|
supportsMultichain: true,
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
|
-
address:
|
|
67
|
+
address: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
|
|
68
68
|
balanceSlot: 9,
|
|
69
69
|
approvalSlot: 10,
|
|
70
70
|
supportsMultichain: true,
|
|
71
71
|
},
|
|
72
72
|
{
|
|
73
|
-
symbol:
|
|
74
|
-
address:
|
|
73
|
+
symbol: "WETH",
|
|
74
|
+
address: "0x4200000000000000000000000000000000000006",
|
|
75
75
|
balanceSlot: 3,
|
|
76
76
|
approvalSlot: 4,
|
|
77
77
|
supportsMultichain: true,
|
|
78
78
|
},
|
|
79
79
|
],
|
|
80
80
|
},
|
|
81
|
-
|
|
82
|
-
settlementLayers: [
|
|
83
|
-
providers: [
|
|
84
|
-
swapQuoters: [
|
|
81
|
+
"42161": {
|
|
82
|
+
settlementLayers: ["ACROSS", "ECO", "RELAY"],
|
|
83
|
+
providers: ["DRPC", "Alchemy"],
|
|
84
|
+
swapQuoters: ["1inch"],
|
|
85
85
|
tokens: [
|
|
86
86
|
{
|
|
87
|
-
address:
|
|
87
|
+
address: "0x0000000000000000000000000000000000000000",
|
|
88
88
|
balanceSlot: null,
|
|
89
89
|
approvalSlot: null,
|
|
90
90
|
supportsMultichain: true,
|
|
91
91
|
},
|
|
92
92
|
{
|
|
93
|
-
address:
|
|
93
|
+
address: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
|
|
94
94
|
balanceSlot: 9,
|
|
95
95
|
approvalSlot: 10,
|
|
96
96
|
supportsMultichain: true,
|
|
97
97
|
},
|
|
98
98
|
{
|
|
99
|
-
address:
|
|
99
|
+
address: "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1",
|
|
100
100
|
balanceSlot: 51,
|
|
101
101
|
approvalSlot: 52,
|
|
102
102
|
supportsMultichain: true,
|
|
103
103
|
},
|
|
104
104
|
],
|
|
105
105
|
},
|
|
106
|
-
|
|
107
|
-
settlementLayers: [
|
|
108
|
-
providers: [
|
|
109
|
-
swapQuoters: [
|
|
106
|
+
"137": {
|
|
107
|
+
settlementLayers: ["ACROSS", "ECO", "RELAY"],
|
|
108
|
+
providers: ["DRPC", "Alchemy"],
|
|
109
|
+
swapQuoters: ["1inch"],
|
|
110
110
|
tokens: [
|
|
111
111
|
{
|
|
112
|
-
address:
|
|
112
|
+
address: "0x0000000000000000000000000000000000000000",
|
|
113
113
|
balanceSlot: null,
|
|
114
114
|
approvalSlot: null,
|
|
115
115
|
supportsMultichain: false,
|
|
116
116
|
},
|
|
117
117
|
{
|
|
118
|
-
address:
|
|
118
|
+
address: "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270",
|
|
119
|
+
balanceSlot: 3,
|
|
120
|
+
approvalSlot: 4,
|
|
121
|
+
supportsMultichain: false,
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
address: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359",
|
|
119
125
|
balanceSlot: 9,
|
|
120
126
|
approvalSlot: 10,
|
|
121
127
|
supportsMultichain: true,
|
|
122
128
|
},
|
|
123
129
|
{
|
|
124
|
-
address:
|
|
130
|
+
address: "0x7ceb23fd6bc0add59e62ac25578270cff1b9f619",
|
|
125
131
|
balanceSlot: 0,
|
|
126
132
|
approvalSlot: 1,
|
|
127
133
|
supportsMultichain: true,
|
|
@@ -139,147 +145,153 @@ const chains = {
|
|
|
139
145
|
// },
|
|
140
146
|
// ],
|
|
141
147
|
// },
|
|
142
|
-
|
|
143
|
-
settlementLayers: [
|
|
144
|
-
providers: [
|
|
148
|
+
"1868": {
|
|
149
|
+
settlementLayers: ["ACROSS", "ECO", "RELAY"],
|
|
150
|
+
providers: ["DRPC", "Alchemy"],
|
|
145
151
|
swapQuoters: [],
|
|
146
152
|
tokens: [
|
|
147
153
|
{
|
|
148
|
-
address:
|
|
154
|
+
address: "0x0000000000000000000000000000000000000000",
|
|
149
155
|
balanceSlot: null,
|
|
150
156
|
approvalSlot: null,
|
|
151
157
|
supportsMultichain: true,
|
|
152
158
|
},
|
|
153
159
|
{
|
|
154
|
-
symbol:
|
|
155
|
-
address:
|
|
160
|
+
symbol: "USDC",
|
|
161
|
+
address: "0xbA9986D2381edf1DA03B0B9c1f8b00dc4AacC369",
|
|
156
162
|
balanceSlot: 9,
|
|
157
163
|
approvalSlot: 10,
|
|
158
164
|
supportsMultichain: true,
|
|
159
165
|
},
|
|
160
166
|
{
|
|
161
|
-
address:
|
|
167
|
+
address: "0x4200000000000000000000000000000000000006",
|
|
162
168
|
balanceSlot: 0,
|
|
163
169
|
approvalSlot: 1,
|
|
164
170
|
supportsMultichain: true,
|
|
165
171
|
},
|
|
166
172
|
],
|
|
167
173
|
},
|
|
168
|
-
|
|
169
|
-
settlementLayers: [
|
|
170
|
-
providers: [
|
|
174
|
+
"84532": {
|
|
175
|
+
settlementLayers: ["ACROSS", "ECO"],
|
|
176
|
+
providers: ["DRPC"],
|
|
171
177
|
swapQuoters: [],
|
|
172
178
|
tokens: [
|
|
173
179
|
{
|
|
174
|
-
address:
|
|
180
|
+
address: "0x0000000000000000000000000000000000000000",
|
|
175
181
|
balanceSlot: null,
|
|
176
182
|
approvalSlot: null,
|
|
177
183
|
supportsMultichain: true,
|
|
178
184
|
},
|
|
179
185
|
{
|
|
180
|
-
address:
|
|
186
|
+
address: "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
|
|
181
187
|
balanceSlot: 9,
|
|
182
188
|
approvalSlot: 10,
|
|
183
189
|
supportsMultichain: true,
|
|
184
190
|
},
|
|
185
191
|
{
|
|
186
|
-
address:
|
|
192
|
+
address: "0x4200000000000000000000000000000000000006",
|
|
187
193
|
balanceSlot: 3,
|
|
188
194
|
approvalSlot: 4,
|
|
189
195
|
supportsMultichain: true,
|
|
190
196
|
},
|
|
191
197
|
],
|
|
192
198
|
},
|
|
193
|
-
|
|
194
|
-
settlementLayers: [
|
|
195
|
-
providers: [
|
|
199
|
+
"421614": {
|
|
200
|
+
settlementLayers: ["ACROSS", "ECO"],
|
|
201
|
+
providers: ["DRPC"],
|
|
196
202
|
swapQuoters: [],
|
|
197
203
|
tokens: [
|
|
198
204
|
{
|
|
199
|
-
address:
|
|
205
|
+
address: "0x0000000000000000000000000000000000000000",
|
|
200
206
|
balanceSlot: null,
|
|
201
207
|
approvalSlot: null,
|
|
202
208
|
supportsMultichain: true,
|
|
203
209
|
},
|
|
204
210
|
{
|
|
205
|
-
address:
|
|
211
|
+
address: "0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d",
|
|
206
212
|
balanceSlot: 9,
|
|
207
213
|
approvalSlot: 10,
|
|
208
214
|
supportsMultichain: true,
|
|
209
215
|
},
|
|
210
216
|
{
|
|
211
|
-
address:
|
|
217
|
+
address: "0x980B62Da83eFf3D4576C647993b0c1D7faf17c73",
|
|
212
218
|
balanceSlot: 51,
|
|
213
219
|
approvalSlot: 52,
|
|
214
220
|
supportsMultichain: true,
|
|
215
221
|
},
|
|
216
222
|
],
|
|
217
223
|
},
|
|
218
|
-
|
|
219
|
-
settlementLayers: [
|
|
220
|
-
providers: [
|
|
224
|
+
"11155111": {
|
|
225
|
+
settlementLayers: ["ACROSS", "ECO"],
|
|
226
|
+
providers: ["DRPC"],
|
|
221
227
|
swapQuoters: [],
|
|
222
228
|
tokens: [
|
|
223
229
|
{
|
|
224
|
-
address:
|
|
230
|
+
address: "0x0000000000000000000000000000000000000000",
|
|
225
231
|
balanceSlot: null,
|
|
226
232
|
approvalSlot: null,
|
|
227
233
|
supportsMultichain: true,
|
|
228
234
|
},
|
|
229
235
|
{
|
|
230
|
-
address:
|
|
236
|
+
address: "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
|
|
231
237
|
balanceSlot: 9,
|
|
232
238
|
approvalSlot: 10,
|
|
233
239
|
supportsMultichain: true,
|
|
234
240
|
},
|
|
235
241
|
{
|
|
236
|
-
address:
|
|
242
|
+
address: "0xfFf9976782d46CC05630D1f6eBAb18b2324d6B14",
|
|
237
243
|
balanceSlot: 3,
|
|
238
244
|
approvalSlot: 4,
|
|
239
245
|
supportsMultichain: true,
|
|
240
246
|
},
|
|
241
247
|
],
|
|
242
248
|
},
|
|
243
|
-
|
|
244
|
-
settlementLayers: [
|
|
245
|
-
providers: [
|
|
249
|
+
"11155420": {
|
|
250
|
+
settlementLayers: ["ACROSS", "ECO"],
|
|
251
|
+
providers: ["DRPC"],
|
|
246
252
|
swapQuoters: [],
|
|
247
253
|
tokens: [
|
|
248
254
|
{
|
|
249
|
-
address:
|
|
255
|
+
address: "0x0000000000000000000000000000000000000000",
|
|
250
256
|
balanceSlot: null,
|
|
251
257
|
approvalSlot: null,
|
|
252
258
|
supportsMultichain: true,
|
|
253
259
|
},
|
|
254
260
|
{
|
|
255
|
-
address:
|
|
261
|
+
address: "0x5fd84259d66Cd46123540766Be93DFE6D43130D7",
|
|
256
262
|
balanceSlot: 9,
|
|
257
263
|
approvalSlot: 10,
|
|
258
264
|
supportsMultichain: true,
|
|
259
265
|
},
|
|
260
266
|
{
|
|
261
|
-
address:
|
|
267
|
+
address: "0x4200000000000000000000000000000000000006",
|
|
262
268
|
balanceSlot: 3,
|
|
263
269
|
approvalSlot: 4,
|
|
264
270
|
supportsMultichain: true,
|
|
265
271
|
},
|
|
266
272
|
],
|
|
267
273
|
},
|
|
268
|
-
|
|
269
|
-
settlementLayers: [
|
|
270
|
-
providers: [
|
|
274
|
+
"9746": {
|
|
275
|
+
settlementLayers: ["ECO"],
|
|
276
|
+
providers: ["DRPC"],
|
|
271
277
|
swapQuoters: [],
|
|
272
278
|
tokens: [
|
|
273
279
|
{
|
|
274
|
-
symbol:
|
|
275
|
-
address:
|
|
280
|
+
symbol: "XPL",
|
|
281
|
+
address: "0x0000000000000000000000000000000000000000",
|
|
276
282
|
balanceSlot: null,
|
|
277
283
|
approvalSlot: null,
|
|
278
284
|
supportsMultichain: false,
|
|
279
285
|
},
|
|
280
286
|
{
|
|
281
|
-
|
|
282
|
-
|
|
287
|
+
address: "0x6100E367285b01F48D07953803A2d8dCA5D19873",
|
|
288
|
+
balanceSlot: 3,
|
|
289
|
+
approvalSlot: 4,
|
|
290
|
+
supportsMultichain: false,
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
symbol: "USDT",
|
|
294
|
+
address: "0x502012b361AebCE43b26Ec812B74D9a51dB4D412",
|
|
283
295
|
balanceSlot: 1,
|
|
284
296
|
approvalSlot: 2,
|
|
285
297
|
supportsMultichain: true,
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { ChainEntry, ChainItem, ChainList, ChainRegistry, ProviderName, ProviderRegistry, SettlementLayer, SupportedChain, SupportedMainnet, SupportedOPStackMainnet, SupportedOPStackTestnet, SupportedTestnet } from './types';
|
|
2
|
-
import { chains, MainnetNetwork, mainnetChains, OPStackChains, TestnetNetwork, testnetChains } from './types';
|
|
2
|
+
import { chains, MainnetNetwork, mainnetChains, OPStackChains, TestnetNetwork, testnetChains, WrappedNativeTokens } from './types';
|
|
3
3
|
declare const chainRegistry: ChainRegistry;
|
|
4
4
|
declare const providerRegistry: ProviderRegistry;
|
|
5
5
|
declare const mainnetChainList: ChainList;
|
|
6
6
|
declare const testnetChainList: ChainList;
|
|
7
|
-
export { chainRegistry, providerRegistry, mainnetChainList, testnetChainList, chains, mainnetChains, testnetChains, MainnetNetwork, OPStackChains, TestnetNetwork, };
|
|
7
|
+
export { chainRegistry, providerRegistry, mainnetChainList, testnetChainList, chains, mainnetChains, testnetChains, MainnetNetwork, OPStackChains, TestnetNetwork, WrappedNativeTokens, };
|
|
8
8
|
export type { ChainList, ChainItem, ChainEntry, ChainRegistry, ProviderRegistry, ProviderName, SupportedMainnet, SupportedTestnet, SupportedChain, SupportedOPStackMainnet, SupportedOPStackTestnet, SettlementLayer, };
|
|
9
9
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACV,UAAU,EACV,SAAS,EACT,SAAS,EACT,aAAa,EACb,YAAY,EACZ,gBAAgB,EAChB,eAAe,EACf,cAAc,EACd,gBAAgB,EAChB,uBAAuB,EACvB,uBAAuB,EACvB,gBAAgB,EACjB,MAAM,SAAS,CAAA;AAChB,OAAO,EACL,MAAM,EACN,cAAc,EACd,aAAa,EACb,aAAa,EACb,cAAc,EACd,aAAa,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACV,UAAU,EACV,SAAS,EACT,SAAS,EACT,aAAa,EACb,YAAY,EACZ,gBAAgB,EAChB,eAAe,EACf,cAAc,EACd,gBAAgB,EAChB,uBAAuB,EACvB,uBAAuB,EACvB,gBAAgB,EACjB,MAAM,SAAS,CAAA;AAChB,OAAO,EACL,MAAM,EACN,cAAc,EACd,aAAa,EACb,aAAa,EACb,cAAc,EACd,aAAa,EACb,mBAAmB,EACpB,MAAM,SAAS,CAAA;AAEhB,QAAA,MAAM,aAAa,EAAE,aAAkD,CAAA;AACvE,QAAA,MAAM,gBAAgB,EAAE,gBACkB,CAAA;AAC1C,QAAA,MAAM,gBAAgB,EAAE,SAA6C,CAAA;AACrE,QAAA,MAAM,gBAAgB,EAAE,SAA6C,CAAA;AAErE,OAAO,EAEL,aAAa,EACb,gBAAgB,EAChB,gBAAgB,EAChB,gBAAgB,EAEhB,MAAM,EACN,aAAa,EACb,aAAa,EAEb,cAAc,EACd,aAAa,EACb,cAAc,EACd,mBAAmB,GACpB,CAAA;AACD,YAAY,EAEV,SAAS,EACT,SAAS,EACT,UAAU,EACV,aAAa,EACb,gBAAgB,EAChB,YAAY,EAEZ,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,uBAAuB,EACvB,uBAAuB,EACvB,eAAe,GAChB,CAAA"}
|
package/dist/src/index.js
CHANGED
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.TestnetNetwork = exports.OPStackChains = exports.MainnetNetwork = exports.testnetChains = exports.mainnetChains = exports.chains = exports.testnetChainList = exports.mainnetChainList = exports.providerRegistry = exports.chainRegistry = void 0;
|
|
6
|
+
exports.WrappedNativeTokens = exports.TestnetNetwork = exports.OPStackChains = exports.MainnetNetwork = exports.testnetChains = exports.mainnetChains = exports.chains = exports.testnetChainList = exports.mainnetChainList = exports.providerRegistry = exports.chainRegistry = void 0;
|
|
7
7
|
const chains_json_1 = __importDefault(require("../configs/chains.json"));
|
|
8
8
|
const mainnets_json_1 = __importDefault(require("../configs/mainnets.json"));
|
|
9
9
|
const providers_json_1 = __importDefault(require("../configs/providers.json"));
|
|
@@ -15,6 +15,7 @@ Object.defineProperty(exports, "mainnetChains", { enumerable: true, get: functio
|
|
|
15
15
|
Object.defineProperty(exports, "OPStackChains", { enumerable: true, get: function () { return types_1.OPStackChains; } });
|
|
16
16
|
Object.defineProperty(exports, "TestnetNetwork", { enumerable: true, get: function () { return types_1.TestnetNetwork; } });
|
|
17
17
|
Object.defineProperty(exports, "testnetChains", { enumerable: true, get: function () { return types_1.testnetChains; } });
|
|
18
|
+
Object.defineProperty(exports, "WrappedNativeTokens", { enumerable: true, get: function () { return types_1.WrappedNativeTokens; } });
|
|
18
19
|
const chainRegistry = chains_json_1.default;
|
|
19
20
|
exports.chainRegistry = chainRegistry;
|
|
20
21
|
const providerRegistry = providers_json_1.default;
|