@chain-registry/osmosis 0.6.0 → 0.7.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/main/index.js CHANGED
@@ -24,6 +24,18 @@ Object.defineProperty(exports, "chain", {
24
24
  }
25
25
  });
26
26
  exports["default"] = void 0;
27
+ Object.defineProperty(exports, "testnet", {
28
+ enumerable: true,
29
+ get: function get() {
30
+ return _testnet["default"];
31
+ }
32
+ });
33
+ Object.defineProperty(exports, "testnet_assets", {
34
+ enumerable: true,
35
+ get: function get() {
36
+ return _testnet_assets["default"];
37
+ }
38
+ });
27
39
 
28
40
  var _asset_list = _interopRequireDefault(require("./asset_list"));
29
41
 
@@ -31,9 +43,15 @@ var _assets = _interopRequireDefault(require("./assets"));
31
43
 
32
44
  var _chain = _interopRequireDefault(require("./chain"));
33
45
 
46
+ var _testnet = _interopRequireDefault(require("./testnet"));
47
+
48
+ var _testnet_assets = _interopRequireDefault(require("./testnet_assets"));
49
+
34
50
  var _default = {
35
51
  chain: _chain["default"],
36
52
  assets: _assets["default"],
37
- asset_list: _asset_list["default"]
53
+ asset_list: _asset_list["default"],
54
+ testnet: _testnet["default"],
55
+ testnet_assets: _testnet_assets["default"]
38
56
  };
39
57
  exports["default"] = _default;
@@ -0,0 +1,90 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var testnet = {
8
+ $schema: '../../chain.schema.json',
9
+ chain_name: 'osmosistestnet',
10
+ status: 'live',
11
+ network_type: 'testnet',
12
+ pretty_name: 'Osmosis Testnet',
13
+ chain_id: 'osmo-test-4',
14
+ bech32_prefix: 'osmo',
15
+ daemon_name: 'osmosisd',
16
+ node_home: '$HOME/.osmosisd',
17
+ genesis: {
18
+ genesis_url: 'https://github.com/osmosis-labs/networks/raw/main/osmo-test-4/genesis.tar.bz2'
19
+ },
20
+ key_algos: ['secp256k1'],
21
+ slip44: 118,
22
+ fees: {
23
+ fee_tokens: [{
24
+ denom: 'uosmo',
25
+ fixed_min_gas_price: 0,
26
+ low_gas_price: 0,
27
+ average_gas_price: 0.025,
28
+ high_gas_price: 0.04
29
+ }]
30
+ },
31
+ staking: {
32
+ staking_tokens: [{
33
+ denom: 'uosmo'
34
+ }]
35
+ },
36
+ codebase: {
37
+ git_repo: 'https://github.com/osmosis-labs/osmosis',
38
+ recommended_version: 'v11.0.0',
39
+ compatible_versions: ['v11.0.0'],
40
+ cosmos_sdk_version: '0.45',
41
+ tendermint_version: '0.34',
42
+ cosmwasm_version: '0.24',
43
+ cosmwasm_enabled: true
44
+ },
45
+ peers: {
46
+ seeds: [{
47
+ id: '0f9a9c694c46bd28ad9ad6126e923993fc6c56b1',
48
+ address: '137.184.181.105:26656',
49
+ provider: ''
50
+ }],
51
+ persistent_peers: [{
52
+ id: '4ab030b7fd75ed895c48bcc899b99c17a396736b',
53
+ address: '137.184.190.127:26656',
54
+ provider: ''
55
+ }, {
56
+ id: '3dbffa30baab16cc8597df02945dcee0aa0a4581',
57
+ address: '143.198.139.33:26656',
58
+ provider: ''
59
+ }]
60
+ },
61
+ apis: {
62
+ rpc: [{
63
+ address: 'https://rpc.osmo-test.ccvalidators.com/',
64
+ provider: 'CryptoCrew'
65
+ }, {
66
+ address: 'https://osmosistest-rpc.quickapi.com/',
67
+ provider: 'ChainLayer'
68
+ }, {
69
+ address: 'https://testnet-rpc.osmosis.zone/',
70
+ provider: ''
71
+ }],
72
+ rest: [{
73
+ address: 'https://osmosistest-lcd.quickapi.com/',
74
+ provider: 'CryptoCrew'
75
+ }, {
76
+ address: 'https://lcd.osmo-test.ccvalidators.com/',
77
+ provider: 'ChainLayer'
78
+ }, {
79
+ address: 'https://testnet-rest.osmosis.zone/',
80
+ provider: ''
81
+ }],
82
+ grpc: []
83
+ },
84
+ logo_URIs: {
85
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png'
86
+ },
87
+ keywords: ['dex', 'testnet']
88
+ };
89
+ var _default = testnet;
90
+ exports["default"] = _default;
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var testnet_assets = {
8
+ $schema: '../../assetlist.schema.json',
9
+ chain_name: 'osmosistestnet',
10
+ assets: [{
11
+ description: 'The native token of Osmosis',
12
+ denom_units: [{
13
+ denom: 'uosmo',
14
+ exponent: 0,
15
+ aliases: []
16
+ }, {
17
+ denom: 'osmo',
18
+ exponent: 6,
19
+ aliases: []
20
+ }],
21
+ base: 'uosmo',
22
+ name: 'Osmosis',
23
+ display: 'osmo',
24
+ symbol: 'OSMO',
25
+ logo_URIs: {
26
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
27
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
28
+ },
29
+ coingecko_id: 'osmosis',
30
+ keywords: ['dex', 'staking']
31
+ }, {
32
+ denom_units: [{
33
+ denom: 'uion',
34
+ exponent: 0
35
+ }, {
36
+ denom: 'ion',
37
+ exponent: 6
38
+ }],
39
+ base: 'uion',
40
+ name: 'Ion',
41
+ display: 'ion',
42
+ symbol: 'ION',
43
+ logo_URIs: {
44
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
45
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
46
+ },
47
+ coingecko_id: 'ion',
48
+ keywords: ['memecoin']
49
+ }]
50
+ };
51
+ var _default = testnet_assets;
52
+ exports["default"] = _default;