chain-registry 2.0.55 → 2.0.57

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 (44) hide show
  1. package/esm/mainnet/asset-lists.js +2 -0
  2. package/esm/mainnet/atomone/chain.js +18 -0
  3. package/esm/mainnet/chain4energy/chain.js +18 -0
  4. package/esm/mainnet/chains.js +2 -0
  5. package/esm/mainnet/doravota/chain.js +17 -0
  6. package/esm/mainnet/gonka/asset-list.js +38 -0
  7. package/esm/mainnet/gonka/chain.js +154 -0
  8. package/esm/mainnet/gonka/index.js +4 -0
  9. package/esm/mainnet/sunrise/asset-list.js +1 -1
  10. package/esm/mainnet/sunrise/chain.js +36 -0
  11. package/esm/mainnet/terra/asset-list.js +26 -0
  12. package/esm/mainnet/terra/chain.js +25 -41
  13. package/esm/testnet/ibc-data.js +2 -0
  14. package/esm/testnet/lumeratestnet/asset-list.js +43 -0
  15. package/esm/testnet/lumeratestnet/chain.js +3 -3
  16. package/esm/testnet/lumeratestnet/ibc-data.js +31 -0
  17. package/esm/testnet/lumeratestnet/index.js +2 -0
  18. package/esm/testnet/osmosistestnet/ibc-data.js +30 -0
  19. package/esm/testnet/sunrisetestnet/asset-list.js +1 -1
  20. package/mainnet/asset-lists.js +2 -0
  21. package/mainnet/atomone/chain.js +18 -0
  22. package/mainnet/chain4energy/chain.js +18 -0
  23. package/mainnet/chains.js +2 -0
  24. package/mainnet/doravota/chain.js +17 -0
  25. package/mainnet/gonka/asset-list.d.ts +3 -0
  26. package/mainnet/gonka/asset-list.js +40 -0
  27. package/mainnet/gonka/chain.d.ts +3 -0
  28. package/mainnet/gonka/chain.js +156 -0
  29. package/mainnet/gonka/index.d.ts +2 -0
  30. package/mainnet/gonka/index.js +10 -0
  31. package/mainnet/sunrise/asset-list.js +1 -1
  32. package/mainnet/sunrise/chain.js +36 -0
  33. package/mainnet/terra/asset-list.js +26 -0
  34. package/mainnet/terra/chain.js +25 -41
  35. package/package.json +3 -3
  36. package/testnet/ibc-data.js +2 -0
  37. package/testnet/lumeratestnet/asset-list.js +43 -0
  38. package/testnet/lumeratestnet/chain.js +3 -3
  39. package/testnet/lumeratestnet/ibc-data.d.ts +3 -0
  40. package/testnet/lumeratestnet/ibc-data.js +33 -0
  41. package/testnet/lumeratestnet/index.d.ts +1 -0
  42. package/testnet/lumeratestnet/index.js +3 -1
  43. package/testnet/osmosistestnet/ibc-data.js +30 -0
  44. package/testnet/sunrisetestnet/asset-list.js +1 -1
@@ -36,14 +36,14 @@ const info = {
36
36
  },
37
37
  codebase: {
38
38
  gitRepo: 'https://github.com/LumeraProtocol/lumera',
39
- tag: 'v0.4.3',
40
- recommendedVersion: 'v0.4.3',
39
+ tag: 'v1.7.0',
40
+ recommendedVersion: 'v1.7.0',
41
41
  language: {
42
42
  type: 'go',
43
43
  version: 'v1.24'
44
44
  },
45
45
  binaries: {
46
- "linux/amd64": 'https://github.com/LumeraProtocol/lumera/releases/download/v0.4.3/lumera_v0.4.3_linux_amd64.tar.gz?checksum=sha256:f82f82e6350e1c8b893bc631c24342b3ac1b487bb69079cff51131ae5dc8ca15'
46
+ "linux/amd64": 'https://github.com/LumeraProtocol/lumera/releases/download/v1.7.0/lumera_v1.7.0_linux_amd64.tar.gz?checksum=sha256:1a5a612e5f06a5d4c4a6a2b2b8799336093a9951fcc6e81ef0a56dcc0f913e50'
47
47
  },
48
48
  sdk: {
49
49
  type: 'cosmos',
@@ -0,0 +1,31 @@
1
+ const info = [{
2
+ $schema: '../../ibc_data.schema.json',
3
+ chain1: {
4
+ chainName: 'lumeratestnet',
5
+ clientId: '07-tendermint-2',
6
+ connectionId: 'connection-1'
7
+ },
8
+ chain2: {
9
+ chainName: 'osmosistestnet',
10
+ clientId: '07-tendermint-4899',
11
+ connectionId: 'connection-4268'
12
+ },
13
+ channels: [{
14
+ chain1: {
15
+ channelId: 'channel-0',
16
+ portId: 'transfer'
17
+ },
18
+ chain2: {
19
+ channelId: 'channel-10884',
20
+ portId: 'transfer'
21
+ },
22
+ ordering: 'unordered',
23
+ version: 'ics20-1',
24
+ tags: {
25
+ status: 'live',
26
+ preferred: true,
27
+ dex: 'osmosis'
28
+ }
29
+ }]
30
+ }];
31
+ export default info;
@@ -1,4 +1,6 @@
1
1
  import _assetList from './asset-list';
2
2
  import _chain from './chain';
3
+ import _ibcData from './ibc-data';
3
4
  export const assetList = _assetList;
4
5
  export const chain = _chain;
6
+ export const ibcData = _ibcData;
@@ -698,6 +698,36 @@ const info = [
698
698
  }
699
699
  }]
