@xyo-network/gas-ethereum-blockchain-payload-plugins 2.99.6 → 3.0.1

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.
@@ -1,6 +1,7 @@
1
1
  export * from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins';
2
2
  export * from '@xyo-network/etherscan-ethereum-gas-payload-plugin';
3
3
  import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
4
- export declare const EthereumGasPayloadPlugins: PayloadPluginFunc[];
5
- export default EthereumGasPayloadPlugins;
6
- //# sourceMappingURL=index.d.ts.map
4
+
5
+ declare const EthereumGasPayloadPlugins: PayloadPluginFunc[];
6
+
7
+ export { EthereumGasPayloadPlugins, EthereumGasPayloadPlugins as default };
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins'\nexport * from '@xyo-network/etherscan-ethereum-gas-payload-plugin'\n\nimport { EthereumGasEtherchainPayloadPlugins } from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins'\nimport { EthereumGasEtherscanPayloadPlugin } from '@xyo-network/etherscan-ethereum-gas-payload-plugin'\nimport { PayloadPluginFunc } from '@xyo-network/payload-plugin'\n\nexport const EthereumGasPayloadPlugins: PayloadPluginFunc[] = [...EthereumGasEtherchainPayloadPlugins, EthereumGasEtherscanPayloadPlugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default EthereumGasPayloadPlugins\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AAEd,SAAS,2CAA2C;AACpD,SAAS,yCAAyC;AAG3C,IAAM,4BAAiD,CAAC,GAAG,qCAAqC,iCAAiC;AAGxI,IAAO,cAAQ;","names":[]}
1
+ {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins'\nexport * from '@xyo-network/etherscan-ethereum-gas-payload-plugin'\n\nimport { EthereumGasEtherchainPayloadPlugins } from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins'\nimport { EthereumGasEtherscanPayloadPlugin } from '@xyo-network/etherscan-ethereum-gas-payload-plugin'\nimport { PayloadPluginFunc } from '@xyo-network/payload-plugin'\n\nexport const EthereumGasPayloadPlugins: PayloadPluginFunc[] = [...EthereumGasEtherchainPayloadPlugins, EthereumGasEtherscanPayloadPlugin]\n\n// eslint-disable-next-line import-x/no-default-export\nexport default EthereumGasPayloadPlugins\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AAEd,SAAS,2CAA2C;AACpD,SAAS,yCAAyC;AAG3C,IAAM,4BAAiD,CAAC,GAAG,qCAAqC,iCAAiC;AAGxI,IAAO,cAAQ;","names":[]}
package/package.json CHANGED
@@ -10,44 +10,25 @@
10
10
  "url": "https://github.com/XYOracleNetwork/plugins/issues"
11
11
  },
12
12
  "dependencies": {
13
- "@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins": "^2.99.6",
14
- "@xyo-network/etherscan-ethereum-gas-payload-plugin": "^2.99.6",
15
- "@xyo-network/payload-plugin": "^2.111.3"
13
+ "@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins": "^3.0.1",
14
+ "@xyo-network/etherscan-ethereum-gas-payload-plugin": "^3.0.1",
15
+ "@xyo-network/payload-plugin": "^3.0.2"
16
16
  },
17
17
  "devDependencies": {
18
- "@xylabs/ts-scripts-yarn3": "^3.15.14",
19
- "@xylabs/tsconfig": "^3.15.14",
18
+ "@xylabs/ts-scripts-yarn3": "^4.0.0-rc.15",
19
+ "@xylabs/tsconfig": "^4.0.0-rc.15",
20
20
  "typescript": "^5.5.4"
21
21
  },
22
22
  "description": "Typescript/Javascript Plugins for XYO Platform",
23
23
  "exports": {
24
24
  ".": {
25
- "browser": {
26
- "require": {
27
- "types": "./dist/browser/index.d.cts",
28
- "default": "./dist/browser/index.cjs"
29
- },
30
- "import": {
31
- "types": "./dist/browser/index.d.mts",
32
- "default": "./dist/browser/index.mjs"
33
- }
34
- },
35
- "node": {
36
- "require": {
37
- "types": "./dist/node/index.d.cts",
38
- "default": "./dist/node/index.cjs"
39
- },
40
- "import": {
41
- "types": "./dist/node/index.d.mts",
42
- "default": "./dist/node/index.mjs"
43
- }
44
- }
25
+ "types": "./dist/neutral/index.d.ts",
26
+ "default": "./dist/neutral/index.mjs"
45
27
  },
46
28
  "./package.json": "./package.json"
47
29
  },
48
- "main": "dist/node/index.cjs",
49
- "module": "dist/node/index.mjs",
50
- "types": "dist/node/index.d.ts",
30
+ "module": "dist/neutral/index.mjs",
31
+ "types": "dist/neutral/index.d.ts",
51
32
  "homepage": "https://xyo.network",
52
33
  "license": "LGPL-3.0-only",
53
34
  "publishConfig": {
@@ -58,6 +39,6 @@
58
39
  "url": "https://github.com/XYOracleNetwork/plugins.git"
59
40
  },
60
41
  "sideEffects": false,
61
- "version": "2.99.6",
42
+ "version": "3.0.1",
62
43
  "type": "module"
63
44
  }
