chain-registry 1.46.8 → 1.46.9

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.
Files changed (109) hide show
  1. package/devnet/assets.js +4 -0
  2. package/devnet/chains.js +4 -0
  3. package/devnet/named.d.ts +2 -0
  4. package/devnet/named.js +3 -1
  5. package/devnet/nibirudevnet/assets.d.ts +3 -0
  6. package/devnet/nibirudevnet/assets.js +29 -0
  7. package/devnet/nibirudevnet/chain.d.ts +3 -0
  8. package/devnet/nibirudevnet/chain.js +68 -0
  9. package/devnet/nibirudevnet/index.d.ts +2 -0
  10. package/devnet/nibirudevnet/index.js +10 -0
  11. package/devnet/nibirudevnet2/assets.d.ts +3 -0
  12. package/devnet/nibirudevnet2/assets.js +29 -0
  13. package/devnet/nibirudevnet2/chain.d.ts +3 -0
  14. package/devnet/nibirudevnet2/chain.js +68 -0
  15. package/devnet/nibirudevnet2/index.d.ts +2 -0
  16. package/devnet/nibirudevnet2/index.js +10 -0
  17. package/esm/devnet/assets.js +4 -0
  18. package/esm/devnet/chains.js +4 -0
  19. package/esm/devnet/named.js +2 -0
  20. package/esm/devnet/nibirudevnet/assets.js +27 -0
  21. package/esm/devnet/nibirudevnet/chain.js +66 -0
  22. package/esm/devnet/nibirudevnet/index.js +4 -0
  23. package/esm/devnet/nibirudevnet2/assets.js +27 -0
  24. package/esm/devnet/nibirudevnet2/chain.js +66 -0
  25. package/esm/devnet/nibirudevnet2/index.js +4 -0
  26. package/esm/mainnet/althea/chain.js +47 -0
  27. package/esm/mainnet/althea/index.js +2 -0
  28. package/esm/mainnet/assets.js +2 -0
  29. package/esm/mainnet/chains.js +4 -0
  30. package/esm/mainnet/composable/assets.js +12 -4
  31. package/esm/mainnet/cosmoshub/chain.js +2 -2
  32. package/esm/mainnet/dymension/assets.js +5 -1
  33. package/esm/mainnet/echelon/assets.js +0 -1
  34. package/esm/mainnet/injective/chain.js +2 -2
  35. package/esm/mainnet/juno/assets.js +0 -6
  36. package/esm/mainnet/named.js +2 -0
  37. package/esm/mainnet/neutron/assets.js +21 -0
  38. package/esm/mainnet/nibiru/assets.js +37 -2
  39. package/esm/mainnet/nim/assets.js +5 -1
  40. package/esm/mainnet/onex/chain.js +4 -1
  41. package/esm/mainnet/osmosis/assets.js +88 -33
  42. package/esm/mainnet/osmosis/chain.js +8 -0
  43. package/esm/mainnet/saga/chain.js +8 -0
  44. package/esm/mainnet/secretnetwork/assets.js +0 -1
  45. package/esm/mainnet/sunrise/assets.js +32 -0
  46. package/esm/mainnet/sunrise/chain.js +49 -0
  47. package/esm/mainnet/sunrise/index.js +4 -0
  48. package/esm/mainnet/terra/assets.js +2 -4
  49. package/esm/mainnet/terra2/assets.js +4 -4
  50. package/esm/testnet/assets.js +4 -0
  51. package/esm/testnet/chains.js +4 -0
  52. package/esm/testnet/named.js +2 -0
  53. package/esm/testnet/nibirutestnet/assets.js +27 -0
  54. package/esm/testnet/nibirutestnet/chain.js +66 -0
  55. package/esm/testnet/nibirutestnet/index.js +4 -0
  56. package/esm/testnet/nibirutestnet2/assets.js +27 -0
  57. package/esm/testnet/nibirutestnet2/chain.js +66 -0
  58. package/esm/testnet/nibirutestnet2/index.js +4 -0
  59. package/esm/testnet/planqtestnet/chain.js +5 -1
  60. package/esm/testnet/uniontestnet/chain.js +14 -14
  61. package/mainnet/althea/chain.d.ts +3 -0
  62. package/mainnet/althea/chain.js +49 -0
  63. package/mainnet/althea/index.d.ts +1 -0
  64. package/mainnet/althea/index.js +8 -0
  65. package/mainnet/assets.js +2 -0
  66. package/mainnet/chains.js +4 -0
  67. package/mainnet/composable/assets.js +12 -4
  68. package/mainnet/cosmoshub/chain.js +2 -2
  69. package/mainnet/dymension/assets.js +5 -1
  70. package/mainnet/echelon/assets.js +0 -1
  71. package/mainnet/injective/chain.js +2 -2
  72. package/mainnet/juno/assets.js +0 -6
  73. package/mainnet/named.d.ts +2 -0
  74. package/mainnet/named.js +6 -4
  75. package/mainnet/neutron/assets.js +21 -0
  76. package/mainnet/nibiru/assets.js +37 -2
  77. package/mainnet/nim/assets.js +5 -1
  78. package/mainnet/onex/chain.js +4 -1
  79. package/mainnet/osmosis/assets.js +88 -33
  80. package/mainnet/osmosis/chain.js +8 -0
  81. package/mainnet/saga/chain.js +8 -0
  82. package/mainnet/secretnetwork/assets.js +0 -1
  83. package/mainnet/sunrise/assets.d.ts +3 -0
  84. package/mainnet/sunrise/assets.js +34 -0
  85. package/mainnet/sunrise/chain.d.ts +3 -0
  86. package/mainnet/sunrise/chain.js +51 -0
  87. package/mainnet/sunrise/index.d.ts +2 -0
  88. package/mainnet/sunrise/index.js +10 -0
  89. package/mainnet/terra/assets.js +2 -4
  90. package/mainnet/terra2/assets.js +4 -4
  91. package/package.json +4 -4
  92. package/testnet/assets.js +4 -0
  93. package/testnet/chains.js +4 -0
  94. package/testnet/named.d.ts +2 -0
  95. package/testnet/named.js +3 -1
  96. package/testnet/nibirutestnet/assets.d.ts +3 -0
  97. package/testnet/nibirutestnet/assets.js +29 -0
  98. package/testnet/nibirutestnet/chain.d.ts +3 -0
  99. package/testnet/nibirutestnet/chain.js +68 -0
  100. package/testnet/nibirutestnet/index.d.ts +2 -0
  101. package/testnet/nibirutestnet/index.js +10 -0
  102. package/testnet/nibirutestnet2/assets.d.ts +3 -0
  103. package/testnet/nibirutestnet2/assets.js +29 -0
  104. package/testnet/nibirutestnet2/chain.d.ts +3 -0
  105. package/testnet/nibirutestnet2/chain.js +68 -0
  106. package/testnet/nibirutestnet2/index.d.ts +2 -0
  107. package/testnet/nibirutestnet2/index.js +10 -0
  108. package/testnet/planqtestnet/chain.js +5 -1
  109. package/testnet/uniontestnet/chain.js +14 -14
