@injectivelabs/networks 1.16.31 → 1.16.32

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.
@@ -31,19 +31,20 @@ export type NetworkEndpoints = {
31
31
  chart?: string;
32
32
  };
33
33
  export type UrlEndpoints = NetworkEndpoints; /** Deprecated */
34
+ export type InjectiveEvmNetworkParams = {
35
+ wInjAddress: string;
36
+ chainName: string;
37
+ chainId: string;
38
+ nativeCurrency: {
39
+ name: string;
40
+ symbol: string;
41
+ decimals: number;
42
+ };
43
+ };
34
44
  export type ChainInfo = {
35
45
  feeDenom: string;
36
46
  chainId: ChainId;
37
47
  env: string;
38
48
  evmChainId?: EvmChainId;
39
- injectiveEvmNetworkParams?: {
40
- wInjAddress: string;
41
- chainName: string;
42
- chainId: string;
43
- nativeCurrency: {
44
- name: string;
45
- symbol: string;
46
- decimals: number;
47
- };
48
- };
49
+ injectiveEvmNetworkParams: InjectiveEvmNetworkParams;
49
50
  };
@@ -31,19 +31,20 @@ export type NetworkEndpoints = {
31
31
  chart?: string;
32
32
  };
33
33
  export type UrlEndpoints = NetworkEndpoints; /** Deprecated */
34
+ export type InjectiveEvmNetworkParams = {
35
+ wInjAddress: string;
36
+ chainName: string;
37
+ chainId: string;
38
+ nativeCurrency: {
39
+ name: string;
40
+ symbol: string;
41
+ decimals: number;
42
+ };
43
+ };
34
44
  export type ChainInfo = {
35
45
  feeDenom: string;
36
46
  chainId: ChainId;
37
47
  env: string;
38
48
  evmChainId?: EvmChainId;
39
- injectiveEvmNetworkParams?: {
40
- wInjAddress: string;
41
- chainName: string;
42
- chainId: string;
43
- nativeCurrency: {
44
- name: string;
45
- symbol: string;
46
- decimals: number;
47
- };
48
- };
49
+ injectiveEvmNetworkParams: InjectiveEvmNetworkParams;
49
50
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@injectivelabs/networks",
3
3
  "description": "Endpoints, networks, etc. Can be reused throughout Injective's projects.",
4
- "version": "1.16.31",
4
+ "version": "1.16.32",
5
5
  "sideEffects": false,
6
6
  "type": "module",
7
7
  "license": "Apache-2.0",
@@ -56,10 +56,10 @@
56
56
  "start": "node dist/index.js"
57
57
  },
58
58
  "dependencies": {
59
- "@injectivelabs/ts-types": "1.16.31"
59
+ "@injectivelabs/ts-types": "1.16.32"
60
60
  },
61
61
  "devDependencies": {
62
62
  "shx": "^0.3.4"
63
63
  },
64
- "gitHead": "c41f0041d9b325c8c80204dcbe8644c8509f2d05"
64
+ "gitHead": "e4461cec60f6f1255f5cb63194ce855520cbeb2e"
65
65
  }