700
700
  },
701
+ {
702
+ $schema: '../../ibc_data.schema.json',
703
+ chain1: {
704
+ chainName: 'lumeratestnet',
705
+ clientId: '07-tendermint-2',
706
+ connectionId: 'connection-1'
707
+ },
708
+ chain2: {
709
+ chainName: 'osmosistestnet',
710
+ clientId: '07-tendermint-4899',
711
+ connectionId: 'connection-4268'
712
+ },
713
+ channels: [{
714
+ chain1: {
715
+ channelId: 'channel-0',
716
+ portId: 'transfer'
717
+ },
718
+ chain2: {
719
+ channelId: 'channel-10884',
720
+ portId: 'transfer'
721
+ },
722
+ ordering: 'unordered',
723
+ version: 'ics20-1',
724
+ tags: {
725
+ status: 'live',
726
+ preferred: true,
727
+ dex: 'osmosis'
728
+ }
729
+ }]
730
+ },
701
731
  {
702
732
  $schema: '../../ibc_data.schema.json',
703
733
  chain1: {
@@ -71,7 +71,7 @@ const info = {
71
71
  base: 'uusdrise',
72
72
  name: 'Sunrise USDrise',
73
73
  display: 'usdrise',
74
- symbol: 'USDRISE',
74
+ symbol: 'USDrise',
75
75
  logoURIs: {
76
76
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.png',
77
77
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.svg'
@@ -101,6 +101,7 @@ const _gateway = __importStar(require("./gateway"));
101
101
  const _genesisl1 = __importStar(require("./genesisl1"));
102
102
  const _ggezchain = __importStar(require("./ggezchain"));
103
103
  const _gitopia = __importStar(require("./gitopia"));
104
+ const _gonka = __importStar(require("./gonka"));
104
105
  const _govgen = __importStar(require("./govgen"));
105
106
  const _gravitybridge = __importStar(require("./gravitybridge"));
106
107
  const _haqq = __importStar(require("./haqq"));
@@ -315,6 +316,7 @@ const assetList = [
315
316
  _genesisl1.assetList,
316
317
  _ggezchain.assetList,
317
318
  _gitopia.assetList,
319
+ _gonka.assetList,
318
320
  _govgen.assetList,
319
321
  _gravitybridge.assetList,
320
322
  _haqq.assetList,
@@ -152,6 +152,10 @@ const info = {
152
152
  {
153
153
  address: 'https://rpc-atomone.22node.xyz',
154
154
  provider: '22node'
155
+ },
156
+ {
157
+ address: 'https://m-atomone-rpc.ruangnode.com:443',
158
+ provider: 'ruangnode'
155
159
  }
156
160
  ],
157
161
  rest: [
@@ -242,6 +246,10 @@ const info = {
242
246
  {
243
247
  address: 'https://rest-atomone.22node.xyz',
244
248
  provider: '22node'
249
+ },
250
+ {
251
+ address: 'https://m-atomone-api.ruangnode.com:443',
252
+ provider: 'ruangnode'
245
253
  }
246
254
  ],
247
255
  grpc: [
@@ -304,6 +312,10 @@ const info = {
304
312
  {
305
313
  address: 'grpc-atomone.22node.xyz',
306
314
  provider: 'Shazoes'
315
+ },
316
+ {
317
+ address: 'm-atomone-grpc.ruangnode.com:12090',
318
+ provider: 'ruangnode'
307
319
  }
308
320
  ]
309
321
  },
@@ -379,6 +391,12 @@ const info = {
379
391
  url: 'https://explorer.chainroot.io/atomone',
380
392
  txPage: 'https://explorer.chainroot.io/atomone/transactions/${txHash}',
381
393
  accountPage: 'https://explorer.chainroot.io/atomone/accounts/${accountAddress}'
394
+ },
395
+ {
396
+ kind: 'Ruangnode Explorer',
397
+ url: 'https://explorer.ruangnode.com/atomone',
398
+ txPage: 'https://explorer.ruangnode.com/atomone/tx/${txHash}',
399
+ accountPage: 'https://explorer.ruangnode.com/atomone/account/${accountAddress}'
382
400
  }
383
401
  ],
384
402
  images: [{
@@ -160,6 +160,10 @@ const info = {
160
160
  {
161
161
  address: 'https://chain4energy_mainnet_rpc.chain.whenmoonwhenlambo.money',
162
162
  provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
163
+ },
164
+ {
165
+ address: 'https://rpc.polcrypto.pl:443',
166
+ provider: 'POLCRYPTO.PL'
163
167
  }
164
168
  ],
165
169
  rest: [
@@ -266,6 +270,10 @@ const info = {
266
270
  {
267
271
  address: 'https://chain4energy_mainnet_api.chain.whenmoonwhenlambo.money',
268
272
  provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
273
+ },
274
+ {
275
+ address: 'https://rest.polcrypto.pl:443',
276
+ provider: 'POLCRYPTO.PL'
269
277
  }
270
278
  ],
271
279
  grpc: [
@@ -368,6 +376,10 @@ const info = {
368
376
  {
369
377
  address: 'http://207.180.208.47:46657',
370
378
  provider: 'NakoTurk'
379
+ },
380
+ {
381
+ address: 'grpc.polcrypto.pl:443',
382
+ provider: 'POLCRYPTO.PL'
371
383
  }
372
384
  ]
373
385
  },
@@ -454,6 +466,12 @@ const info = {
454
466
  url: 'https://explorer.whenmoonwhenlambo.money/chain4energy',
455
467
  txPage: 'https://explorer.whenmoonwhenlambo.money/chain4energy/tx/${txHash}',
456
468
  accountPage: 'https://explorer.whenmoonwhenlambo.money/chain4energy/account/${accountAddress}'
469
+ },
470
+ {
471
+ kind: 'POLCRYPTO.PL',
472
+ url: 'https://explorer.polcrypto.pl',
473
+ txPage: 'https://explorer.polcrypto.pl/tx/${txHash}',
474
+ accountPage: 'https://explorer.polcrypto.pl/account/${accountAddress}'
457
475
  }
458
476
  ],
459
477
  images: [{
package/mainnet/chains.js CHANGED
@@ -101,6 +101,7 @@ const _gateway = __importStar(require("./gateway"));
101
101
  const _genesisl1 = __importStar(require("./genesisl1"));
102
102
  const _ggezchain = __importStar(require("./ggezchain"));
103
103
  const _gitopia = __importStar(require("./gitopia"));
104
+ const _gonka = __importStar(require("./gonka"));
104
105
  const _govgen = __importStar(require("./govgen"));
105
106
  const _gravitybridge = __importStar(require("./gravitybridge"));
106
107
  const _haqq = __importStar(require("./haqq"));
@@ -315,6 +316,7 @@ const chains = [
315
316
  _genesisl1.chain,
316
317
  _ggezchain.chain,
317
318
  _gitopia.chain,
319
+ _gonka.chain,
318
320
  _govgen.chain,
319
321
  _gravitybridge.chain,
320
322
  _haqq.chain,
@@ -52,6 +52,10 @@ const info = {
52
52
  {
53
53
  address: 'https://doravota-mainnet-rpc.itrocket.net:443',
54
54
  provider: 'ITRocket'
55
+ },
56
+ {
57
+ address: 'https://m-dora-rpc.ruangnode.com:443',
58
+ provider: 'ruangnode'
55
59
  }
56
60
  ],
57
61
  rest: [
@@ -70,6 +74,10 @@ const info = {
70
74
  {
71
75
  address: 'https://doravota-mainnet-api.itrocket.net',
72
76
  provider: 'ITRocket'
77
+ },
78
+ {
79
+ address: 'https://m-dora-api.ruangnode.com',
80
+ provider: 'ruangnode'
73
81
  }
74
82
  ],
75
83
  grpc: [
@@ -84,6 +92,10 @@ const info = {
84
92
  {
85
93
  address: 'doravota-mainnet-grpc.itrocket.net:443',
86
94
  provider: 'ITRocket'
95
+ },
96
+ {
97
+ address: 'm-dora-grpc.ruangnode.com:30090',
98
+ provider: 'ruangnode'
87
99
  }
88
100
  ]
89
101
  },
@@ -125,6 +137,11 @@ const info = {
125
137
  url: 'https://dora.valopers.com/',
126
138
  txPage: 'https://dora.valopers.com/transactions/${txHash}',
127
139
  accountPage: 'https://dora.valopers.com/account/${accountAddress}'
140
+ },
141
+ {
142
+ kind: 'Ruangnode Explorers',
143
+ url: 'https://explorer.ruangnode.com/dora/staking',
144
+ txPage: 'https://explorer.ruangnode.com/dora/tx/${txHash}'
128
145
  }
129
146
  ]
130
147
  };
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chainName: 'gonka',
6
+ assets: [{
7
+ description: 'Coins for the Gonka network.',
8
+ denomUnits: [
9
+ {
10
+ denom: 'ngonka',
11
+ exponent: 0,
12
+ aliases: ['nanogonka']
13
+ },
14
+ {
15
+ denom: 'ugonka',
16
+ exponent: 3,
17
+ aliases: ['microgonka']
18
+ },
19
+ {
20
+ denom: 'mgonka',
21
+ exponent: 6,
22
+ aliases: ['milligonka']
23
+ },
24
+ {
25
+ denom: 'gonka',
26
+ exponent: 9
27
+ }
28
+ ],
29
+ base: 'ngonka',
30
+ name: 'Gonka',
31
+ display: 'gonka',
32
+ symbol: 'GNK',
33
+ typeAsset: 'sdk.coin',
34
+ images: [{
35
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png',
36
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg'
37
+ }]
38
+ }]
39
+ };
40
+ 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,156 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chainName: 'gonka',
6
+ status: 'live',
7
+ networkType: 'mainnet',
8
+ prettyName: 'Gonka',
9
+ chainType: 'cosmos',
10
+ chainId: 'gonka-mainnet',
11
+ bech32Prefix: 'gonka',
12
+ daemonName: 'inferenced',
13
+ nodeHome: '$HOME/.inference',
14
+ keyAlgos: ['secp256k1'],
15
+ slip44: 1200,
16
+ fees: {
17
+ feeTokens: [{
18
+ denom: 'ngonka',
19
+ fixedMinGasPrice: 0,
20
+ lowGasPrice: 0,
21
+ averageGasPrice: 0,
22
+ highGasPrice: 0
23
+ }]
24
+ },
25
+ staking: {
26
+ stakingTokens: [{
27
+ denom: 'ngonka'
28
+ }]
29
+ },
30
+ codebase: {
31
+ gitRepo: 'https://github.com/gonka-ai/gonka',
32
+ recommendedVersion: 'v0.2.0',
33
+ genesis: {
34
+ genesisUrl: 'https://github.com/gonka-ai/gonka/blob/main/genesis/genesis.json'
35
+ }
36
+ },
37
+ images: [{
38
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg',
39
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png',
40
+ theme: {
41
+ circle: true
42
+ }
43
+ }],
44
+ logoURIs: {
45
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg',
46
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png'
47
+ },
48
+ description: 'Gonka is a decentralized AI infrastructure designed to optimize computational power for AI model training and inference, offering an alternative to monopolistic, high-cost, centralized cloud providers. As AI models become increasingly complex, their computational demands surge, presenting significant challenges for developers and businesses that rely on costly, centralized resources.',
49
+ apis: {
50
+ rpc: [
51
+ {
52
+ address: 'http://47.236.19.22:18000/chain-rpc/',
53
+ provider: '6block'
54
+ },
55
+ {
56
+ address: 'http://gonka.spv.re:8000/chain-rpc/',
57
+ provider: 'Hyperfusion'
58
+ },
59
+ {
60
+ address: 'http://185.216.21.98:8000/chain-rpc/',
61
+ provider: 'HardYaka'
62
+ },
63
+ {
64
+ address: 'http://93.119.168.58:8000/chain-rpc/',
65
+ provider: 'GCore'
66
+ },
67
+ {
68
+ address: 'http:// :8000/chain-rpc/',
69
+ provider: 'PS on Nebius'
70
+ }
71
+ ],
72
+ rest: [
73
+ {
74
+ address: 'http://47.236.19.22:18000/chain-api/',
75
+ provider: '6block'
76
+ },
77
+ {
78
+ address: 'http://gonka.spv.re:8000/chain-api/',
79
+ provider: 'Hyperfusion'
80
+ },
81
+ {
82
+ address: 'http://185.216.21.98:8000/chain-api/',
83
+ provider: 'HardYaka'
84
+ },
85
+ {
86
+ address: 'http://93.119.168.58:8000/chain-api/',
87
+ provider: 'GCore'
88
+ },
89
+ {
90
+ address: 'http://node1.gonka.ai:8000/chain-api/',
91
+ provider: 'PS on Nebius'
92
+ }
93
+ ],
94
+ grpc: [
95
+ {
96
+ address: 'http://47.236.19.22:18000/chain-grpc/',
97
+ provider: '6block'
98
+ },
99
+ {
100
+ address: 'http://gonka.spv.re:8000/chain-grpc/',
101
+ provider: 'Hyperfusion'
102
+ },
103
+ {
104
+ address: 'http://185.216.21.98:8000/chain-grpc/',
105
+ provider: 'HardYaka'
106
+ },
107
+ {
108
+ address: 'http://93.119.168.58:8000/chain-grpc/',
109
+ provider: 'GCore'
110
+ },
111
+ {
112
+ address: 'http://node1.gonka.ai:8000/chain-grpc/',
113
+ provider: 'PS on Nebius'
114
+ }
115
+ ]
116
+ },
117
+ explorers: [
118
+ {
119
+ kind: 'ping.pub',
120
+ url: 'http://47.236.19.22:18000/dashboard',
121
+ txPage: 'http://47.236.19.22:18000/dashboard/gonka/txs/${txHash}',
122
+ accountPage: 'http://47.236.19.22:18000/dashboard/gonka/account/${accountAddress}'
123
+ },
124
+ {
125
+ kind: 'ping.pub',
126
+ url: 'http://gonka.spv.re:8000/dashboard',
127
+ txPage: 'http://gonka.spv.re:8000/dashboard/gonka/txs/${txHash}',
128
+ accountPage: 'http://gonka.spv.re:8000/dashboard/gonka/account/${accountAddress}'
129
+ },
130
+ {
131
+ kind: 'ping.pub',
132
+ url: 'http://185.216.21.98:8000/dashboard',
133
+ txPage: 'http://185.216.21.98:8000/dashboard/gonka/txs/${txHash}',
134
+ accountPage: 'http://185.216.21.98:8000/dashboard/gonka/account/${accountAddress}'
135
+ },
136
+ {
137
+ kind: 'ping.pub',
138
+ url: 'http://93.119.168.58:8000/dashboard',
139
+ txPage: 'http://93.119.168.58:8000/dashboard/gonka/txs/${txHash}',
140
+ accountPage: 'http://93.119.168.58:8000/dashboard/gonka/account/${accountAddress}'
141
+ },
142
+ {
143
+ kind: 'ping.pub',
144
+ url: 'http://node1.gonka.ai:8000/dashboard',
145
+ txPage: 'http://node1.gonka.ai:8000/dashboard/gonka/txs/${txHash}',
146
+ accountPage: 'http://node1.gonka.ai:8000/dashboard/gonka/account/${accountAddress}'
147
+ }
148
+ ],
149
+ keywords: [
150
+ 'gonka',
151
+ 'inference',
152
+ 'training',
153
+ 'compute'
154
+ ]
155
+ };
156
+ exports.default = info;
@@ -0,0 +1,2 @@
1
+ export declare const assetList: 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.assetList = void 0;
7
+ const asset_list_1 = __importDefault(require("./asset-list"));
8
+ const chain_1 = __importDefault(require("./chain"));
9
+ exports.assetList = asset_list_1.default;
10
+ exports.chain = chain_1.default;
@@ -73,7 +73,7 @@ const info = {
73
73
  base: 'uusdrise',
74
74
  name: 'Sunrise USDrise',
75
75
  display: 'usdrise',
76
- symbol: 'USDRISE',
76
+ symbol: 'USDrise',
77
77
  logoURIs: {
78
78
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.png',
79
79
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.svg'
@@ -108,6 +108,14 @@ const info = {
108
108
  {
109
109
  address: 'https://sunrise-rpc.stakeandrelax.net',
110
110
  provider: 'Stake&Relax 🦥'
111
+ },
112
+ {
113
+ address: 'https://sunrise.blocksync.me/rpc',
114
+ provider: 'BlockSync'
115
+ },
116
+ {
117
+ address: 'https://rpc-sunrise.winnode.xyz',
118
+ provider: 'Winnode'
111
119
  }
112
120
  ],
113
121
  rest: [
@@ -162,6 +170,14 @@ const info = {
162
170
  {
163
171
  address: 'https://sunrise-api.stakeandrelax.net',
164
172
  provider: 'Stake&Relax 🦥'
173
+ },
174
+ {
175
+ address: 'https://sunrise.blocksync.me/api',
176
+ provider: 'BlockSync'
177
+ },
178
+ {
179
+ address: 'https://api-sunrise.winnode.xyz',
180
+ provider: 'Winnode'
165
181
  }
166
182
  ],
167
183
  grpc: [
@@ -200,6 +216,14 @@ const info = {
200
216
  {
201
217
  address: 'http://sunrise-grpc.stakeandrelax.net:28390',
202
218
  provider: 'Stake&Relax 🦥'
219
+ },
220
+ {
221
+ address: 'http://sunrise.blocksync.me:22090',
222
+ provider: 'BlockSync'
223
+ },
224
+ {
225
+ address: 'https://grpc-sunrise.winnode.xyz:443',
226
+ provider: 'Winnode'
203
227
  }
204
228
  ]
205
229
  },
@@ -262,6 +286,18 @@ const info = {
262
286
  url: 'https://explorer.stakeandrelax.net/sunrise',
263
287
  txPage: 'https://explorer.stakeandrelax.net/sunrise/tx/${txHash}',
264
288
  accountPage: 'https://explorer.stakeandrelax.net/sunrise/account/${accountAddress}'
289
+ },
290
+ {
291
+ kind: 'BlockSync Explorer',
292
+ url: 'https://dashboard.blocksync.me/sunrise',
293
+ txPage: 'https://dashboard.blocksync.me/sunrise/tx/${txHash}',
294
+ accountPage: 'https://dashboard.blocksync.me/sunrise/account/${accountAddress}'
295
+ },
296
+ {
297
+ kind: 'Winnode explorer',
298
+ url: 'https://explorer.winnode.xyz/Sunrise-Mainnet',
299
+ txPage: 'https://explorer.winnode.xyz/Sunrise-Mainnet/tx/${txHash}',
300
+ accountPage: 'https://explorer.winnode.xyz/Sunrise-Mainnet/account/${accountAddress}'
265
301
  }
266
302
  ],
267
303
  images: [{
@@ -4847,6 +4847,32 @@ const info = {
4847
4847
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png',
4848
4848
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg'
4849
4849
  }]
4850
+ },
4851
+ {
4852
+ description: 'An eco-friendly token for sustainable projects and green initiatives on Terra Luna Classic',
4853
+ socials: {
4854
+ website: 'https://www.greenfriendlylabs.com/',
4855
+ twitter: 'https://x.com/GreenFrndLabs'
4856
+ },
4857
+ typeAsset: 'cw20',
4858
+ address: 'terra17hnu4prwa3varxrws0sy9hffkmqv8tfmfpldg4e9fq58flrmuz2qlhymr5',
4859
+ denomUnits: [{
4860
+ denom: 'cw20:terra17hnu4prwa3varxrws0sy9hffkmqv8tfmfpldg4e9fq58flrmuz2qlhymr5',
4861
+ exponent: 0
4862
+ }, {
4863
+ denom: 'gft',
4864
+ exponent: 6
4865
+ }],
4866
+ base: 'cw20:terra17hnu4prwa3varxrws0sy9hffkmqv8tfmfpldg4e9fq58flrmuz2qlhymr5',
4867
+ name: 'Greenfriendly Token',
4868
+ display: 'gft',
4869
+ symbol: 'GFT',
4870
+ logoURIs: {
4871
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/greenfriendlylabs.png'
4872
+ },
4873
+ images: [{
4874
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/greenfriendlylabs.png'
4875
+ }]
4850
4876
  }
4851
4877
  ]
4852
4878
  };