package/devnet/assets.js CHANGED
@@ -27,12 +27,16 @@ const _bitcannadevnet2 = __importStar(require("./bitcannadevnet2"));
27
27
  const _celestiatestnet2 = __importStar(require("./celestiatestnet2"));
28
28
  const _impacthubdevnet = __importStar(require("./impacthubdevnet"));
29
29
  const _kyvedevnet = __importStar(require("./kyvedevnet"));
30
+ const _nibirudevnet = __importStar(require("./nibirudevnet"));
31
+ const _nibirudevnet2 = __importStar(require("./nibirudevnet2"));
30
32
  const _seidevnet3 = __importStar(require("./seidevnet3"));
31
33
  const assets = [
32
34
  _bitcannadevnet2.assets,
33
35
  _celestiatestnet2.assets,
34
36
  _impacthubdevnet.assets,
35
37
  _kyvedevnet.assets,
38
+ _nibirudevnet.assets,
39
+ _nibirudevnet2.assets,
36
40
  _seidevnet3.assets
37
41
  ];
38
42
  exports.default = assets;
package/devnet/chains.js CHANGED
@@ -27,12 +27,16 @@ const _bitcannadevnet2 = __importStar(require("./bitcannadevnet2"));
27
27
  const _celestiatestnet2 = __importStar(require("./celestiatestnet2"));
28
28
  const _impacthubdevnet = __importStar(require("./impacthubdevnet"));
29
29
  const _kyvedevnet = __importStar(require("./kyvedevnet"));
30
+ const _nibirudevnet = __importStar(require("./nibirudevnet"));
31
+ const _nibirudevnet2 = __importStar(require("./nibirudevnet2"));
30
32
  const _seidevnet3 = __importStar(require("./seidevnet3"));
