@gfxlabs/oku-chains 0.0.23 → 0.0.24
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/browser.js +17 -0
- package/dist/index-mjs.js +17 -1
- package/dist/index.js +17 -0
- package/dist/index.mjs +17 -1
- package/dist/types/index.d.ts +1 -0
- package/package.json +3 -2
package/dist/browser.js
CHANGED
|
@@ -609,6 +609,23 @@
|
|
|
609
609
|
},
|
|
610
610
|
};
|
|
611
611
|
|
|
612
|
+
const MAINNET_CHAINS = [
|
|
613
|
+
arbitrum,
|
|
614
|
+
base,
|
|
615
|
+
boba,
|
|
616
|
+
bsc,
|
|
617
|
+
filecoin,
|
|
618
|
+
mainnet,
|
|
619
|
+
moonbeam,
|
|
620
|
+
optimism,
|
|
621
|
+
polygon,
|
|
622
|
+
rootstock,
|
|
623
|
+
scroll,
|
|
624
|
+
polygonZkEvm,
|
|
625
|
+
zkSync
|
|
626
|
+
];
|
|
627
|
+
|
|
628
|
+
exports.MAINNET_CHAINS = MAINNET_CHAINS;
|
|
612
629
|
exports.arbitrum = arbitrum;
|
|
613
630
|
exports.base = base;
|
|
614
631
|
exports.boba = boba;
|
package/dist/index-mjs.js
CHANGED
|
@@ -605,4 +605,20 @@ const zkSync = {
|
|
|
605
605
|
},
|
|
606
606
|
};
|
|
607
607
|
|
|
608
|
-
|
|
608
|
+
const MAINNET_CHAINS = [
|
|
609
|
+
arbitrum,
|
|
610
|
+
base,
|
|
611
|
+
boba,
|
|
612
|
+
bsc,
|
|
613
|
+
filecoin,
|
|
614
|
+
mainnet,
|
|
615
|
+
moonbeam,
|
|
616
|
+
optimism,
|
|
617
|
+
polygon,
|
|
618
|
+
rootstock,
|
|
619
|
+
scroll,
|
|
620
|
+
polygonZkEvm,
|
|
621
|
+
zkSync
|
|
622
|
+
];
|
|
623
|
+
|
|
624
|
+
export { MAINNET_CHAINS, arbitrum, base, boba, bsc, filecoin, mainnet, moonbeam, optimism, polygon, polygonZkEvm, rootstock, scroll, zkSync };
|
package/dist/index.js
CHANGED
|
@@ -607,6 +607,23 @@ const zkSync = {
|
|
|
607
607
|
},
|
|
608
608
|
};
|
|
609
609
|
|
|
610
|
+
const MAINNET_CHAINS = [
|
|
611
|
+
arbitrum,
|
|
612
|
+
base,
|
|
613
|
+
boba,
|
|
614
|
+
bsc,
|
|
615
|
+
filecoin,
|
|
616
|
+
mainnet,
|
|
617
|
+
moonbeam,
|
|
618
|
+
optimism,
|
|
619
|
+
polygon,
|
|
620
|
+
rootstock,
|
|
621
|
+
scroll,
|
|
622
|
+
polygonZkEvm,
|
|
623
|
+
zkSync
|
|
624
|
+
];
|
|
625
|
+
|
|
626
|
+
exports.MAINNET_CHAINS = MAINNET_CHAINS;
|
|
610
627
|
exports.arbitrum = arbitrum;
|
|
611
628
|
exports.base = base;
|
|
612
629
|
exports.boba = boba;
|
package/dist/index.mjs
CHANGED
|
@@ -605,4 +605,20 @@ const zkSync = {
|
|
|
605
605
|
},
|
|
606
606
|
};
|
|
607
607
|
|
|
608
|
-
|
|
608
|
+
const MAINNET_CHAINS = [
|
|
609
|
+
arbitrum,
|
|
610
|
+
base,
|
|
611
|
+
boba,
|
|
612
|
+
bsc,
|
|
613
|
+
filecoin,
|
|
614
|
+
mainnet,
|
|
615
|
+
moonbeam,
|
|
616
|
+
optimism,
|
|
617
|
+
polygon,
|
|
618
|
+
rootstock,
|
|
619
|
+
scroll,
|
|
620
|
+
polygonZkEvm,
|
|
621
|
+
zkSync
|
|
622
|
+
];
|
|
623
|
+
|
|
624
|
+
export { MAINNET_CHAINS, arbitrum, base, boba, bsc, filecoin, mainnet, moonbeam, optimism, polygon, polygonZkEvm, rootstock, scroll, zkSync };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Chain, ChainContract } from 'viem';
|
|
2
2
|
export * from './definitions/';
|
|
3
|
+
export declare const MAINNET_CHAINS: readonly [IChainInfo, IChainInfo, IChainInfo, IChainInfo, IChainInfo, IChainInfo, IChainInfo, IChainInfo, IChainInfo, IChainInfo, IChainInfo, IChainInfo, IChainInfo];
|
|
3
4
|
export interface IChainInfo extends Chain {
|
|
4
5
|
logoUrl: string;
|
|
5
6
|
sortIndex: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gfxlabs/oku-chains",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.24",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/types/index.d.ts",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"conventional-changelog-conventionalcommits": "^7.0.2",
|
|
31
31
|
"rollup": "^3.18.0",
|
|
32
32
|
"rollup-plugin-node-globals": "^1.4.0",
|
|
33
|
-
"semantic-release": "
|
|
33
|
+
"semantic-release": "20.0.1",
|
|
34
34
|
"semantic-release-monorepo": "^7.0.5",
|
|
35
35
|
"ts-node": "^10.9.1",
|
|
36
36
|
"tslib": "^2.5.0",
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"packageManager": "yarn@4.0.2",
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
43
|
+
"@semantic-release/commit-analyzer": "^11.1.0",
|
|
43
44
|
"barrelsby": "^2.8.1"
|
|
44
45
|
},
|
|
45
46
|
"peerDependencies": {
|