chain-registry 1.69.112 → 1.69.114

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 (43) hide show
  1. package/devnet/prysmdevnet/chain.js +12 -0
  2. package/esm/devnet/prysmdevnet/chain.js +12 -0
  3. package/esm/mainnet/elys/assets.js +327 -0
  4. package/esm/mainnet/mantrachain/assets.js +181 -2
  5. package/esm/mainnet/source/chain.js +0 -4
  6. package/esm/mainnet/stargaze/assets.js +21 -0
  7. package/esm/testnet/assets.js +2 -0
  8. package/esm/testnet/atomonetestnet/assets.js +32 -0
  9. package/esm/testnet/atomonetestnet/chain.js +134 -0
  10. package/esm/testnet/atomonetestnet/index.js +4 -0
  11. package/esm/testnet/axelartestnet/assets.js +1404 -0
  12. package/esm/testnet/chains.js +2 -0
  13. package/esm/testnet/cosmosicsprovidertestnet/chain.js +8 -0
  14. package/esm/testnet/elystestnet/chain.js +8 -0
  15. package/esm/testnet/manifesttestnet/assets.js +1288 -0
  16. package/esm/testnet/mantrachaintestnet2/assets.js +178 -2
  17. package/esm/testnet/named.js +1 -0
  18. package/esm/testnet/neutrontestnet/chain.js +14 -3
  19. package/esm/testnet/osmosistestnet/assets.js +1954 -4
  20. package/esm/testnet/pelltestnet/chain.js +8 -0
  21. package/mainnet/elys/assets.js +327 -0
  22. package/mainnet/mantrachain/assets.js +181 -2
  23. package/mainnet/source/chain.js +0 -4
  24. package/mainnet/stargaze/assets.js +21 -0
  25. package/package.json +4 -4
  26. package/testnet/assets.js +2 -0
  27. package/testnet/atomonetestnet/assets.d.ts +3 -0
  28. package/testnet/atomonetestnet/assets.js +34 -0
  29. package/testnet/atomonetestnet/chain.d.ts +3 -0
  30. package/testnet/atomonetestnet/chain.js +136 -0
  31. package/testnet/atomonetestnet/index.d.ts +2 -0
  32. package/testnet/atomonetestnet/index.js +10 -0
  33. package/testnet/axelartestnet/assets.js +1404 -0
  34. package/testnet/chains.js +2 -0
  35. package/testnet/cosmosicsprovidertestnet/chain.js +8 -0
  36. package/testnet/elystestnet/chain.js +8 -0
  37. package/testnet/manifesttestnet/assets.js +1288 -0
  38. package/testnet/mantrachaintestnet2/assets.js +178 -2
  39. package/testnet/named.d.ts +1 -0
  40. package/testnet/named.js +4 -3
  41. package/testnet/neutrontestnet/chain.js +14 -3
  42. package/testnet/osmosistestnet/assets.js +1954 -4
  43. package/testnet/pelltestnet/chain.js +8 -0
