@rhinestone/shared-configs 1.4.106 → 1.4.107
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 +35 -0
- package/dist/configs/erpc.json +1 -1
- package/dist/scripts/generate.js +2 -1
- package/dist/src/chains.d.ts +2 -1
- package/dist/src/chains.d.ts.map +1 -1
- package/dist/src/chains.js +35 -0
- package/dist/src/types.d.ts +5 -1
- package/dist/src/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/configs/chains.json
CHANGED
|
@@ -12,6 +12,11 @@
|
|
|
12
12
|
"RELAY",
|
|
13
13
|
"OFT"
|
|
14
14
|
],
|
|
15
|
+
"swapQuoterConfig": {
|
|
16
|
+
"kyberswap": {
|
|
17
|
+
"slug": "ethereum"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
15
20
|
"swapQuoters": [
|
|
16
21
|
"1inch",
|
|
17
22
|
"0x",
|
|
@@ -69,6 +74,11 @@
|
|
|
69
74
|
"RELAY",
|
|
70
75
|
"OFT"
|
|
71
76
|
],
|
|
77
|
+
"swapQuoterConfig": {
|
|
78
|
+
"kyberswap": {
|
|
79
|
+
"slug": "optimism"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
72
82
|
"swapQuoters": [
|
|
73
83
|
"1inch",
|
|
74
84
|
"0x",
|
|
@@ -211,6 +221,11 @@
|
|
|
211
221
|
"RELAY",
|
|
212
222
|
"OFT"
|
|
213
223
|
],
|
|
224
|
+
"swapQuoterConfig": {
|
|
225
|
+
"kyberswap": {
|
|
226
|
+
"slug": "polygon"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
214
229
|
"swapQuoters": [
|
|
215
230
|
"1inch",
|
|
216
231
|
"0x",
|
|
@@ -259,6 +274,11 @@
|
|
|
259
274
|
"ECO",
|
|
260
275
|
"RELAY"
|
|
261
276
|
],
|
|
277
|
+
"swapQuoterConfig": {
|
|
278
|
+
"kyberswap": {
|
|
279
|
+
"slug": "sonic"
|
|
280
|
+
}
|
|
281
|
+
},
|
|
262
282
|
"swapQuoters": [
|
|
263
283
|
"1inch",
|
|
264
284
|
"0x",
|
|
@@ -372,6 +392,11 @@
|
|
|
372
392
|
"RELAY",
|
|
373
393
|
"OFT"
|
|
374
394
|
],
|
|
395
|
+
"swapQuoterConfig": {
|
|
396
|
+
"kyberswap": {
|
|
397
|
+
"slug": "base"
|
|
398
|
+
}
|
|
399
|
+
},
|
|
375
400
|
"swapQuoters": [
|
|
376
401
|
"1inch",
|
|
377
402
|
"0x",
|
|
@@ -421,6 +446,11 @@
|
|
|
421
446
|
"RELAY",
|
|
422
447
|
"OFT"
|
|
423
448
|
],
|
|
449
|
+
"swapQuoterConfig": {
|
|
450
|
+
"kyberswap": {
|
|
451
|
+
"slug": "plasma"
|
|
452
|
+
}
|
|
453
|
+
},
|
|
424
454
|
"swapQuoters": [
|
|
425
455
|
"0x",
|
|
426
456
|
"kyberswap"
|
|
@@ -488,6 +518,11 @@
|
|
|
488
518
|
"RELAY",
|
|
489
519
|
"OFT"
|
|
490
520
|
],
|
|
521
|
+
"swapQuoterConfig": {
|
|
522
|
+
"kyberswap": {
|
|
523
|
+
"slug": "arbitrum"
|
|
524
|
+
}
|
|
525
|
+
},
|
|
491
526
|
"swapQuoters": [
|
|
492
527
|
"1inch",
|
|
493
528
|
"0x",
|
package/dist/configs/erpc.json
CHANGED
package/dist/scripts/generate.js
CHANGED
|
@@ -79,7 +79,7 @@ function renderChains(chainRegistry, mainnets, testnets) {
|
|
|
79
79
|
return [
|
|
80
80
|
"// Auto-generated by scripts/generate.ts. Do not edit manually.",
|
|
81
81
|
'import type { Address } from "viem";',
|
|
82
|
-
'import type { ProviderName, SettlementLayer, SupportedChain, SwapQuoter } from "./types";',
|
|
82
|
+
'import type { ProviderName, SettlementLayer, SupportedChain, SwapQuoter, SwapQuoterConfig } from "./types";',
|
|
83
83
|
"",
|
|
84
84
|
"interface Token {",
|
|
85
85
|
" address: Address;",
|
|
@@ -104,6 +104,7 @@ function renderChains(chainRegistry, mainnets, testnets) {
|
|
|
104
104
|
" settlementLayers: SettlementLayer[];",
|
|
105
105
|
" providers: ProviderName[];",
|
|
106
106
|
" swapQuoters: SwapQuoter[];",
|
|
107
|
+
" swapQuoterConfig?: Partial<Record<SwapQuoter, SwapQuoterConfig>>;",
|
|
107
108
|
"}",
|
|
108
109
|
"",
|
|
109
110
|
`const chains: Record<SupportedChain, Chain> = ${JSON.stringify(chains, null, 2)};`,
|
package/dist/src/chains.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Address } from "viem";
|
|
2
|
-
import type { ProviderName, SettlementLayer, SupportedChain, SwapQuoter } from "./types";
|
|
2
|
+
import type { ProviderName, SettlementLayer, SupportedChain, SwapQuoter, SwapQuoterConfig } from "./types";
|
|
3
3
|
interface Token {
|
|
4
4
|
address: Address;
|
|
5
5
|
symbol?: string;
|
|
@@ -21,6 +21,7 @@ interface Chain {
|
|
|
21
21
|
settlementLayers: SettlementLayer[];
|
|
22
22
|
providers: ProviderName[];
|
|
23
23
|
swapQuoters: SwapQuoter[];
|
|
24
|
+
swapQuoterConfig?: Partial<Record<SwapQuoter, SwapQuoterConfig>>;
|
|
24
25
|
}
|
|
25
26
|
declare const chains: Record<SupportedChain, Chain>;
|
|
26
27
|
export { chains };
|
package/dist/src/chains.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chains.d.ts","sourceRoot":"","sources":["../../src/chains.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,KAAK,EAAE,YAAY,EAAE,eAAe,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"chains.d.ts","sourceRoot":"","sources":["../../src/chains.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,KAAK,EAAE,YAAY,EAAE,eAAe,EAAE,cAAc,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAE3G,UAAU,KAAK;IACb,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7B;AAED,UAAU,WAAW;IACnB,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,UAAU,KAAK;IACb,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,WAAW,CAAC;IACzB,kBAAkB,EAAE,WAAW,CAAC;IAChC,MAAM,EAAE,KAAK,EAAE,CAAC;IAChB,gBAAgB,EAAE,eAAe,EAAE,CAAC;IACpC,SAAS,EAAE,YAAY,EAAE,CAAC;IAC1B,WAAW,EAAE,UAAU,EAAE,CAAC;IAC1B,gBAAgB,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,UAAU,EAAE,gBAAgB,CAAC,CAAC,CAAC;CAClE;AAED,QAAA,MAAM,MAAM,EAAE,MAAM,CAAC,cAAc,EAAE,KAAK,CAyyBzC,CAAC;AAEF,OAAO,EAAE,MAAM,EAAE,CAAC;AAClB,YAAY,EAAE,KAAK,EAAE,KAAK,EAAE,WAAW,EAAE,CAAC"}
|
package/dist/src/chains.js
CHANGED
|
@@ -15,6 +15,11 @@ const chains = {
|
|
|
15
15
|
"RELAY",
|
|
16
16
|
"OFT"
|
|
17
17
|
],
|
|
18
|
+
"swapQuoterConfig": {
|
|
19
|
+
"kyberswap": {
|
|
20
|
+
"slug": "ethereum"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
18
23
|
"swapQuoters": [
|
|
19
24
|
"1inch",
|
|
20
25
|
"0x",
|
|
@@ -76,6 +81,11 @@ const chains = {
|
|
|
76
81
|
"RELAY",
|
|
77
82
|
"OFT"
|
|
78
83
|
],
|
|
84
|
+
"swapQuoterConfig": {
|
|
85
|
+
"kyberswap": {
|
|
86
|
+
"slug": "optimism"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
79
89
|
"swapQuoters": [
|
|
80
90
|
"1inch",
|
|
81
91
|
"0x",
|
|
@@ -231,6 +241,11 @@ const chains = {
|
|
|
231
241
|
"RELAY",
|
|
232
242
|
"OFT"
|
|
233
243
|
],
|
|
244
|
+
"swapQuoterConfig": {
|
|
245
|
+
"kyberswap": {
|
|
246
|
+
"slug": "polygon"
|
|
247
|
+
}
|
|
248
|
+
},
|
|
234
249
|
"swapQuoters": [
|
|
235
250
|
"1inch",
|
|
236
251
|
"0x",
|
|
@@ -283,6 +298,11 @@ const chains = {
|
|
|
283
298
|
"ECO",
|
|
284
299
|
"RELAY"
|
|
285
300
|
],
|
|
301
|
+
"swapQuoterConfig": {
|
|
302
|
+
"kyberswap": {
|
|
303
|
+
"slug": "sonic"
|
|
304
|
+
}
|
|
305
|
+
},
|
|
286
306
|
"swapQuoters": [
|
|
287
307
|
"1inch",
|
|
288
308
|
"0x",
|
|
@@ -408,6 +428,11 @@ const chains = {
|
|
|
408
428
|
"RELAY",
|
|
409
429
|
"OFT"
|
|
410
430
|
],
|
|
431
|
+
"swapQuoterConfig": {
|
|
432
|
+
"kyberswap": {
|
|
433
|
+
"slug": "base"
|
|
434
|
+
}
|
|
435
|
+
},
|
|
411
436
|
"swapQuoters": [
|
|
412
437
|
"1inch",
|
|
413
438
|
"0x",
|
|
@@ -461,6 +486,11 @@ const chains = {
|
|
|
461
486
|
"RELAY",
|
|
462
487
|
"OFT"
|
|
463
488
|
],
|
|
489
|
+
"swapQuoterConfig": {
|
|
490
|
+
"kyberswap": {
|
|
491
|
+
"slug": "plasma"
|
|
492
|
+
}
|
|
493
|
+
},
|
|
464
494
|
"swapQuoters": [
|
|
465
495
|
"0x",
|
|
466
496
|
"kyberswap"
|
|
@@ -535,6 +565,11 @@ const chains = {
|
|
|
535
565
|
"RELAY",
|
|
536
566
|
"OFT"
|
|
537
567
|
],
|
|
568
|
+
"swapQuoterConfig": {
|
|
569
|
+
"kyberswap": {
|
|
570
|
+
"slug": "arbitrum"
|
|
571
|
+
}
|
|
572
|
+
},
|
|
538
573
|
"swapQuoters": [
|
|
539
574
|
"1inch",
|
|
540
575
|
"0x",
|
package/dist/src/types.d.ts
CHANGED
|
@@ -22,6 +22,9 @@ interface NativeTokenEntry {
|
|
|
22
22
|
address: Address;
|
|
23
23
|
decimals: number;
|
|
24
24
|
}
|
|
25
|
+
interface SwapQuoterConfig {
|
|
26
|
+
slug?: string;
|
|
27
|
+
}
|
|
25
28
|
interface ChainEntry {
|
|
26
29
|
name: string;
|
|
27
30
|
nativeToken: NativeTokenEntry;
|
|
@@ -29,6 +32,7 @@ interface ChainEntry {
|
|
|
29
32
|
tokens: TokenEntry[];
|
|
30
33
|
settlementLayers: SettlementLayer[];
|
|
31
34
|
swapQuoters: SwapQuoter[];
|
|
35
|
+
swapQuoterConfig?: Partial<Record<SwapQuoter, SwapQuoterConfig>>;
|
|
32
36
|
}
|
|
33
37
|
type ContractAddresses = Record<string, Record<string, Address>>;
|
|
34
38
|
interface ChainRegistry {
|
|
@@ -74,5 +78,5 @@ interface ErpcConfig {
|
|
|
74
78
|
providerIdPrefix: Record<string, string>;
|
|
75
79
|
}
|
|
76
80
|
export { OPStackChains, MainnetNetwork, TestnetNetwork, mainnetChains, testnetChains, chains, };
|
|
77
|
-
export type { ChainItem, ChainEntry, ChainRegistry, ChainList, ContractAddresses, ProviderRegistry, ProviderName, SettlementLayer, SupportedTestnet, SupportedMainnet, SupportedOPStackMainnet, SupportedOPStackTestnet, SupportedChain, SwapQuoter, ErpcFailsafe, ErpcChainOverride, ErpcConfig, };
|
|
81
|
+
export type { ChainItem, ChainEntry, ChainRegistry, ChainList, ContractAddresses, ProviderRegistry, ProviderName, SettlementLayer, SupportedTestnet, SupportedMainnet, SupportedOPStackMainnet, SupportedOPStackTestnet, SupportedChain, SwapQuoter, SwapQuoterConfig, ErpcFailsafe, ErpcChainOverride, ErpcConfig, };
|
|
78
82
|
//# sourceMappingURL=types.d.ts.map
|
package/dist/src/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EACL,MAAM,EACN,cAAc,EACd,aAAa,EACb,aAAa,EACb,cAAc,EACd,aAAa,EACd,MAAM,sBAAsB,CAAC;AAE9B,KAAK,gBAAgB,CAAC,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;AACvD,KAAK,gBAAgB,GAAG,gBAAgB,CAAC,OAAO,cAAc,CAAC,CAAC;AAChE,KAAK,gBAAgB,GAAG,gBAAgB,CAAC,OAAO,cAAc,CAAC,CAAC;AAChE,KAAK,uBAAuB,GAAG,OAAO,CACpC,gBAAgB,CAAC,OAAO,aAAa,CAAC,EACtC,gBAAgB,CACjB,CAAC;AACF,KAAK,uBAAuB,GAAG,OAAO,CACpC,gBAAgB,CAAC,OAAO,aAAa,CAAC,EACtC,gBAAgB,CACjB,CAAC;AACF,KAAK,cAAc,GAAG,gBAAgB,GAAG,gBAAgB,CAAC;AAE1D,KAAK,eAAe,GAAG,QAAQ,GAAG,KAAK,GAAG,OAAO,GAAG,KAAK,CAAC;AAE1D,KAAK,UAAU,GAAG,OAAO,GAAG,IAAI,GAAG,QAAQ,GAAG,WAAW,CAAC;AAE1D,UAAU,UAAU;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7B;AAED,UAAU,gBAAgB;IACxB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,UAAU,UAAU;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,gBAAgB,CAAC;IAC9B,kBAAkB,EAAE,gBAAgB,CAAC;IACrC,MAAM,EAAE,UAAU,EAAE,CAAC;IACrB,gBAAgB,EAAE,eAAe,EAAE,CAAC;IACpC,WAAW,EAAE,UAAU,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
|