@talismn/token-rates 0.1.1 → 0.1.2
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 +8 -0
- package/dist/TokenRates.js +2 -1
- package/dist/index.js +17 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# @talismn/token-rates
|
2
2
|
|
3
|
+
## 0.1.2
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- 5af305c: switched build output from esm to commonjs for ecosystem compatibility
|
8
|
+
- Updated dependencies [5af305c]
|
9
|
+
- @talismn/chaindata-provider@0.1.2
|
10
|
+
|
3
11
|
## 0.1.1
|
4
12
|
|
5
13
|
### Patch Changes
|
package/dist/TokenRates.js
CHANGED
@@ -1,5 +1,6 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
1
3
|
const coingeckoApiUrl = "https://api.coingecko.com/api/v3";
|
2
|
-
export {};
|
3
4
|
// // Some handy types from https://www.typescriptlang.org/docs/handbook/advanced-types.html#distributive-conditional-types
|
4
5
|
// export type FunctionPropertyNames<T> = {
|
5
6
|
// [K in keyof T]: T[K] extends Function ? K : never
|
package/dist/index.js
CHANGED
@@ -1 +1,17 @@
|
|
1
|
-
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
__exportStar(require("./TokenRates"), exports);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@talismn/token-rates",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.2",
|
4
4
|
"author": "Talisman",
|
5
5
|
"homepage": "https://talisman.xyz",
|
6
6
|
"license": "UNLICENSED",
|
@@ -30,11 +30,11 @@
|
|
30
30
|
"clean": "rm -rf dist && rm -rf .turbo rm -rf node_modules"
|
31
31
|
},
|
32
32
|
"dependencies": {
|
33
|
-
"@talismn/chaindata-provider": "^0.1.
|
33
|
+
"@talismn/chaindata-provider": "^0.1.2"
|
34
34
|
},
|
35
35
|
"devDependencies": {
|
36
36
|
"@talismn/eslint-config": "^0.0.0",
|
37
|
-
"@talismn/tsconfig": "^0.0.
|
37
|
+
"@talismn/tsconfig": "^0.0.1",
|
38
38
|
"@types/jest": "^27.5.1",
|
39
39
|
"eslint": "^8.4.0",
|
40
40
|
"jest": "^28.1.0",
|