package/src/index.ts CHANGED
@@ -7,5 +7,5 @@ import { PayloadPluginFunc } from '@xyo-network/payload-plugin'
7
7
 
8
8
  export const EthereumGasPayloadPlugins: PayloadPluginFunc[] = [...EthereumGasEtherchainPayloadPlugins, EthereumGasEtherscanPayloadPlugin]
9
9
 
10
- // eslint-disable-next-line import/no-default-export
10
+ // eslint-disable-next-line import-x/no-default-export
11
11
  export default EthereumGasPayloadPlugins
package/xy.config.ts ADDED
@@ -0,0 +1,12 @@
1
+ import { XyTsupConfig } from '@xylabs/ts-scripts-yarn3'
2
+ const config: XyTsupConfig = {
3
+ compile: {
4
+ browser: {},
5
+ neutral: {
6
+ src: true,
7
+ },
8
+ node: {},
9
+ },
10
+ }
11
+
12
+ export default config
@@ -1,34 +0,0 @@
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
- EthereumGasPayloadPlugins: () => EthereumGasPayloadPlugins,
25
- default: () => src_default
26
- });
27
- module.exports = __toCommonJS(src_exports);
28
- __reExport(src_exports, require("@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins"), module.exports);
29
- __reExport(src_exports, require("@xyo-network/etherscan-ethereum-gas-payload-plugin"), module.exports);
30
- var import_etherchain_gas_ethereum_blockchain_payload_plugins = require("@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins");
31
- var import_etherscan_ethereum_gas_payload_plugin = require("@xyo-network/etherscan-ethereum-gas-payload-plugin");
32
- var EthereumGasPayloadPlugins = [...import_etherchain_gas_ethereum_blockchain_payload_plugins.EthereumGasEtherchainPayloadPlugins, import_etherscan_ethereum_gas_payload_plugin.EthereumGasEtherscanPayloadPlugin];
33
- var src_default = EthereumGasPayloadPlugins;
34
- //# sourceMappingURL=index.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins'\nexport * from '@xyo-network/etherscan-ethereum-gas-payload-plugin'\n\nimport { EthereumGasEtherchainPayloadPlugins } from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins'\nimport { EthereumGasEtherscanPayloadPlugin } from '@xyo-network/etherscan-ethereum-gas-payload-plugin'\nimport { PayloadPluginFunc } from '@xyo-network/payload-plugin'\n\nexport const EthereumGasPayloadPlugins: PayloadPluginFunc[] = [...EthereumGasEtherchainPayloadPlugins, EthereumGasEtherscanPayloadPlugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default EthereumGasPayloadPlugins\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wBAAc,4EAAd;AACA,wBAAc,+DADd;AAGA,gEAAoD;AACpD,mDAAkD;AAG3C,IAAM,4BAAiD,CAAC,GAAG,+FAAqC,8EAAiC;AAGxI,IAAO,cAAQ;","names":[]}
@@ -1,6 +0,0 @@
1
- export * from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins';
2
- export * from '@xyo-network/etherscan-ethereum-gas-payload-plugin';
3
- import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
4
- export declare const EthereumGasPayloadPlugins: PayloadPluginFunc[];
5
- export default EthereumGasPayloadPlugins;
6
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iEAAiE,CAAA;AAC/E,cAAc,oDAAoD,CAAA;AAIlE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,yBAAyB,EAAE,iBAAiB,EAAgF,CAAA;AAGzI,eAAe,yBAAyB,CAAA"}
@@ -1,6 +0,0 @@
1
- export * from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins';
2
- export * from '@xyo-network/etherscan-ethereum-gas-payload-plugin';
3
- import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
4
- export declare const EthereumGasPayloadPlugins: PayloadPluginFunc[];
5
- export default EthereumGasPayloadPlugins;
6
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iEAAiE,CAAA;AAC/E,cAAc,oDAAoD,CAAA;AAIlE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,yBAAyB,EAAE,iBAAiB,EAAgF,CAAA;AAGzI,eAAe,yBAAyB,CAAA"}
@@ -1,6 +0,0 @@
1
- export * from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins';
2
- export * from '@xyo-network/etherscan-ethereum-gas-payload-plugin';
3
- import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
4
- export declare const EthereumGasPayloadPlugins: PayloadPluginFunc[];
5
- export default EthereumGasPayloadPlugins;
6
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iEAAiE,CAAA;AAC/E,cAAc,oDAAoD,CAAA;AAIlE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,yBAAyB,EAAE,iBAAiB,EAAgF,CAAA;AAGzI,eAAe,yBAAyB,CAAA"}
@@ -1,12 +0,0 @@
1
- // src/index.ts
2
- export * from "@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins";
3
- export * from "@xyo-network/etherscan-ethereum-gas-payload-plugin";
4
- import { EthereumGasEtherchainPayloadPlugins } from "@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins";
5
- import { EthereumGasEtherscanPayloadPlugin } from "@xyo-network/etherscan-ethereum-gas-payload-plugin";
6
- var EthereumGasPayloadPlugins = [...EthereumGasEtherchainPayloadPlugins, EthereumGasEtherscanPayloadPlugin];
7
- var src_default = EthereumGasPayloadPlugins;
8
- export {
9
- EthereumGasPayloadPlugins,
10
- src_default as default
11
- };
12
- //# sourceMappingURL=index.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins'\nexport * from '@xyo-network/etherscan-ethereum-gas-payload-plugin'\n\nimport { EthereumGasEtherchainPayloadPlugins } from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins'\nimport { EthereumGasEtherscanPayloadPlugin } from '@xyo-network/etherscan-ethereum-gas-payload-plugin'\nimport { PayloadPluginFunc } from '@xyo-network/payload-plugin'\n\nexport const EthereumGasPayloadPlugins: PayloadPluginFunc[] = [...EthereumGasEtherchainPayloadPlugins, EthereumGasEtherscanPayloadPlugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default EthereumGasPayloadPlugins\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AAEd,SAAS,2CAA2C;AACpD,SAAS,yCAAyC;AAG3C,IAAM,4BAAiD,CAAC,GAAG,qCAAqC,iCAAiC;AAGxI,IAAO,cAAQ;","names":[]}
@@ -1,34 +0,0 @@
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
- EthereumGasPayloadPlugins: () => EthereumGasPayloadPlugins,
25
- default: () => src_default
26
- });
27
- module.exports = __toCommonJS(src_exports);
28
- __reExport(src_exports, require("@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins"), module.exports);
29
- __reExport(src_exports, require("@xyo-network/etherscan-ethereum-gas-payload-plugin"), module.exports);
30
- var import_etherchain_gas_ethereum_blockchain_payload_plugins = require("@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins");
31
- var import_etherscan_ethereum_gas_payload_plugin = require("@xyo-network/etherscan-ethereum-gas-payload-plugin");
32
- var EthereumGasPayloadPlugins = [...import_etherchain_gas_ethereum_blockchain_payload_plugins.EthereumGasEtherchainPayloadPlugins, import_etherscan_ethereum_gas_payload_plugin.EthereumGasEtherscanPayloadPlugin];
33
- var src_default = EthereumGasPayloadPlugins;
34
- //# sourceMappingURL=index.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins'\nexport * from '@xyo-network/etherscan-ethereum-gas-payload-plugin'\n\nimport { EthereumGasEtherchainPayloadPlugins } from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins'\nimport { EthereumGasEtherscanPayloadPlugin } from '@xyo-network/etherscan-ethereum-gas-payload-plugin'\nimport { PayloadPluginFunc } from '@xyo-network/payload-plugin'\n\nexport const EthereumGasPayloadPlugins: PayloadPluginFunc[] = [...EthereumGasEtherchainPayloadPlugins, EthereumGasEtherscanPayloadPlugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default EthereumGasPayloadPlugins\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wBAAc,4EAAd;AACA,wBAAc,+DADd;AAGA,gEAAoD;AACpD,mDAAkD;AAG3C,IAAM,4BAAiD,CAAC,GAAG,+FAAqC,8EAAiC;AAGxI,IAAO,cAAQ;","names":[]}
@@ -1,6 +0,0 @@
1
- export * from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins';
2
- export * from '@xyo-network/etherscan-ethereum-gas-payload-plugin';
3
- import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
4
- export declare const EthereumGasPayloadPlugins: PayloadPluginFunc[];
5
- export default EthereumGasPayloadPlugins;
6
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iEAAiE,CAAA;AAC/E,cAAc,oDAAoD,CAAA;AAIlE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,yBAAyB,EAAE,iBAAiB,EAAgF,CAAA;AAGzI,eAAe,yBAAyB,CAAA"}
@@ -1,6 +0,0 @@
1
- export * from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins';
2
- export * from '@xyo-network/etherscan-ethereum-gas-payload-plugin';
3
- import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
4
- export declare const EthereumGasPayloadPlugins: PayloadPluginFunc[];
5
- export default EthereumGasPayloadPlugins;
6
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iEAAiE,CAAA;AAC/E,cAAc,oDAAoD,CAAA;AAIlE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,yBAAyB,EAAE,iBAAiB,EAAgF,CAAA;AAGzI,eAAe,yBAAyB,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iEAAiE,CAAA;AAC/E,cAAc,oDAAoD,CAAA;AAIlE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,yBAAyB,EAAE,iBAAiB,EAAgF,CAAA;AAGzI,eAAe,yBAAyB,CAAA"}
@@ -1,40 +0,0 @@
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
- EthereumGasPayloadPlugins: () => EthereumGasPayloadPlugins,
25
- default: () => src_default
26
- });
27
- module.exports = __toCommonJS(src_exports);
28
- __reExport(src_exports, require("@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins"), module.exports);
29
- __reExport(src_exports, require("@xyo-network/etherscan-ethereum-gas-payload-plugin"), module.exports);
30
- var import_etherchain_gas_ethereum_blockchain_payload_plugins = require("@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins");
31
- var import_etherscan_ethereum_gas_payload_plugin = require("@xyo-network/etherscan-ethereum-gas-payload-plugin");
32
- var EthereumGasPayloadPlugins = [...import_etherchain_gas_ethereum_blockchain_payload_plugins.EthereumGasEtherchainPayloadPlugins, import_etherscan_ethereum_gas_payload_plugin.EthereumGasEtherscanPayloadPlugin];
33
- var src_default = EthereumGasPayloadPlugins;
34
- // Annotate the CommonJS export names for ESM import in node:
35
- 0 && (module.exports = {
36
- EthereumGasPayloadPlugins,
37
- ...require("@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins"),
38
- ...require("@xyo-network/etherscan-ethereum-gas-payload-plugin")
39
- });
40
- //# sourceMappingURL=index.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins'\nexport * from '@xyo-network/etherscan-ethereum-gas-payload-plugin'\n\nimport { EthereumGasEtherchainPayloadPlugins } from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins'\nimport { EthereumGasEtherscanPayloadPlugin } from '@xyo-network/etherscan-ethereum-gas-payload-plugin'\nimport { PayloadPluginFunc } from '@xyo-network/payload-plugin'\n\nexport const EthereumGasPayloadPlugins: PayloadPluginFunc[] = [...EthereumGasEtherchainPayloadPlugins, EthereumGasEtherscanPayloadPlugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default EthereumGasPayloadPlugins\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wBAAc,4EAAd;AACA,wBAAc,+DADd;AAGA,gEAAoD;AACpD,mDAAkD;AAG3C,IAAM,4BAAiD,CAAC,GAAG,+FAAqC,8EAAiC;AAGxI,IAAO,cAAQ;","names":[]}
@@ -1,6 +0,0 @@
1
- export * from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins';
2
- export * from '@xyo-network/etherscan-ethereum-gas-payload-plugin';
3
- import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
4
- export declare const EthereumGasPayloadPlugins: PayloadPluginFunc[];
5
- export default EthereumGasPayloadPlugins;
6
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iEAAiE,CAAA;AAC/E,cAAc,oDAAoD,CAAA;AAIlE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,yBAAyB,EAAE,iBAAiB,EAAgF,CAAA;AAGzI,eAAe,yBAAyB,CAAA"}
@@ -1,6 +0,0 @@
1
- export * from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins';
2
- export * from '@xyo-network/etherscan-ethereum-gas-payload-plugin';
3
- import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
4
- export declare const EthereumGasPayloadPlugins: PayloadPluginFunc[];
5
- export default EthereumGasPayloadPlugins;
6
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iEAAiE,CAAA;AAC/E,cAAc,oDAAoD,CAAA;AAIlE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,yBAAyB,EAAE,iBAAiB,EAAgF,CAAA;AAGzI,eAAe,yBAAyB,CAAA"}
@@ -1,6 +0,0 @@
1
- export * from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins';
2
- export * from '@xyo-network/etherscan-ethereum-gas-payload-plugin';
3
- import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
4
- export declare const EthereumGasPayloadPlugins: PayloadPluginFunc[];
5
- export default EthereumGasPayloadPlugins;
6
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iEAAiE,CAAA;AAC/E,cAAc,oDAAoD,CAAA;AAIlE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,yBAAyB,EAAE,iBAAiB,EAAgF,CAAA;AAGzI,eAAe,yBAAyB,CAAA"}
@@ -1,12 +0,0 @@
1
- // src/index.ts
2
- export * from "@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins";
3
- export * from "@xyo-network/etherscan-ethereum-gas-payload-plugin";
4
- import { EthereumGasEtherchainPayloadPlugins } from "@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins";
5
- import { EthereumGasEtherscanPayloadPlugin } from "@xyo-network/etherscan-ethereum-gas-payload-plugin";
6
- var EthereumGasPayloadPlugins = [...EthereumGasEtherchainPayloadPlugins, EthereumGasEtherscanPayloadPlugin];
7
- var src_default = EthereumGasPayloadPlugins;
8
- export {
9
- EthereumGasPayloadPlugins,
10
- src_default as default
11
- };
12
- //# sourceMappingURL=index.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins'\nexport * from '@xyo-network/etherscan-ethereum-gas-payload-plugin'\n\nimport { EthereumGasEtherchainPayloadPlugins } from '@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins'\nimport { EthereumGasEtherscanPayloadPlugin } from '@xyo-network/etherscan-ethereum-gas-payload-plugin'\nimport { PayloadPluginFunc } from '@xyo-network/payload-plugin'\n\nexport const EthereumGasPayloadPlugins: PayloadPluginFunc[] = [...EthereumGasEtherchainPayloadPlugins, EthereumGasEtherscanPayloadPlugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default EthereumGasPayloadPlugins\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AAEd,SAAS,2CAA2C;AACpD,SAAS,yCAAyC;AAG3C,IAAM,4BAAiD,CAAC,GAAG,qCAAqC,iCAAiC;AAGxI,IAAO,cAAQ;","names":[]}