@@ -0,0 +1,32 @@
1
+ const info = {
2
+ $schema: '../../assetlist.schema.json',
3
+ chain_name: 'atomonetestnet',
4
+ assets: [{
5
+ description: 'The native staking and governance token of AtomOne',
6
+ denom_units: [{
7
+ denom: 'uatone',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'atone',
11
+ exponent: 6
12
+ }],
13
+ base: 'uatone',
14
+ name: 'Atone',
15
+ display: 'atone',
16
+ symbol: 'ATONE',
17
+ logo_URIs: {
18
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png',
19
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.svg'
20
+ },
21
+ images: [{
22
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png',
23
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.svg'
24
+ }],
25
+ type_asset: 'sdk.coin',
26
+ socials: {
27
+ website: 'https://atom.one',
28
+ twitter: 'https://x.com/_atomone'
29
+ }
30
+ }]
31
+ };
32
+ export default info;
@@ -0,0 +1,134 @@
1
+ const info = {
2
+ $schema: '../../chain.schema.json',
3
+ chain_name: 'atomonetestnet',
4
+ chain_type: 'cosmos',
5
+ chain_id: 'atomone-testnet-1',
6
+ website: 'https://github.com/atomone-hub/networks/tree/master/atomone-testnet-1',
7
+ pretty_name: 'AtomOne testnet-1',
8
+ status: 'live',
9
+ network_type: 'testnet',
10
+ bech32_prefix: 'atone',
11
+ daemon_name: 'atomoned',
12
+ node_home: '$HOME/.atomone',
13
+ key_algos: ['secp256k1'],
14
+ slip44: 118,
15
+ fees: {
16
+ fee_tokens: [{
17
+ denom: 'uatone',
18
+ fixed_min_gas_price: 0.001,
19
+ low_gas_price: 0.006,
20
+ average_gas_price: 0.006,
21
+ high_gas_price: 0.009
22
+ }]
23
+ },
24
+ staking: {
25
+ staking_tokens: [{
26
+ denom: 'uatone'
27
+ }]
28
+ },
29
+ codebase: {
30
+ git_repo: 'https://github.com/atomone-hub/atomone',
31
+ recommended_version: 'v1.0.0',
32
+ compatible_versions: ['v1.0.0'],
33
+ binaries: {
34
+ "linux/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-linux-amd64',
35
+ "linux/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-linux-arm64',
36
+ "darwin/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-darwin-amd64',
37
+ "darwin/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-darwin-arm64',
38
+ "windows/amd64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-windows-amd64.exe',
39
+ "windows/arm64": 'https://github.com/atomone-hub/atomone/releases/download/v1.0.0/atomoned-v1.0.0-windows-arm64.exe'
40
+ },
41
+ genesis: {
42
+ genesis_url: 'https://atomone.fra1.digitaloceanspaces.com/atomone-testnet-1/genesis.json'
43
+ },
44
+ consensus: {
45
+ type: 'cometbft',
46
+ version: 'v0.37.5'
47
+ },
48
+ sdk: {
49
+ type: 'cosmos',
50
+ version: 'v0.47.13'
51
+ }
52
+ },
53
+ logo_URIs: {
54
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png',
55
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.svg'
56
+ },
57
+ description: 'The Cosmos community, at a crossroads, confronts divergent views on key aspects such as mission, tokenomics, and security philosophy. AtomOne emerges as a beacon, offering an alternative fork to navigate these waters, equipped to handle contingencies and embodying a bastion for diverse political thought.',
58
+ apis: {
59
+ rpc: [
60
+ {
61
+ address: 'https://rpc-testnet-atomone.nodeist.net',
62
+ provider: 'Nodeist'
63
+ },
64
+ {
65
+ address: 'https://atomone-testnet-rpc.ibs.team',
66
+ provider: 'Inter Blockchain Services'
67
+ },
68
+ {
69
+ address: 'https://rpc-test.atomone.vinjan.xyz',
70
+ provider: 'Vinjan'
71
+ },
72
+ {
73
+ address: 'https://atomone.test.rpc.nodeshub.online',
74
+ provider: 'Nodes Hub'
75
+ },
76
+ {
77
+ address: 'https://rpc.atomone-testnet-1.atomone.aviaone.com:443',
78
+ provider: 'AVIAONE.com 🟢'
79
+ }
80
+ ],
81
+ rest: [
82
+ {
83
+ address: 'https://api-testnet-atomone.nodeist.net',
84
+ provider: 'Nodeist'
85
+ },
86
+ {
87
+ address: 'https://atomone-testnet-api.ibs.team',
88
+ provider: 'Inter Blockchain Services'
89
+ },
90
+ {
91
+ address: 'https://api-test.atomone.vinjan.xyz',
92
+ provider: 'Vinjan'
93
+ }
94
+ ],
95
+ grpc: [{
96
+ address: 'grpc.atomone-1.atomone.aviaone.com:9102',
97
+ provider: 'AVIAONE.com 🟢'
98
+ }, {
99
+ address: 'https://grpc-testnet-atomone.nodeist.net:443',
100
+ provider: 'Nodeist'
101
+ }]
102
+ },
103
+ explorers: [
104
+ {
105
+ kind: 'Nodes Hub 🛡️ 100% Slash Protected 🛡️',
106
+ url: 'https://testnet.explorer.nodeshub.online/atomone/',
107
+ tx_page: 'https://testnet.explorer.nodeshub.online/atomone/tx/${txHash}',
108
+ account_page: 'https://testnet.explorer.nodeshub.online/atomone/accounts/${accountAddress}'
109
+ },
110
+ {
111
+ kind: 'Nodeist Explorer',
112
+ url: 'https://explorer.ist/atomone',
113
+ tx_page: 'https://explorer.ist/atomone/tx/${txHash}',
114
+ account_page: 'https://explorer.ist/atomone/account/${accountAddress}'
115
+ },
116
+ {
117
+ kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
118
+ url: 'https://explorer.whenmoonwhenlambo.money/atomone-testnet',
119
+ tx_page: 'https://explorer.whenmoonwhenlambo.money/atomone-testnet/tx/${txHash}',
120
+ account_page: 'https://explorer.whenmoonwhenlambo.money/atomone-testnet/account/${accountAddress}'
121
+ },
122
+ {
123
+ kind: 'AVIAONE.com 🟢',
124
+ url: 'https://testnet.explorer.aviaone.com/atomone',
125
+ tx_page: 'https://testnet.explorer.aviaone.com/atomone/tx/${txHash}',
126
+ account_page: 'https://testnet.explorer.aviaone.com/atomone/account/${accountAddress}'
127
+ }
128
+ ],
129
+ images: [{
130
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png',
131
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.svg'
132
+ }]
133
+ };
134
+ 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;