@xyo-network/crypto-market-plugins 2.94.3 → 2.94.4
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/dist/neutral/index.cjs +36 -0
- package/dist/neutral/index.cjs.map +1 -0
- package/dist/neutral/index.d.cts +7 -0
- package/dist/neutral/index.d.cts.map +1 -0
- package/dist/neutral/index.d.mts +7 -0
- package/dist/neutral/index.d.mts.map +1 -0
- package/dist/neutral/index.d.ts +7 -0
- package/dist/neutral/index.d.ts.map +1 -0
- package/dist/neutral/index.js +14 -0
- package/dist/neutral/index.js.map +1 -0
- package/package.json +7 -7
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// src/index.ts
|
|
22
|
+
var src_exports = {};
|
|
23
|
+
__export(src_exports, {
|
|
24
|
+
CryptoMarketPlugins: () => CryptoMarketPlugins,
|
|
25
|
+
default: () => src_default
|
|
26
|
+
});
|
|
27
|
+
module.exports = __toCommonJS(src_exports);
|
|
28
|
+
__reExport(src_exports, require("@xyo-network/coingecko-crypto-market-plugin"), module.exports);
|
|
29
|
+
__reExport(src_exports, require("@xyo-network/crypto-asset-plugin"), module.exports);
|
|
30
|
+
__reExport(src_exports, require("@xyo-network/uniswap-crypto-market-plugin"), module.exports);
|
|
31
|
+
var import_coingecko_crypto_market_plugin = require("@xyo-network/coingecko-crypto-market-plugin");
|
|
32
|
+
var import_crypto_asset_plugin = require("@xyo-network/crypto-asset-plugin");
|
|
33
|
+
var import_uniswap_crypto_market_plugin = require("@xyo-network/uniswap-crypto-market-plugin");
|
|
34
|
+
var CryptoMarketPlugins = [import_coingecko_crypto_market_plugin.CoingeckoCryptoMarketPlugin, import_uniswap_crypto_market_plugin.UniswapCryptoMarketPlugin, import_crypto_asset_plugin.CryptoMarketAssetPlugin];
|
|
35
|
+
var src_default = CryptoMarketPlugins;
|
|
36
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/coingecko-crypto-market-plugin'\nexport * from '@xyo-network/crypto-asset-plugin'\nexport * from '@xyo-network/uniswap-crypto-market-plugin'\n\nimport { CoingeckoCryptoMarketPlugin } from '@xyo-network/coingecko-crypto-market-plugin'\nimport { CryptoMarketAssetPlugin } from '@xyo-network/crypto-asset-plugin'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\nimport { UniswapCryptoMarketPlugin } from '@xyo-network/uniswap-crypto-market-plugin'\n\nexport const CryptoMarketPlugins: PayloadSetPluginFunc[] = [CoingeckoCryptoMarketPlugin, UniswapCryptoMarketPlugin, CryptoMarketAssetPlugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default CryptoMarketPlugins\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wBAAc,wDAAd;AACA,wBAAc,6CADd;AAEA,wBAAc,sDAFd;AAIA,4CAA4C;AAC5C,iCAAwC;AAExC,0CAA0C;AAEnC,IAAM,sBAA8C,CAAC,mEAA6B,+DAA2B,kDAAuB;AAG3I,IAAO,cAAQ;","names":[]}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from '@xyo-network/coingecko-crypto-market-plugin';
|
|
2
|
+
export * from '@xyo-network/crypto-asset-plugin';
|
|
3
|
+
export * from '@xyo-network/uniswap-crypto-market-plugin';
|
|
4
|
+
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
5
|
+
export declare const CryptoMarketPlugins: PayloadSetPluginFunc[];
|
|
6
|
+
export default CryptoMarketPlugins;
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,6CAA6C,CAAA;AAC3D,cAAc,kCAAkC,CAAA;AAChD,cAAc,2CAA2C,CAAA;AAIzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAGrE,eAAO,MAAM,mBAAmB,EAAE,oBAAoB,EAAsF,CAAA;AAG5I,eAAe,mBAAmB,CAAA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from '@xyo-network/coingecko-crypto-market-plugin';
|
|
2
|
+
export * from '@xyo-network/crypto-asset-plugin';
|
|
3
|
+
export * from '@xyo-network/uniswap-crypto-market-plugin';
|
|
4
|
+
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
5
|
+
export declare const CryptoMarketPlugins: PayloadSetPluginFunc[];
|
|
6
|
+
export default CryptoMarketPlugins;
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,6CAA6C,CAAA;AAC3D,cAAc,kCAAkC,CAAA;AAChD,cAAc,2CAA2C,CAAA;AAIzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAGrE,eAAO,MAAM,mBAAmB,EAAE,oBAAoB,EAAsF,CAAA;AAG5I,eAAe,mBAAmB,CAAA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from '@xyo-network/coingecko-crypto-market-plugin';
|
|
2
|
+
export * from '@xyo-network/crypto-asset-plugin';
|
|
3
|
+
export * from '@xyo-network/uniswap-crypto-market-plugin';
|
|
4
|
+
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
5
|
+
export declare const CryptoMarketPlugins: PayloadSetPluginFunc[];
|
|
6
|
+
export default CryptoMarketPlugins;
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,6CAA6C,CAAA;AAC3D,cAAc,kCAAkC,CAAA;AAChD,cAAc,2CAA2C,CAAA;AAIzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAGrE,eAAO,MAAM,mBAAmB,EAAE,oBAAoB,EAAsF,CAAA;AAG5I,eAAe,mBAAmB,CAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// src/index.ts
|
|
2
|
+
export * from "@xyo-network/coingecko-crypto-market-plugin";
|
|
3
|
+
export * from "@xyo-network/crypto-asset-plugin";
|
|
4
|
+
export * from "@xyo-network/uniswap-crypto-market-plugin";
|
|
5
|
+
import { CoingeckoCryptoMarketPlugin } from "@xyo-network/coingecko-crypto-market-plugin";
|
|
6
|
+
import { CryptoMarketAssetPlugin } from "@xyo-network/crypto-asset-plugin";
|
|
7
|
+
import { UniswapCryptoMarketPlugin } from "@xyo-network/uniswap-crypto-market-plugin";
|
|
8
|
+
var CryptoMarketPlugins = [CoingeckoCryptoMarketPlugin, UniswapCryptoMarketPlugin, CryptoMarketAssetPlugin];
|
|
9
|
+
var src_default = CryptoMarketPlugins;
|
|
10
|
+
export {
|
|
11
|
+
CryptoMarketPlugins,
|
|
12
|
+
src_default as default
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/coingecko-crypto-market-plugin'\nexport * from '@xyo-network/crypto-asset-plugin'\nexport * from '@xyo-network/uniswap-crypto-market-plugin'\n\nimport { CoingeckoCryptoMarketPlugin } from '@xyo-network/coingecko-crypto-market-plugin'\nimport { CryptoMarketAssetPlugin } from '@xyo-network/crypto-asset-plugin'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\nimport { UniswapCryptoMarketPlugin } from '@xyo-network/uniswap-crypto-market-plugin'\n\nexport const CryptoMarketPlugins: PayloadSetPluginFunc[] = [CoingeckoCryptoMarketPlugin, UniswapCryptoMarketPlugin, CryptoMarketAssetPlugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default CryptoMarketPlugins\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AACd,cAAc;AAEd,SAAS,mCAAmC;AAC5C,SAAS,+BAA+B;AAExC,SAAS,iCAAiC;AAEnC,IAAM,sBAA8C,CAAC,6BAA6B,2BAA2B,uBAAuB;AAG3I,IAAO,cAAQ;","names":[]}
|
package/package.json
CHANGED
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/plugins/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/coingecko-crypto-market-plugin": "~2.94.
|
|
14
|
-
"@xyo-network/crypto-asset-plugin": "~2.94.
|
|
15
|
-
"@xyo-network/payloadset-plugin": "^2.99.
|
|
16
|
-
"@xyo-network/uniswap-crypto-market-plugin": "~2.94.
|
|
13
|
+
"@xyo-network/coingecko-crypto-market-plugin": "~2.94.4",
|
|
14
|
+
"@xyo-network/crypto-asset-plugin": "~2.94.4",
|
|
15
|
+
"@xyo-network/payloadset-plugin": "^2.99.3",
|
|
16
|
+
"@xyo-network/uniswap-crypto-market-plugin": "~2.94.4"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@xylabs/ts-scripts-yarn3": "^3.
|
|
20
|
-
"@xylabs/tsconfig": "^3.
|
|
19
|
+
"@xylabs/ts-scripts-yarn3": "^3.10.0",
|
|
20
|
+
"@xylabs/tsconfig": "^3.10.0",
|
|
21
21
|
"typescript": "^5.4.5"
|
|
22
22
|
},
|
|
23
23
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
@@ -59,6 +59,6 @@
|
|
|
59
59
|
"url": "https://github.com/XYOracleNetwork/plugins.git"
|
|
60
60
|
},
|
|
61
61
|
"sideEffects": false,
|
|
62
|
-
"version": "2.94.
|
|
62
|
+
"version": "2.94.4",
|
|
63
63
|
"type": "module"
|
|
64
64
|
}
|