@juno-network/assets 0.6.1 → 0.7.2

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/chain.js CHANGED
@@ -12,25 +12,42 @@ var chain = {
12
12
  pretty_name: 'Juno',
13
13
  chain_id: 'juno-1',
14
14
  bech32_prefix: 'juno',
15
- slip44: 118,
15
+ daemon_name: 'junod',
16
+ node_home: '$HOME/.juno',
16
17
  genesis: {
17
18
  genesis_url: 'https://raw.githubusercontent.com/CosmosContracts/mainnet/main/juno-1/genesis.json'
18
19
  },
20
+ key_algos: ['secp256k1'],
21
+ slip44: 118,
22
+ fees: {
23
+ fee_tokens: [{
24
+ denom: 'ujuno',
25
+ low_gas_price: 0.03,
26
+ average_gas_price: 0.04,
27
+ high_gas_price: 0.05
28
+ }]
29
+ },
30
+ staking: {
31
+ staking_tokens: [{
32
+ denom: 'ujuno'
33
+ }]
34
+ },
19
35
  codebase: {
20
36
  git_repo: 'https://github.com/CosmosContracts/juno',
21
37
  recommended_version: 'v9.0.0',
22
- compatible_versions: ['v9.0.0']
38
+ compatible_versions: ['v9.0.0'],
39
+ cosmos_sdk_version: '0.45',
40
+ tendermint_version: '0.34',
41
+ cosmwasm_version: '0.27',
42
+ cosmwasm_enabled: true
23
43
  },
24
- daemon_name: 'junod',
25
- node_home: '$HOME/.juno',
26
- key_algos: ['secp256k1'],
27
44
  peers: {
28
45
  seeds: [{
29
46
  id: '2484353dab0b2c1275765b8ffa2c50b3b36158ca',
30
47
  address: 'seed-node.junochain.com:26656'
31
48
  }, {
32
- id: 'ef2315d81caa27e4b0fd0f267d301569ee958893',
33
- address: 'juno-seed.blockpane.com:26656'
49
+ id: '90b09362d9ce3845096c4938eea0dba682b0ad2c',
50
+ address: 'juno-seed-new.blockpane.com:26656'
34
51
  }, {
35
52
  id: '22ee6e65e5e79cd0b970dd11e52761de8d1d6dfd',
36
53
  address: 'seeds.pupmos.network:2001',
package/main/testnet.js CHANGED
@@ -4,6 +4,73 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports["default"] = void 0;
7
- var testnet = undefined;
7
+ var testnet = {
8
+ $schema: '../../chain.schema.json',
9
+ chain_name: 'junotestnet',
10
+ status: 'live',
11
+ network_type: 'testnet',
12
+ pretty_name: 'Juno Testnet',
13
+ chain_id: 'uni-3',
14
+ bech32_prefix: 'juno',
15
+ daemon_name: 'junod',
16
+ node_home: '$HOME/.juno',
17
+ genesis: {
18
+ genesis_url: 'https://raw.githubusercontent.com/CosmosContracts/testnets/main/uni-3/genesis.json'
19
+ },
20
+ key_algos: ['secp256k1'],
21
+ slip44: 118,
22
+ fees: {
23
+ fee_tokens: [{
24
+ denom: 'ujunox',
25
+ low_gas_price: 0.03,
26
+ average_gas_price: 0.04,
27
+ high_gas_price: 0.05
28
+ }]
29
+ },
30
+ staking: {
31
+ staking_tokens: [{
32
+ denom: 'ujunox'
33
+ }]
34
+ },
35
+ codebase: {
36
+ git_repo: 'https://github.com/CosmosContracts/juno',
37
+ recommended_version: 'v7.0.0-beta.2',
38
+ compatible_versions: ['v7.0.0-beta.2'],
39
+ cosmos_sdk_version: '0.45',
40
+ tendermint_version: '0.34',
41
+ cosmwasm_version: '0.27',
42
+ cosmwasm_enabled: true
43
+ },
44
+ peers: {
45
+ seeds: [],
46
+ persistent_peers: [{
47
+ id: 'ed90921d43ede634043d152d7a87e8881fb85e90',
48
+ address: '65.108.77.106:26709',
49
+ provider: 'EZStaking.io'
50
+ }]
51
+ },
52
+ apis: {
53
+ rpc: [{
54
+ address: 'https://rpc.uni.junomint.com',
55
+ provider: 'EZStaking.io'
56
+ }, {
57
+ address: 'https://rpc.uni.junonetwork.io',
58
+ provider: 'Juno'
59
+ }],
60
+ rest: [{
61
+ address: 'https://lcd.uni.junomint.com',
62
+ provider: 'EZStaking.io'
63
+ }, {
64
+ address: 'https://api.uni.junonetwork.io',
65
+ provider: 'Juno'
66
+ }],
67
+ grpc: []
68
+ },
69
+ explorers: [{
70
+ kind: 'Mintscan',
71
+ url: 'https://testnet.mintscan.io/juno-testnet',
72
+ tx_page: 'https://testnet.mintscan.io/juno-testnet/txs/${txHash}'
73
+ }]
74
+ };
8
75
  var _default = testnet;
9
76
  exports["default"] = _default;
@@ -4,6 +4,28 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports["default"] = void 0;
7
- var testnet_assets = undefined;
7
+ var testnet_assets = {
8
+ $schema: '../../assetlist.schema.json',
9
+ chain_name: 'junotestnet',
10
+ assets: [{
11
+ description: 'The native token of JUNO Chain',
12
+ denom_units: [{
13
+ denom: 'ujunox',
14
+ exponent: 0
15
+ }, {
16
+ denom: 'junox',
17
+ exponent: 6
18
+ }],
19
+ base: 'ujunox',
20
+ name: 'Juno Testnet',
21
+ display: 'junox',
22
+ symbol: 'JUNO',
23
+ logo_URIs: {
24
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.png',
25
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.svg'
26
+ },
27
+ coingecko_id: 'juno-network'
28
+ }]
29
+ };
8
30
  var _default = testnet_assets;
9
31
  exports["default"] = _default;