@chain-registry/osmosis 1.67.2 → 1.67.3
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/asset_list.js +534 -68
- package/assets.js +1991 -660
- package/chain.js +7 -3
- package/esm/asset_list.js +534 -68
- package/esm/assets.js +1991 -660
- package/esm/chain.js +7 -3
- package/esm/testnet.js +1 -3
- package/package.json +3 -3
- package/testnet.js +1 -3
package/esm/chain.js
CHANGED
|
@@ -30,9 +30,7 @@ const chain = {
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
codebase: {
|
|
33
|
-
cosmos_sdk_version: 'osmosis-labs/cosmos-sdk v0.47.5-v25-osmo-1'
|
|
34
|
-
cosmwasm_enabled: true,
|
|
35
|
-
cosmwasm_version: 'osmosis-labs/wasmd v0.45.0-osmo'
|
|
33
|
+
cosmos_sdk_version: 'osmosis-labs/cosmos-sdk v0.47.5-v25-osmo-1'
|
|
36
34
|
},
|
|
37
35
|
images: [{
|
|
38
36
|
image_sync: {
|
|
@@ -382,6 +380,12 @@ const chain = {
|
|
|
382
380
|
tx_page: 'https://explorer.tcnetwork.io/osmosis/transaction/${txHash}',
|
|
383
381
|
account_page: 'https://explorer.tcnetwork.io/osmosis/account/${accountAddress}'
|
|
384
382
|
},
|
|
383
|
+
{
|
|
384
|
+
kind: 'staking-explorer.com',
|
|
385
|
+
url: 'https://staking-explorer.com/explorer/osmosis',
|
|
386
|
+
tx_page: 'https://staking-explorer.com/transaction.php?chain=osmosis&tx=${txHash}',
|
|
387
|
+
account_page: 'https://staking-explorer.com/account.php?chain=osmosis&addr=${accountAddress}'
|
|
388
|
+
},
|
|
385
389
|
{
|
|
386
390
|
kind: 'Stakeflow',
|
|
387
391
|
url: 'https://stakeflow.io/osmosis',
|
package/esm/testnet.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/osmosis",
|
|
3
|
-
"version": "1.67.
|
|
3
|
+
"version": "1.67.3",
|
|
4
4
|
"description": "Chain Registry info for Osmosis",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"test:watch": "jest --watch"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@chain-registry/types": "^0.50.
|
|
33
|
+
"@chain-registry/types": "^0.50.3"
|
|
34
34
|
},
|
|
35
35
|
"keywords": [
|
|
36
36
|
"chain-registry",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"interchain",
|
|
40
40
|
"osmosis"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "6c3a6cc32bf1f443f5efba27c3be3d891e66be47"
|
|
43
43
|
}
|