@chain-registry/osmosis 0.5.3 → 0.7.1

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/module/index.js CHANGED
@@ -1,9 +1,13 @@
1
+ import asset_list from './asset_list';
1
2
  import assets from './assets';
2
3
  import chain from './chain';
3
- import ibc_assets from './ibc_assets';
4
+ import testnet from './testnet';
5
+ import testnet_assets from './testnet_assets';
4
6
  export default {
5
7
  chain,
6
8
  assets,
7
- ibc_assets
9
+ asset_list,
10
+ testnet,
11
+ testnet_assets
8
12
  };
9
- export { assets, chain, ibc_assets };
13
+ export { asset_list, assets, chain, testnet, testnet_assets };
@@ -0,0 +1,83 @@
1
+ const testnet = {
2
+ $schema: '../../chain.schema.json',
3
+ chain_name: 'osmosistestnet',
4
+ status: 'live',
5
+ network_type: 'testnet',
6
+ pretty_name: 'Osmosis Testnet',
7
+ chain_id: 'osmo-test-4',
8
+ bech32_prefix: 'osmo',
9
+ daemon_name: 'osmosisd',
10
+ node_home: '$HOME/.osmosisd',
11
+ genesis: {
12
+ genesis_url: 'https://github.com/osmosis-labs/networks/raw/main/osmo-test-4/genesis.tar.bz2'
13
+ },
14
+ key_algos: ['secp256k1'],
15
+ slip44: 118,
16
+ fees: {
17
+ fee_tokens: [{
18
+ denom: 'uosmo',
19
+ fixed_min_gas_price: 0,
20
+ low_gas_price: 0,
21
+ average_gas_price: 0.025,
22
+ high_gas_price: 0.04
23
+ }]
24
+ },
25
+ staking: {
26
+ staking_tokens: [{
27
+ denom: 'uosmo'
28
+ }]
29
+ },
30
+ codebase: {
31
+ git_repo: 'https://github.com/osmosis-labs/osmosis',
32
+ recommended_version: 'v11.0.0',
33
+ compatible_versions: ['v11.0.0'],
34
+ cosmos_sdk_version: '0.45',
35
+ tendermint_version: '0.34',
36
+ cosmwasm_version: '0.24',
37
+ cosmwasm_enabled: true
38
+ },
39
+ peers: {
40
+ seeds: [{
41
+ id: '0f9a9c694c46bd28ad9ad6126e923993fc6c56b1',
42
+ address: '137.184.181.105:26656',
43
+ provider: ''
44
+ }],
45
+ persistent_peers: [{
46
+ id: '4ab030b7fd75ed895c48bcc899b99c17a396736b',
47
+ address: '137.184.190.127:26656',
48
+ provider: ''
49
+ }, {
50
+ id: '3dbffa30baab16cc8597df02945dcee0aa0a4581',
51
+ address: '143.198.139.33:26656',
52
+ provider: ''
53
+ }]
54
+ },
55
+ apis: {
56
+ rpc: [{
57
+ address: 'https://rpc.osmo-test.ccvalidators.com/',
58
+ provider: 'CryptoCrew'
59
+ }, {
60
+ address: 'https://osmosistest-rpc.quickapi.com/',
61
+ provider: 'ChainLayer'
62
+ }, {
63
+ address: 'https://testnet-rpc.osmosis.zone/',
64
+ provider: ''
65
+ }],
66
+ rest: [{
67
+ address: 'https://osmosistest-lcd.quickapi.com/',
68
+ provider: 'CryptoCrew'
69
+ }, {
70
+ address: 'https://lcd.osmo-test.ccvalidators.com/',
71
+ provider: 'ChainLayer'
72
+ }, {
73
+ address: 'https://testnet-rest.osmosis.zone/',
74
+ provider: ''
75
+ }],
76
+ grpc: []
77
+ },
78
+ logo_URIs: {
79
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png'
80
+ },
81
+ keywords: ['dex', 'testnet']
82
+ };
83
+ export default testnet;
@@ -0,0 +1,45 @@
1
+ const testnet_assets = {
2
+ $schema: '../../assetlist.schema.json',
3
+ chain_name: 'osmosistestnet',
4
+ assets: [{
5
+ description: 'The native token of Osmosis',
6
+ denom_units: [{
7
+ denom: 'uosmo',
8
+ exponent: 0,
9
+ aliases: []
10
+ }, {
11
+ denom: 'osmo',
12
+ exponent: 6,
13
+ aliases: []
14
+ }],
15
+ base: 'uosmo',
16
+ name: 'Osmosis',
17
+ display: 'osmo',
18
+ symbol: 'OSMO',
19
+ logo_URIs: {
20
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
21
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
22
+ },
23
+ coingecko_id: 'osmosis',
24
+ keywords: ['dex', 'staking']
25
+ }, {
26
+ denom_units: [{
27
+ denom: 'uion',
28
+ exponent: 0
29
+ }, {
30
+ denom: 'ion',
31
+ exponent: 6
32
+ }],
33
+ base: 'uion',
34
+ name: 'Ion',
35
+ display: 'ion',
36
+ symbol: 'ION',
37
+ logo_URIs: {
38
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
39
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
40
+ },
41
+ coingecko_id: 'ion',
42
+ keywords: ['memecoin']
43
+ }]
44
+ };
45
+ export default testnet_assets;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chain-registry/osmosis",
3
- "version": "0.5.3",
3
+ "version": "0.7.1",
4
4
  "description": "Chain Registry info for Osmosis",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/cosmology-tech/chain-registry",