31
33
  const chains = [
32
34
  _bitcannadevnet2.chain,
33
35
  _celestiatestnet2.chain,
34
36
  _impacthubdevnet.chain,
35
37
  _kyvedevnet.chain,
38
+ _nibirudevnet.chain,
39
+ _nibirudevnet2.chain,
36
40
  _seidevnet3.chain
37
41
  ];
38
42
  exports.default = chains;
package/devnet/named.d.ts CHANGED
@@ -2,4 +2,6 @@ export * as bitcannadevnet2 from './bitcannadevnet2';
2
2
  export * as celestiatestnet2 from './celestiatestnet2';
3
3
  export * as impacthubdevnet from './impacthubdevnet';
4
4
  export * as kyvedevnet from './kyvedevnet';
5
+ export * as nibirudevnet from './nibirudevnet';
6
+ export * as nibirudevnet2 from './nibirudevnet2';
5
7
  export * as seidevnet3 from './seidevnet3';
package/devnet/named.js CHANGED
@@ -23,9 +23,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.seidevnet3 = exports.kyvedevnet = exports.impacthubdevnet = exports.celestiatestnet2 = exports.bitcannadevnet2 = void 0;
26
+ exports.seidevnet3 = exports.nibirudevnet2 = exports.nibirudevnet = exports.kyvedevnet = exports.impacthubdevnet = exports.celestiatestnet2 = exports.bitcannadevnet2 = void 0;
27
27
  exports.bitcannadevnet2 = __importStar(require("./bitcannadevnet2"));
28
28
  exports.celestiatestnet2 = __importStar(require("./celestiatestnet2"));
29
29
  exports.impacthubdevnet = __importStar(require("./impacthubdevnet"));
30
30
  exports.kyvedevnet = __importStar(require("./kyvedevnet"));
