@rhinestone/shared-configs 2.8.0 → 2.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/configs/chains.json
CHANGED
|
@@ -52,7 +52,8 @@
|
|
|
52
52
|
"1inch",
|
|
53
53
|
"0x",
|
|
54
54
|
"velora",
|
|
55
|
-
"fynd"
|
|
55
|
+
"fynd",
|
|
56
|
+
"bebop"
|
|
56
57
|
],
|
|
57
58
|
"tokens": [
|
|
58
59
|
{
|
|
@@ -1362,7 +1363,8 @@
|
|
|
1362
1363
|
"swapQuoters": [
|
|
1363
1364
|
"1inch",
|
|
1364
1365
|
"0x",
|
|
1365
|
-
"fynd"
|
|
1366
|
+
"fynd",
|
|
1367
|
+
"relay"
|
|
1366
1368
|
],
|
|
1367
1369
|
"tokens": [
|
|
1368
1370
|
{
|
package/dist/src/chains.js
CHANGED
|
@@ -55,7 +55,8 @@ const chains = {
|
|
|
55
55
|
"1inch",
|
|
56
56
|
"0x",
|
|
57
57
|
"velora",
|
|
58
|
-
"fynd"
|
|
58
|
+
"fynd",
|
|
59
|
+
"bebop"
|
|
59
60
|
],
|
|
60
61
|
"tokens": [
|
|
61
62
|
{
|
|
@@ -1415,7 +1416,8 @@ const chains = {
|
|
|
1415
1416
|
"swapQuoters": [
|
|
1416
1417
|
"1inch",
|
|
1417
1418
|
"0x",
|
|
1418
|
-
"fynd"
|
|
1419
|
+
"fynd",
|
|
1420
|
+
"relay"
|
|
1419
1421
|
],
|
|
1420
1422
|
"tokens": [
|
|
1421
1423
|
{
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const PACKAGE_VERSION = "2.
|
|
1
|
+
declare const PACKAGE_VERSION = "2.9.0";
|
|
2
2
|
export { PACKAGE_VERSION };
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PACKAGE_VERSION = void 0;
|
|
4
4
|
// Auto-generated by scripts/generate.ts. Do not edit manually.
|
|
5
|
-
const PACKAGE_VERSION = "2.
|
|
5
|
+
const PACKAGE_VERSION = "2.9.0";
|
|
6
6
|
exports.PACKAGE_VERSION = PACKAGE_VERSION;
|
package/dist/src/types.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ type SupportedOPStackMainnet = Extract<EnumNumberValues<typeof OPStackChains>, S
|
|
|
8
8
|
type SupportedOPStackTestnet = Extract<EnumNumberValues<typeof OPStackChains>, SupportedTestnet>;
|
|
9
9
|
type SupportedChain = SupportedMainnet | SupportedTestnet;
|
|
10
10
|
type SettlementLayer = 'ACROSS' | 'ECO' | 'RELAY' | 'OFT' | 'NEAR' | 'RHINO' | 'CCTP';
|
|
11
|
-
type SwapQuoter = '1inch' | '0x' | 'velora' | 'kyberswap' | 'fynd' | 'fynd-hosted';
|
|
11
|
+
type SwapQuoter = '1inch' | '0x' | 'velora' | 'kyberswap' | 'fynd' | 'fynd-hosted' | 'bebop' | 'relay';
|
|
12
12
|
type PegGroup = 'USD' | 'ETH';
|
|
13
13
|
type VmType = 'evm' | 'svm' | 'tvm';
|
|
14
14
|
type ChainNetwork = 'mainnet' | 'testnet';
|