@@ -54,14 +54,14 @@
54
54
  "@babel/plugin-transform-runtime": "7.18.5",
55
55
  "@babel/preset-env": "7.18.2",
56
56
  "@babel/preset-typescript": "^7.17.12",
57
- "@chain-registry/utils": "^0.3.1",
57
+ "@chain-registry/utils": "^0.5.0",
58
58
  "@types/jest": "^28.1.1",
59
59
  "@typescript-eslint/eslint-plugin": "5.31.0",
60
60
  "@typescript-eslint/parser": "5.31.0",
61
61
  "babel-core": "7.0.0-bridge.0",
62
62
  "babel-jest": "28.1.1",
63
63
  "babel-watch": "^7.0.0",
64
- "chain-registry": "^0.6.3",
64
+ "chain-registry": "^0.8.0",
65
65
  "cross-env": "^7.0.2",
66
66
  "eslint": "8.20.0",
67
67
  "eslint-config-prettier": "^8.5.0",
@@ -77,7 +77,7 @@
77
77
  },
78
78
  "dependencies": {
79
79
  "@babel/runtime": "^7.18.3",
80
- "@chain-registry/types": "^0.4.0"
80
+ "@chain-registry/types": "^0.6.0"
81
81
  },
82
- "gitHead": "86ebd57b70eb7db19b83d4139fd80c3811178703"
82
+ "gitHead": "6a9f018da8b706e7fb7aa3514694026d9fc276c7"
83
83
  }
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const asset_list: AssetList;
3
+ export default asset_list;
package/types/index.d.ts CHANGED
@@ -1,10 +1,14 @@
1
+ import asset_list from './asset_list';
1
2
  import assets from './assets';
2
3
  import chain from './chain';
3
- import ibc_assets from './ibc_assets';
4
+ import testnet from './testnet';
5
+ import testnet_assets from './testnet_assets';
4
6
  declare const _default: {
5
- chain: import('@chain-registry/types').Chain;
6
- assets: import('@chain-registry/types').AssetList;
7
- ibc_assets: import('@chain-registry/types').IBCAsset;
7
+ chain: import("@chain-registry/types").Chain;
8
+ assets: import("@chain-registry/types").AssetList;
9
+ asset_list: import("@chain-registry/types").AssetList;
10
+ testnet: import("@chain-registry/types").Chain;
11
+ testnet_assets: import("@chain-registry/types").AssetList;
8
12
  };
9
13
  export default _default;
10
- export { assets, chain, ibc_assets };
14
+ export { asset_list, assets, chain, testnet, testnet_assets };
@@ -0,0 +1,3 @@
1
+ import { Chain } from '@chain-registry/types';
2
+ declare const testnet: Chain;
3
+ export default testnet;
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const testnet_assets: AssetList;
3
+ export default testnet_assets;
@@ -1,3 +0,0 @@
1
- import { IBCAsset } from '@chain-registry/types';
2
- declare const ibc_assets: IBCAsset;
3
- export default ibc_assets;