31
+ exports.nibirudevnet = __importStar(require("./nibirudevnet"));
32
+ exports.nibirudevnet2 = __importStar(require("./nibirudevnet2"));
31
33
  exports.seidevnet3 = __importStar(require("./seidevnet3"));
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chain_name: 'nibirudevnet',
6
+ assets: [{
7
+ description: 'The native token of Nibiru network',
8
+ denom_units: [{
9
+ denom: 'unibi',
10
+ exponent: 0
11
+ }, {
12
+ denom: 'nibi',
13
+ exponent: 6
14
+ }],
15
+ base: 'unibi',
16
+ name: 'Nibiru',
17
+ display: 'nibi',
18
+ symbol: 'NIBI',
19
+ logo_URIs: {
20
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
21
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
22
+ },
23
+ images: [{
24
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
25
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
26
+ }]
27
+ }]
28
+ };
29
+ exports.default = info;
@@ -0,0 +1,3 @@
1
+ import { Chain } from '@chain-registry/types';
2
+ declare const info: Chain;
3
+ export default info;
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chain_name: 'nibirudevnet',
6
+ status: 'live',
7
+ network_type: 'devnet',
8
+ website: 'https://nibiru.fi/',
9
+ pretty_name: 'Nibiru',
10
+ chain_id: 'nibiru-devnet-1',
11
+ bech32_prefix: 'nibi',
12
+ daemon_name: 'nibid',
13
+ node_home: '$HOME/.nibid',
14
+ key_algos: ['secp256k1'],
15
+ slip44: 118,
16
+ fees: {
17
+ fee_tokens: [{
18
+ denom: 'unibi',
19
+ fixed_min_gas_price: 0.025,
20
+ low_gas_price: 0.025,
21
+ average_gas_price: 0.05,
22
+ high_gas_price: 0.1
23
+ }]
24
+ },
25
+ staking: {
26
+ staking_tokens: [{
27
+ denom: 'unibi'
28
+ }],
29
+ lock_duration: {
30
+ time: '1814400s'
31
+ }
32
+ },
33
+ codebase: {
34
+ cosmos_sdk_version: 'v0.47.7',
35
+ cosmwasm_enabled: true,
36
+ cosmwasm_version: 'v0.44.0'
37
+ },
38
+ logo_URIs: {
39
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
40
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
41
+ },
42
+ description: 'A Web3 hub ushering in the next era of money',
43
+ apis: {
44
+ rpc: [{
45
+ address: 'https://rpc.devnet-1.nibiru.fi',
46
+ provider: 'Nibiru Foundation'
47
+ }],
48
+ rest: [{
49
+ address: 'https://lcd.devnet-1.nibiru.fi',
50
+ provider: 'Nibiru Foundation'
51
+ }],
52
+ grpc: [{
53
+ address: 'grpc.devnet-1.nibiru.fi:443',
54
+ provider: 'Nibiru Foundation'
55
+ }]
56
+ },
57
+ explorers: [{
58
+ kind: 'Nibiru Foundation',
59
+ url: 'https://explorer.nibiru.fi/nibiru-devnet-1',
60
+ tx_page: 'https://explorer.nibiru.fi/nibiru-devnet-1/tx/${txHash}',
61
+ account_page: 'https://explorer.nibiru.fi/nibiru-devnet-1/account/${accountAddress}'
62
+ }],
63
+ images: [{
64
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
65
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
66
+ }]
67
+ };
68
+ exports.default = info;
@@ -0,0 +1,2 @@
1
+ export declare const assets: import("@chain-registry/types").AssetList;
2
+ export declare const chain: import("@chain-registry/types").Chain;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.chain = exports.assets = void 0;
7
+ const assets_1 = __importDefault(require("./assets"));
8
+ const chain_1 = __importDefault(require("./chain"));
9
+ exports.assets = assets_1.default;
10
+ exports.chain = chain_1.default;
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chain_name: 'nibirudevnet2',
6
+ assets: [{
7
+ description: 'The native token of Nibiru network',
8
+ denom_units: [{
9
+ denom: 'unibi',
10
+ exponent: 0
11
+ }, {
12
+ denom: 'nibi',
13
+ exponent: 6
14
+ }],
15
+ base: 'unibi',
16
+ name: 'Nibiru',
17
+ display: 'nibi',
18
+ symbol: 'NIBI',
19
+ logo_URIs: {
20
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
21
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
22
+ },
23
+ images: [{
24
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
25
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
26
+ }]
27
+ }]
28
+ };
29
+ exports.default = info;
@@ -0,0 +1,3 @@
1
+ import { Chain } from '@chain-registry/types';
2
+ declare const info: Chain;
3
+ export default info;
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chain_name: 'nibirudevnet2',
6
+ status: 'live',
7
+ network_type: 'devnet',
8
+ website: 'https://nibiru.fi/',
9
+ pretty_name: 'Nibiru',
10
+ chain_id: 'nibiru-devnet-2',
11
+ bech32_prefix: 'nibi',
12
+ daemon_name: 'nibid',
13
+ node_home: '$HOME/.nibid',
14
+ key_algos: ['secp256k1'],
15
+ slip44: 118,
16
+ fees: {
17
+ fee_tokens: [{
18
+ denom: 'unibi',
19
+ fixed_min_gas_price: 0.025,
20
+ low_gas_price: 0.025,
21
+ average_gas_price: 0.05,
22
+ high_gas_price: 0.1
23
+ }]
24
+ },
25
+ staking: {
26
+ staking_tokens: [{
27
+ denom: 'unibi'
28
+ }],
29
+ lock_duration: {
30
+ time: '1814400s'
31
+ }
32
+ },
33
+ codebase: {
34
+ cosmos_sdk_version: 'v0.47.7',
35
+ cosmwasm_enabled: true,
36
+ cosmwasm_version: 'v0.44.0'
37
+ },
38
+ logo_URIs: {
39
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
40
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
41
+ },
42
+ description: 'A Web3 hub ushering in the next era of money',
43
+ apis: {
44
+ rpc: [{
45
+ address: 'https://rpc.devnet-2.nibiru.fi',
46
+ provider: 'Nibiru Foundation'
47
+ }],
48
+ rest: [{
49
+ address: 'https://lcd.devnet-2.nibiru.fi',
50
+ provider: 'Nibiru Foundation'
51
+ }],
52
+ grpc: [{
53
+ address: 'grpc.devnet-2.nibiru.fi:443',
54
+ provider: 'Nibiru Foundation'
55
+ }]
56
+ },
57
+ explorers: [{
58
+ kind: 'Nibiru Foundation',
59
+ url: 'https://explorer.nibiru.fi/nibiru-devnet-2',
60
+ tx_page: 'https://explorer.nibiru.fi/nibiru-devnet-2/tx/${txHash}',
61
+ account_page: 'https://explorer.nibiru.fi/nibiru-devnet-2/account/${accountAddress}'
62
+ }],
63
+ images: [{
64
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
65
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
66
+ }]
67
+ };
68
+ exports.default = info;
@@ -0,0 +1,2 @@
1
+ export declare const assets: import("@chain-registry/types").AssetList;
2
+ export declare const chain: import("@chain-registry/types").Chain;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.chain = exports.assets = void 0;
7
+ const assets_1 = __importDefault(require("./assets"));
8
+ const chain_1 = __importDefault(require("./chain"));
9
+ exports.assets = assets_1.default;
10
+ exports.chain = chain_1.default;
@@ -2,12 +2,16 @@ import * as _bitcannadevnet2 from './bitcannadevnet2';
2
2
  import * as _celestiatestnet2 from './celestiatestnet2';
