@xyo-network/etherchain-gas-ethereum-blockchain-plugins 2.99.6 → 3.0.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.
@@ -1,5 +1,6 @@
1
1
  import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
2
2
  export * from '@xyo-network/etherchain-ethereum-gas-v2-plugin';
3
- export declare const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[];
4
- export default EthereumGasEtherchainPlugins;
5
- //# sourceMappingURL=index.d.ts.map
3
+
4
+ declare const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[];
5
+
6
+ export { EthereumGasEtherchainPlugins, EthereumGasEtherchainPlugins as default };
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["import { EthereumGasEtherchainV2Plugin } from '@xyo-network/etherchain-ethereum-gas-v2-plugin'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport * from '@xyo-network/etherchain-ethereum-gas-v2-plugin'\n\nexport const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[] = [EthereumGasEtherchainV2Plugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default EthereumGasEtherchainPlugins\n"],"mappings":";AAAA,SAAS,qCAAqC;AAG9C,cAAc;AAEP,IAAM,+BAAuD,CAAC,6BAA6B;AAGlG,IAAO,cAAQ;","names":[]}
1
+ {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["import { EthereumGasEtherchainV2Plugin } from '@xyo-network/etherchain-ethereum-gas-v2-plugin'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport * from '@xyo-network/etherchain-ethereum-gas-v2-plugin'\n\nexport const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[] = [EthereumGasEtherchainV2Plugin]\n\n// eslint-disable-next-line import-x/no-default-export\nexport default EthereumGasEtherchainPlugins\n"],"mappings":";AAAA,SAAS,qCAAqC;AAG9C,cAAc;AAEP,IAAM,+BAAuD,CAAC,6BAA6B;AAGlG,IAAO,cAAQ;","names":[]}
package/package.json CHANGED
@@ -10,43 +10,24 @@
10
10
  "url": "https://github.com/XYOracleNetwork/plugins/issues"
11
11
  },
12
12
  "dependencies": {
13
- "@xyo-network/etherchain-ethereum-gas-v2-plugin": "^2.99.6",
14
- "@xyo-network/payloadset-plugin": "^2.111.3"
13
+ "@xyo-network/etherchain-ethereum-gas-v2-plugin": "^3.0.0",
14
+ "@xyo-network/payloadset-plugin": "^3.0.1"
15
15
  },
16
16
  "devDependencies": {
17
- "@xylabs/ts-scripts-yarn3": "^3.15.14",
18
- "@xylabs/tsconfig": "^3.15.14",
17
+ "@xylabs/ts-scripts-yarn3": "^4.0.0-rc.15",
18
+ "@xylabs/tsconfig": "^4.0.0-rc.15",
19
19
  "typescript": "^5.5.4"
20
20
  },
21
21
  "description": "Typescript/Javascript Plugins for XYO Platform",
22
- "types": "dist/node/index.d.ts",
22
+ "types": "dist/neutral/index.d.ts",
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",
30
+ "module": "dist/neutral/index.mjs",
50
31
  "homepage": "https://xyo.network",
51
32
  "license": "LGPL-3.0-only",
52
33
  "publishConfig": {
@@ -57,6 +38,6 @@
57
38
  "url": "https://github.com/XYOracleNetwork/plugins.git"
58
39
  },
59
40
  "sideEffects": false,
60
- "version": "2.99.6",
41
+ "version": "3.0.0",
61
42
  "type": "module"
62
43
  }
package/src/index.ts CHANGED
@@ -5,5 +5,5 @@ export * from '@xyo-network/etherchain-ethereum-gas-v2-plugin'
5
5
 
6
6
  export const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[] = [EthereumGasEtherchainV2Plugin]
7
7
 
8
- // eslint-disable-next-line import/no-default-export
8
+ // eslint-disable-next-line import-x/no-default-export
9
9
  export default EthereumGasEtherchainPlugins
package/xy.config.ts CHANGED
@@ -1,14 +1,13 @@
1
1
  import { XyTsupConfig } from '@xylabs/ts-scripts-yarn3'
