@avalabs/core-coingecko-sdk 2.8.0-alpha.197 → 2.8.0-canary.a436aaa.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/README.md +2 -2
- package/package.json +4 -6
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
const {
|
|
9
9
|
getBasicCoingeckoHttp,
|
|
10
10
|
simpleTokenPrice,
|
|
11
|
-
} = require('@avalabs/coingecko-sdk');
|
|
11
|
+
} = require('@avalabs/core-coingecko-sdk');
|
|
12
12
|
|
|
13
13
|
const http = getBasicCoingeckoHttp();
|
|
14
14
|
simpleTokenPrice(http, {
|
|
@@ -26,7 +26,7 @@ Just pass in the API key and pro HTTP client in order to access the pro api.
|
|
|
26
26
|
const {
|
|
27
27
|
getProCoingeckoHttp,
|
|
28
28
|
simpleTokenPrice,
|
|
29
|
-
} = require('@avalabs/coingecko-sdk');
|
|
29
|
+
} = require('@avalabs/core-coingecko-sdk');
|
|
30
30
|
|
|
31
31
|
const http = getProCoingeckoHttp();
|
|
32
32
|
simpleTokenPrice(http, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@avalabs/core-coingecko-sdk",
|
|
3
|
-
"version": "2.8.0-
|
|
3
|
+
"version": "2.8.0-canary.a436aaa.0+a436aaa",
|
|
4
4
|
"license": "Limited Ecosystem License",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -11,15 +11,13 @@
|
|
|
11
11
|
"esm"
|
|
12
12
|
],
|
|
13
13
|
"sideEffects": false,
|
|
14
|
-
"publishConfig": {
|
|
15
|
-
"access": "restricted"
|
|
16
|
-
},
|
|
17
14
|
"scripts": {
|
|
18
15
|
"start": "rollup -c --watch",
|
|
19
16
|
"build": "rollup -c",
|
|
20
17
|
"lint": "eslint --fix -c ./.eslintrc.js \"src/**/*.ts*\""
|
|
21
18
|
},
|
|
22
19
|
"dependencies": {
|
|
23
|
-
"@avalabs/core-utils-sdk": "2.8.0-
|
|
24
|
-
}
|
|
20
|
+
"@avalabs/core-utils-sdk": "2.8.0-canary.a436aaa.0+a436aaa"
|
|
21
|
+
},
|
|
22
|
+
"gitHead": "a436aaac5271c09ee2b57c0cd25ba6600a89b1f9"
|
|
25
23
|
}
|