3
3
  import * as _impacthubdevnet from './impacthubdevnet';
4
4
  import * as _kyvedevnet from './kyvedevnet';
5
+ import * as _nibirudevnet from './nibirudevnet';
6
+ import * as _nibirudevnet2 from './nibirudevnet2';
5
7
  import * as _seidevnet3 from './seidevnet3';
6
8
  const assets = [
7
9
  _bitcannadevnet2.assets,
8
10
  _celestiatestnet2.assets,
9
11
  _impacthubdevnet.assets,
10
12
  _kyvedevnet.assets,
13
+ _nibirudevnet.assets,
14
+ _nibirudevnet2.assets,
11
15
  _seidevnet3.assets
12
16
  ];
13
17
  export default assets;
@@ -2,12 +2,16 @@ import * as _bitcannadevnet2 from './bitcannadevnet2';
2
2
  import * as _celestiatestnet2 from './celestiatestnet2';
3
3
  import * as _impacthubdevnet from './impacthubdevnet';
4
4
  import * as _kyvedevnet from './kyvedevnet';
5
+ import * as _nibirudevnet from './nibirudevnet';
6
+ import * as _nibirudevnet2 from './nibirudevnet2';
5
7
  import * as _seidevnet3 from './seidevnet3';
6
8
  const chains = [
7
9
  _bitcannadevnet2.chain,
8
10
  _celestiatestnet2.chain,
9
11
  _impacthubdevnet.chain,
10
12
  _kyvedevnet.chain,
13
+ _nibirudevnet.chain,
14
+ _nibirudevnet2.chain,
11
15
  _seidevnet3.chain
12
16
  ];
13
17
  export default chains;
@@ -2,4 +2,6 @@ export * as bitcannadevnet2 from './bitcannadevnet2';
2
2
  export * as celestiatestnet2 from './celestiatestnet2';
3
3
  export * as impacthubdevnet from './impacthubdevnet';
4
4
  export * as kyvedevnet from './kyvedevnet';
5
+ export * as nibirudevnet from './nibirudevnet';
6
+ export * as nibirudevnet2 from './nibirudevnet2';
5
7
  export * as seidevnet3 from './seidevnet3';
