@chain-registry/osmosis 1.67.1 → 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/chain.js
CHANGED
|
@@ -32,9 +32,7 @@ const chain = {
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
codebase: {
|
|
35
|
-
cosmos_sdk_version: 'osmosis-labs/cosmos-sdk v0.47.5-v25-osmo-1'
|
|
36
|
-
cosmwasm_enabled: true,
|
|
37
|
-
cosmwasm_version: 'osmosis-labs/wasmd v0.45.0-osmo'
|
|
35
|
+
cosmos_sdk_version: 'osmosis-labs/cosmos-sdk v0.47.5-v25-osmo-1'
|
|
38
36
|
},
|
|
39
37
|
images: [{
|
|
40
38
|
image_sync: {
|
|
@@ -384,6 +382,12 @@ const chain = {
|
|
|
384
382
|
tx_page: 'https://explorer.tcnetwork.io/osmosis/transaction/${txHash}',
|
|
385
383
|
account_page: 'https://explorer.tcnetwork.io/osmosis/account/${accountAddress}'
|
|
386
384
|
},
|
|
385
|
+
{
|
|
386
|
+
kind: 'staking-explorer.com',
|
|
387
|
+
url: 'https://staking-explorer.com/explorer/osmosis',
|
|
388
|
+
tx_page: 'https://staking-explorer.com/transaction.php?chain=osmosis&tx=${txHash}',
|
|
389
|
+
account_page: 'https://staking-explorer.com/account.php?chain=osmosis&addr=${accountAddress}'
|
|
390
|
+
},
|
|
387
391
|
{
|
|
388
392
|
kind: 'Stakeflow',
|
|
389
393
|
url: 'https://stakeflow.io/osmosis',
|