2
2
  const config: XyTsupConfig = {
3
3
  compile: {
4
- browser: {
5
- src: true,
6
- },
7
- node: {
4
+ browser: {},
5
+ node: {},
6
+ neutral: {
8
7
  src: true,
9
8
  },
10
9
  },
11
10
  }
12
11
 
13
- // eslint-disable-next-line import/no-default-export
12
+ // eslint-disable-next-line import-x/no-default-export
14
13
  export default config
@@ -1,32 +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
- EthereumGasEtherchainPlugins: () => EthereumGasEtherchainPlugins,
25
- default: () => src_default
26
- });
27
- module.exports = __toCommonJS(src_exports);
28
- var import_etherchain_ethereum_gas_v2_plugin = require("@xyo-network/etherchain-ethereum-gas-v2-plugin");
29
- __reExport(src_exports, require("@xyo-network/etherchain-ethereum-gas-v2-plugin"), module.exports);
30
- var EthereumGasEtherchainPlugins = [import_etherchain_ethereum_gas_v2_plugin.EthereumGasEtherchainV2Plugin];
31
- var src_default = EthereumGasEtherchainPlugins;
32
- //# sourceMappingURL=index.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["import { EthereumGasEtherchainV2Plugin } from '@xyo-network/etherchain-ethereum-gas-v2-plugin'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport * from '@xyo-network/etherchain-ethereum-gas-v2-plugin'\n\nexport const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[] = [EthereumGasEtherchainV2Plugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default EthereumGasEtherchainPlugins\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,+CAA8C;AAG9C,wBAAc,2DAHd;AAKO,IAAM,+BAAuD,CAAC,sEAA6B;AAGlG,IAAO,cAAQ;","names":[]}
@@ -1,5 +0,0 @@
1
- import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
2
- export * from '@xyo-network/etherchain-ethereum-gas-v2-plugin';
3
- export declare const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[];
4
- export default EthereumGasEtherchainPlugins;
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,cAAc,gDAAgD,CAAA;AAE9D,eAAO,MAAM,4BAA4B,EAAE,oBAAoB,EAAoC,CAAA;AAGnG,eAAe,4BAA4B,CAAA"}
@@ -1,5 +0,0 @@
1
- import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
2
- export * from '@xyo-network/etherchain-ethereum-gas-v2-plugin';
3
- export declare const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[];
4
- export default EthereumGasEtherchainPlugins;
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,cAAc,gDAAgD,CAAA;AAE9D,eAAO,MAAM,4BAA4B,EAAE,oBAAoB,EAAoC,CAAA;AAGnG,eAAe,4BAA4B,CAAA"}
@@ -1,5 +0,0 @@
1
- import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
2
- export * from '@xyo-network/etherchain-ethereum-gas-v2-plugin';
3
- export declare const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[];
4
- export default EthereumGasEtherchainPlugins;
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,cAAc,gDAAgD,CAAA;AAE9D,eAAO,MAAM,4BAA4B,EAAE,oBAAoB,EAAoC,CAAA;AAGnG,eAAe,4BAA4B,CAAA"}
@@ -1,10 +0,0 @@
1
- // src/index.ts
2
- import { EthereumGasEtherchainV2Plugin } from "@xyo-network/etherchain-ethereum-gas-v2-plugin";
3
- export * from "@xyo-network/etherchain-ethereum-gas-v2-plugin";
4
- var EthereumGasEtherchainPlugins = [EthereumGasEtherchainV2Plugin];
5
- var src_default = EthereumGasEtherchainPlugins;
6
- export {
7
- EthereumGasEtherchainPlugins,
8
- src_default as default
9
- };
10
- //# sourceMappingURL=index.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["import { EthereumGasEtherchainV2Plugin } from '@xyo-network/etherchain-ethereum-gas-v2-plugin'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport * from '@xyo-network/etherchain-ethereum-gas-v2-plugin'\n\nexport const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[] = [EthereumGasEtherchainV2Plugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default EthereumGasEtherchainPlugins\n"],"mappings":";AAAA,SAAS,qCAAqC;AAG9C,cAAc;AAEP,IAAM,+BAAuD,CAAC,6BAA6B;AAGlG,IAAO,cAAQ;","names":[]}
@@ -1,32 +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
- EthereumGasEtherchainPlugins: () => EthereumGasEtherchainPlugins,
25
- default: () => src_default
26
- });
27
- module.exports = __toCommonJS(src_exports);
28
- var import_etherchain_ethereum_gas_v2_plugin = require("@xyo-network/etherchain-ethereum-gas-v2-plugin");
29
- __reExport(src_exports, require("@xyo-network/etherchain-ethereum-gas-v2-plugin"), module.exports);
30
- var EthereumGasEtherchainPlugins = [import_etherchain_ethereum_gas_v2_plugin.EthereumGasEtherchainV2Plugin];
31
- var src_default = EthereumGasEtherchainPlugins;
32
- //# sourceMappingURL=index.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["import { EthereumGasEtherchainV2Plugin } from '@xyo-network/etherchain-ethereum-gas-v2-plugin'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport * from '@xyo-network/etherchain-ethereum-gas-v2-plugin'\n\nexport const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[] = [EthereumGasEtherchainV2Plugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default EthereumGasEtherchainPlugins\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,+CAA8C;AAG9C,wBAAc,2DAHd;AAKO,IAAM,+BAAuD,CAAC,sEAA6B;AAGlG,IAAO,cAAQ;","names":[]}
@@ -1,5 +0,0 @@
1
- import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
2
- export * from '@xyo-network/etherchain-ethereum-gas-v2-plugin';
3
- export declare const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[];
4
- export default EthereumGasEtherchainPlugins;
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,cAAc,gDAAgD,CAAA;AAE9D,eAAO,MAAM,4BAA4B,EAAE,oBAAoB,EAAoC,CAAA;AAGnG,eAAe,4BAA4B,CAAA"}
@@ -1,5 +0,0 @@
1
- import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
2
- export * from '@xyo-network/etherchain-ethereum-gas-v2-plugin';
3
- export declare const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[];
4
- export default EthereumGasEtherchainPlugins;
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,cAAc,gDAAgD,CAAA;AAE9D,eAAO,MAAM,4BAA4B,EAAE,oBAAoB,EAAoC,CAAA;AAGnG,eAAe,4BAA4B,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,cAAc,gDAAgD,CAAA;AAE9D,eAAO,MAAM,4BAA4B,EAAE,oBAAoB,EAAoC,CAAA;AAGnG,eAAe,4BAA4B,CAAA"}
@@ -1,37 +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
- EthereumGasEtherchainPlugins: () => EthereumGasEtherchainPlugins,
25
- default: () => src_default
26
- });
27
- module.exports = __toCommonJS(src_exports);
28
- var import_etherchain_ethereum_gas_v2_plugin = require("@xyo-network/etherchain-ethereum-gas-v2-plugin");
29
- __reExport(src_exports, require("@xyo-network/etherchain-ethereum-gas-v2-plugin"), module.exports);
30
- var EthereumGasEtherchainPlugins = [import_etherchain_ethereum_gas_v2_plugin.EthereumGasEtherchainV2Plugin];
31
- var src_default = EthereumGasEtherchainPlugins;
32
- // Annotate the CommonJS export names for ESM import in node:
33
- 0 && (module.exports = {
34
- EthereumGasEtherchainPlugins,
35
- ...require("@xyo-network/etherchain-ethereum-gas-v2-plugin")
36
- });
37
- //# sourceMappingURL=index.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["import { EthereumGasEtherchainV2Plugin } from '@xyo-network/etherchain-ethereum-gas-v2-plugin'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport * from '@xyo-network/etherchain-ethereum-gas-v2-plugin'\n\nexport const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[] = [EthereumGasEtherchainV2Plugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default EthereumGasEtherchainPlugins\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,+CAA8C;AAG9C,wBAAc,2DAHd;AAKO,IAAM,+BAAuD,CAAC,sEAA6B;AAGlG,IAAO,cAAQ;","names":[]}
@@ -1,5 +0,0 @@
1
- import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
2
- export * from '@xyo-network/etherchain-ethereum-gas-v2-plugin';
3
- export declare const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[];
4
- export default EthereumGasEtherchainPlugins;
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,cAAc,gDAAgD,CAAA;AAE9D,eAAO,MAAM,4BAA4B,EAAE,oBAAoB,EAAoC,CAAA;AAGnG,eAAe,4BAA4B,CAAA"}
@@ -1,5 +0,0 @@
1
- import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
2
- export * from '@xyo-network/etherchain-ethereum-gas-v2-plugin';
3
- export declare const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[];
4
- export default EthereumGasEtherchainPlugins;
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,cAAc,gDAAgD,CAAA;AAE9D,eAAO,MAAM,4BAA4B,EAAE,oBAAoB,EAAoC,CAAA;AAGnG,eAAe,4BAA4B,CAAA"}
@@ -1,5 +0,0 @@
1
- import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
2
- export * from '@xyo-network/etherchain-ethereum-gas-v2-plugin';
3
- export declare const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[];
4
- export default EthereumGasEtherchainPlugins;
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,cAAc,gDAAgD,CAAA;AAE9D,eAAO,MAAM,4BAA4B,EAAE,oBAAoB,EAAoC,CAAA;AAGnG,eAAe,4BAA4B,CAAA"}
@@ -1,10 +0,0 @@
1
- // src/index.ts
2
- import { EthereumGasEtherchainV2Plugin } from "@xyo-network/etherchain-ethereum-gas-v2-plugin";
3
- export * from "@xyo-network/etherchain-ethereum-gas-v2-plugin";
4
- var EthereumGasEtherchainPlugins = [EthereumGasEtherchainV2Plugin];
5
- var src_default = EthereumGasEtherchainPlugins;
6
- export {
7
- EthereumGasEtherchainPlugins,
8
- src_default as default
9
- };
10
- //# sourceMappingURL=index.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["import { EthereumGasEtherchainV2Plugin } from '@xyo-network/etherchain-ethereum-gas-v2-plugin'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport * from '@xyo-network/etherchain-ethereum-gas-v2-plugin'\n\nexport const EthereumGasEtherchainPlugins: PayloadSetPluginFunc[] = [EthereumGasEtherchainV2Plugin]\n\n// eslint-disable-next-line import/no-default-export\nexport default EthereumGasEtherchainPlugins\n"],"mappings":";AAAA,SAAS,qCAAqC;AAG9C,cAAc;AAEP,IAAM,+BAAuD,CAAC,6BAA6B;AAGlG,IAAO,cAAQ;","names":[]}