@@ -0,0 +1,27 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chain_name: 'nibirudevnet',
4
+ assets: [{
5
+ description: 'The native token of Nibiru network',
6
+ denom_units: [{
7
+ denom: 'unibi',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'nibi',
11
+ exponent: 6
12
+ }],
13
+ base: 'unibi',
14
+ name: 'Nibiru',
15
+ display: 'nibi',
16
+ symbol: 'NIBI',
17
+ logo_URIs: {
18
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
19
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
20
+ },
21
+ images: [{
22
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
23
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
24
+ }]
25
+ }]
26
+ };
27
+ export default info;
@@ -0,0 +1,66 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chain_name: 'nibirudevnet',
4
+ status: 'live',
5
+ network_type: 'devnet',
6
+ website: 'https://nibiru.fi/',
7
+ pretty_name: 'Nibiru',
8
+ chain_id: 'nibiru-devnet-1',
9
+ bech32_prefix: 'nibi',
10
+ daemon_name: 'nibid',
11
+ node_home: '$HOME/.nibid',
12
+ key_algos: ['secp256k1'],
13
+ slip44: 118,
14
+ fees: {
15
+ fee_tokens: [{
16
+ denom: 'unibi',
17
+ fixed_min_gas_price: 0.025,
18
+ low_gas_price: 0.025,
19
+ average_gas_price: 0.05,
20
+ high_gas_price: 0.1
21
+ }]
22
+ },
23
+ staking: {
24
+ staking_tokens: [{
25
+ denom: 'unibi'
26
+ }],
27
+ lock_duration: {
28
+ time: '1814400s'
29
+ }
30
+ },
31
+ codebase: {
32
+ cosmos_sdk_version: 'v0.47.7',
33
+ cosmwasm_enabled: true,
34
+ cosmwasm_version: 'v0.44.0'
35
+ },
36
+ logo_URIs: {
37
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
38
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
39
+ },
40
+ description: 'A Web3 hub ushering in the next era of money',
41
+ apis: {
42
+ rpc: [{
43
+ address: 'https://rpc.devnet-1.nibiru.fi',
44
+ provider: 'Nibiru Foundation'
45
+ }],
46
+ rest: [{
47
+ address: 'https://lcd.devnet-1.nibiru.fi',
48
+ provider: 'Nibiru Foundation'
49
+ }],
50
+ grpc: [{
51
+ address: 'grpc.devnet-1.nibiru.fi:443',
52
+ provider: 'Nibiru Foundation'
53
+ }]
54
+ },
55
+ explorers: [{
56
+ kind: 'Nibiru Foundation',
57
+ url: 'https://explorer.nibiru.fi/nibiru-devnet-1',
58
+ tx_page: 'https://explorer.nibiru.fi/nibiru-devnet-1/tx/${txHash}',
59
+ account_page: 'https://explorer.nibiru.fi/nibiru-devnet-1/account/${accountAddress}'
60
+ }],
61
+ images: [{
62
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
63
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
64
+ }]
65
+ };
66
+ export default info;
@@ -0,0 +1,4 @@
1
+ import _assets from './assets';
2
+ import _chain from './chain';
3
+ export const assets = _assets;
4
+ export const chain = _chain;
@@ -0,0 +1,27 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chain_name: 'nibirudevnet2',
4
+ assets: [{
5
+ description: 'The native token of Nibiru network',
6
+ denom_units: [{
7
+ denom: 'unibi',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'nibi',
11
+ exponent: 6
12
+ }],
13
+ base: 'unibi',
14
+ name: 'Nibiru',
15
+ display: 'nibi',
16
+ symbol: 'NIBI',
17
+ logo_URIs: {
18
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
19
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
20
+ },
21
+ images: [{
22
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
23
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
24
+ }]
25
+ }]
26
+ };
27
+ export default info;
@@ -0,0 +1,66 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chain_name: 'nibirudevnet2',
4
+ status: 'live',
5
+ network_type: 'devnet',
6
+ website: 'https://nibiru.fi/',
7
+ pretty_name: 'Nibiru',
8
+ chain_id: 'nibiru-devnet-2',
9
+ bech32_prefix: 'nibi',
10
+ daemon_name: 'nibid',
11
+ node_home: '$HOME/.nibid',
12
+ key_algos: ['secp256k1'],
13
+ slip44: 118,
14
+ fees: {
15
+ fee_tokens: [{
16
+ denom: 'unibi',
17
+ fixed_min_gas_price: 0.025,
18
+ low_gas_price: 0.025,
19
+ average_gas_price: 0.05,
20
+ high_gas_price: 0.1
21
+ }]
22
+ },
23
+ staking: {
24
+ staking_tokens: [{
25
+ denom: 'unibi'
26
+ }],
27
+ lock_duration: {
28
+ time: '1814400s'
29
+ }
30
+ },
31
+ codebase: {
32
+ cosmos_sdk_version: 'v0.47.7',
33
+ cosmwasm_enabled: true,
34
+ cosmwasm_version: 'v0.44.0'
35
+ },
36
+ logo_URIs: {
37
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
38
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
39
+ },
40
+ description: 'A Web3 hub ushering in the next era of money',
41
+ apis: {
42
+ rpc: [{
43
+ address: 'https://rpc.devnet-2.nibiru.fi',
44
+ provider: 'Nibiru Foundation'
45
+ }],
46
+ rest: [{
47
+ address: 'https://lcd.devnet-2.nibiru.fi',
48
+ provider: 'Nibiru Foundation'
49
+ }],
50
+ grpc: [{
51
+ address: 'grpc.devnet-2.nibiru.fi:443',
52
+ provider: 'Nibiru Foundation'
53
+ }]
54
+ },
55
+ explorers: [{
56
+ kind: 'Nibiru Foundation',
57
+ url: 'https://explorer.nibiru.fi/nibiru-devnet-2',
58
+ tx_page: 'https://explorer.nibiru.fi/nibiru-devnet-2/tx/${txHash}',
59
+ account_page: 'https://explorer.nibiru.fi/nibiru-devnet-2/account/${accountAddress}'
60
+ }],
61
+ images: [{
62
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
63
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
64
+ }]
65
+ };
66
+ export default info;
@@ -0,0 +1,4 @@
1
+ import _assets from './assets';
2
+ import _chain from './chain';
3
+ export const assets = _assets;
4
+ export const chain = _chain;
@@ -0,0 +1,47 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chain_name: 'althea',
4
+ status: 'live',
5
+ network_type: 'mainnet',
6
+ website: 'https://althea.net/',
7
+ pretty_name: 'Althea',
8
+ chain_id: 'althea_258432-1',
9
+ bech32_prefix: 'althea',
10
+ daemon_name: 'althea',
11
+ node_home: '$HOME/.althea',
12
+ slip44: 118,
13
+ fees: {
14
+ fee_tokens: [{
15
+ denom: 'aalthea',
16
+ fixed_min_gas_price: 100000000000,
17
+ low_gas_price: 100000000000,
18
+ average_gas_price: 100000000000,
19
+ high_gas_price: 300000000000
20
+ }]
21
+ },
22
+ staking: {
23
+ staking_tokens: [{
24
+ denom: 'aalthea'
25
+ }]
26
+ },
27
+ logo_URIs: {
28
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/althea/images/althea.png'
29
+ },
30
+ images: [{
31
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/althea/images/althea.png'
32
+ }, {
33
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/althea/images/althea.svg'
34
+ }],
35
+ codebase: {},
36
+ apis: {
37
+ rest: [{
38
+ address: 'https://nodes.chandrastation.com/api/althea/',
39
+ provider: 'Chandra Station'
40
+ }],
41
+ rpc: [{
42
+ address: 'https://nodes.chandrastation.com/rpc/althea/',
43
+ provider: 'Chandra Station'
44
+ }]
45
+ }
46
+ };
47
+ export default info;
@@ -0,0 +1,2 @@
1
+ import _chain from './chain';
2
+ export const chain = _chain;
@@ -146,6 +146,7 @@ import * as _stargaze from './stargaze';
146
146
  import * as _starname from './starname';
