@gfxlabs/oku-chains 0.0.4 → 0.0.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gfxlabs/oku-chains",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/types/index.d.ts",
@@ -1,2 +0,0 @@
1
- import { IChainInfo } from '..';
2
- export declare const arbitrum: IChainInfo;
@@ -1,2 +0,0 @@
1
- import { IChainInfo } from '..';
2
- export declare const boba: IChainInfo;
@@ -1,2 +0,0 @@
1
- import { IChainInfo } from '..';
2
- export declare const boba: IChainInfo;
@@ -1,2 +0,0 @@
1
- import { IChainInfo } from '..';
2
- export declare const bsc: IChainInfo;
@@ -1,2 +0,0 @@
1
- import { IChainInfo } from '..';
2
- export declare const filecoin: IChainInfo;
@@ -1,2 +0,0 @@
1
- import { IChainInfo } from '..';
2
- export declare const mainnet: IChainInfo;
@@ -1,2 +0,0 @@
1
- import { IChainInfo } from '..';
2
- export declare const moonbeam: IChainInfo;
@@ -1,2 +0,0 @@
1
- import { IChainInfo } from '..';
2
- export declare const optimism: IChainInfo;
@@ -1,2 +0,0 @@
1
- import { IChainInfo } from '..';
2
- export declare const polygon: IChainInfo;
@@ -1,2 +0,0 @@
1
- import { IChainInfo } from '..';
2
- export declare const rootstock: IChainInfo;
@@ -1,2 +0,0 @@
1
- import { IChainInfo } from '..';
2
- export declare const zkSync: IChainInfo;
@@ -1,37 +0,0 @@
1
- import { Chain, ChainContract } from 'viem';
2
- export { optimism } from './definitions/optimism.js';
3
- export { arbitrum } from './definitions/arbitrum.js';
4
- export { bsc } from './definitions/bsc.js';
5
- export { boba } from './definitions/boba.js';
6
- export { moonbeam } from './definitions/moonbeam.js';
7
- export { filecoin } from './definitions/filecoin.js';
8
- export { zkSync } from './definitions/zksync.js';
9
- export { polygon } from './definitions/polygon.js';
10
- export { mainnet } from './definitions/mainnet.js';
11
- export { rootstock } from './definitions/rootstock.js';
12
- export interface IChainInfo extends Chain {
13
- logoUrl: string;
14
- defaultPool: string;
15
- internalName: string;
16
- defaultToken0: string;
17
- defaultToken1: string;
18
- tokenList: {
19
- symbol: string;
20
- address: string;
21
- }[];
22
- stables: string[];
23
- watchlist: string[];
24
- blockTimeSeconds: number;
25
- contracts: {
26
- [key: string]: ChainContract | {
27
- [chainId: number]: ChainContract;
28
- };
29
- } & {
30
- ensRegistry?: ChainContract;
31
- ensUniversalResolver?: ChainContract;
32
- multicall3?: ChainContract;
33
- nftManager: ChainContract;
34
- limitOrder?: ChainContract;
35
- weth9: ChainContract;
36
- };
37
- }