@chain-registry/osmosis 1.7.0 → 1.9.0
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/CHANGELOG.md +16 -0
- package/main/asset_list.js +1674 -141
- package/main/assets.js +2 -4
- package/main/chain.js +2 -2
- package/package.json +4 -4
package/main/assets.js
CHANGED
|
@@ -11,12 +11,10 @@ var assets = {
|
|
|
11
11
|
description: 'The native token of Osmosis',
|
|
12
12
|
denom_units: [{
|
|
13
13
|
denom: 'uosmo',
|
|
14
|
-
exponent: 0
|
|
15
|
-
aliases: []
|
|
14
|
+
exponent: 0
|
|
16
15
|
}, {
|
|
17
16
|
denom: 'osmo',
|
|
18
|
-
exponent: 6
|
|
19
|
-
aliases: []
|
|
17
|
+
exponent: 6
|
|
20
18
|
}],
|
|
21
19
|
base: 'uosmo',
|
|
22
20
|
name: 'Osmosis',
|
package/main/chain.js
CHANGED
|
@@ -277,7 +277,7 @@ var chain = {
|
|
|
277
277
|
address: 'https://osmosis-rpc.quickapi.com:443',
|
|
278
278
|
provider: 'Chainlayer'
|
|
279
279
|
}, {
|
|
280
|
-
address: 'https://rpc-osmosis.whispernode.com',
|
|
280
|
+
address: 'https://rpc-osmosis.whispernode.com:443',
|
|
281
281
|
provider: 'WhisperNode 🤐'
|
|
282
282
|
}, {
|
|
283
283
|
address: 'https://osmosis-rpc.lavenderfive.com:443',
|
|
@@ -326,7 +326,7 @@ var chain = {
|
|
|
326
326
|
address: 'https://osmosis-lcd.quickapi.com:443',
|
|
327
327
|
provider: 'Chainlayer'
|
|
328
328
|
}, {
|
|
329
|
-
address: 'https://lcd-osmosis.whispernode.com',
|
|
329
|
+
address: 'https://lcd-osmosis.whispernode.com:443',
|
|
330
330
|
provider: 'WhisperNode 🤐'
|
|
331
331
|
}, {
|
|
332
332
|
address: 'https://lcd-osmosis.blockapsis.com',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/osmosis",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
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",
|
|
@@ -50,14 +50,14 @@
|
|
|
50
50
|
"@babel/plugin-transform-runtime": "7.19.6",
|
|
51
51
|
"@babel/preset-env": "7.19.4",
|
|
52
52
|
"@babel/preset-typescript": "^7.17.12",
|
|
53
|
-
"@chain-registry/utils": "^1.
|
|
53
|
+
"@chain-registry/utils": "^1.6.0",
|
|
54
54
|
"@types/jest": "^29.2.0",
|
|
55
55
|
"@typescript-eslint/eslint-plugin": "5.40.1",
|
|
56
56
|
"@typescript-eslint/parser": "5.40.1",
|
|
57
57
|
"babel-core": "7.0.0-bridge.0",
|
|
58
58
|
"babel-jest": "29.2.1",
|
|
59
59
|
"babel-watch": "^7.0.0",
|
|
60
|
-
"chain-registry": "^1.
|
|
60
|
+
"chain-registry": "^1.8.0",
|
|
61
61
|
"cross-env": "^7.0.2",
|
|
62
62
|
"eslint": "8.25.0",
|
|
63
63
|
"eslint-config-prettier": "^8.5.0",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"@babel/runtime": "^7.19.4",
|
|
76
76
|
"@chain-registry/types": "^0.14.0"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "15febb6c8c815a9d561027967f496cd1f160bc20"
|
|
79
79
|
}
|