147
147
  import * as _stratos from './stratos';
148
148
  import * as _stride from './stride';
149
+ import * as _sunrise from './sunrise';
149
150
  import * as _tenet from './tenet';
150
151
  import * as _teritori from './teritori';
151
152
  import * as _terpnetwork from './terpnetwork';
@@ -309,6 +310,7 @@ const assets = [
309
310
  _starname.assets,
310
311
  _stratos.assets,
311
312
  _stride.assets,
313
+ _sunrise.assets,
312
314
  _tenet.assets,
313
315
  _teritori.assets,
314
316
  _terpnetwork.assets,
@@ -4,6 +4,7 @@ import * as _agoric from './agoric';
4
4
  import * as _aioz from './aioz';
5
5
  import * as _akash from './akash';
6
6
  import * as _akiro from './akiro';
7
+ import * as _althea from './althea';
7
8
  import * as _andromeda from './andromeda';
8
9
  import * as _andromeda1 from './andromeda1';
9
10
  import * as _archway from './archway';
@@ -147,6 +148,7 @@ import * as _stargaze from './stargaze';
147
148
  import * as _starname from './starname';
148
149
  import * as _stratos from './stratos';
149
150
  import * as _stride from './stride';
151
+ import * as _sunrise from './sunrise';
150
152
  import * as _tenet from './tenet';
151
153
  import * as _teritori from './teritori';
152
154
  import * as _terpnetwork from './terpnetwork';
@@ -169,6 +171,7 @@ const chains = [
169
171
  _aioz.chain,
170
172
  _akash.chain,
171
173
  _akiro.chain,
174
+ _althea.chain,
172
175
  _andromeda.chain,
173
176
  _andromeda1.chain,
174
177
  _archway.chain,
@@ -312,6 +315,7 @@ const chains = [
312
315
  _starname.chain,
313
316
  _stratos.chain,
314
317
  _stride.chain,
318
+ _sunrise.chain,
315
319
  _tenet.chain,
316
320
  _teritori.chain,
317
321
  _terpnetwork.chain,