@xyo-network/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.
- package/dist/neutral/index.d.ts +4 -3
- package/dist/neutral/index.mjs.map +1 -1
- package/package.json +9 -28
- package/src/index.ts +1 -1
- package/xy.config.ts +12 -0
- package/dist/browser/index.cjs +0 -32
- package/dist/browser/index.cjs.map +0 -1
- package/dist/browser/index.d.cts +0 -5
- package/dist/browser/index.d.cts.map +0 -1
- package/dist/browser/index.d.mts +0 -5
- package/dist/browser/index.d.mts.map +0 -1
- package/dist/browser/index.d.ts +0 -5
- package/dist/browser/index.d.ts.map +0 -1
- package/dist/browser/index.mjs +0 -10
- package/dist/browser/index.mjs.map +0 -1
- package/dist/neutral/index.cjs +0 -32
- package/dist/neutral/index.cjs.map +0 -1
- package/dist/neutral/index.d.cts +0 -5
- package/dist/neutral/index.d.cts.map +0 -1
- package/dist/neutral/index.d.mts +0 -5
- package/dist/neutral/index.d.mts.map +0 -1
- package/dist/neutral/index.d.ts.map +0 -1
- package/dist/node/index.cjs +0 -37
- package/dist/node/index.cjs.map +0 -1
- package/dist/node/index.d.cts +0 -5
- package/dist/node/index.d.cts.map +0 -1
- package/dist/node/index.d.mts +0 -5
- package/dist/node/index.d.mts.map +0 -1
- package/dist/node/index.d.ts +0 -5
- package/dist/node/index.d.ts.map +0 -1
- package/dist/node/index.mjs +0 -10
- package/dist/node/index.mjs.map +0 -1
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from '@xyo-network/ethereum-blockchain-payload-plugins';
|
|
2
2
|
import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
|
|
4
|
+
declare const BlockchainPayloadPlugins: PayloadPluginFunc[];
|
|
5
|
+
|
|
6
|
+
export { BlockchainPayloadPlugins, BlockchainPayloadPlugins as default };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/ethereum-blockchain-payload-plugins'\n\nimport { EthereumPayloadPlugins } from '@xyo-network/ethereum-blockchain-payload-plugins'\nimport { PayloadPluginFunc } from '@xyo-network/payload-plugin'\n\nexport const BlockchainPayloadPlugins: PayloadPluginFunc[] = [...EthereumPayloadPlugins]\n\n// eslint-disable-next-line import/no-default-export\nexport default BlockchainPayloadPlugins\n"],"mappings":";AAAA,cAAc;AAEd,SAAS,8BAA8B;AAGhC,IAAM,2BAAgD,CAAC,GAAG,sBAAsB;AAGvF,IAAO,cAAQ;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/ethereum-blockchain-payload-plugins'\n\nimport { EthereumPayloadPlugins } from '@xyo-network/ethereum-blockchain-payload-plugins'\nimport { PayloadPluginFunc } from '@xyo-network/payload-plugin'\n\nexport const BlockchainPayloadPlugins: PayloadPluginFunc[] = [...EthereumPayloadPlugins]\n\n// eslint-disable-next-line import-x/no-default-export\nexport default BlockchainPayloadPlugins\n"],"mappings":";AAAA,cAAc;AAEd,SAAS,8BAA8B;AAGhC,IAAM,2BAAgD,CAAC,GAAG,sBAAsB;AAGvF,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/ethereum-blockchain-payload-plugins": "^
|
|
14
|
-
"@xyo-network/payload-plugin": "^
|
|
13
|
+
"@xyo-network/ethereum-blockchain-payload-plugins": "^3.0.1",
|
|
14
|
+
"@xyo-network/payload-plugin": "^3.0.2"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@xylabs/ts-scripts-yarn3": "^
|
|
18
|
-
"@xylabs/tsconfig": "^
|
|
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
22
|
"exports": {
|
|
23
23
|
".": {
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
"types": "./dist/browser/index.d.cts",
|
|
27
|
-
"default": "./dist/browser/index.cjs"
|
|
28
|
-
},
|
|
29
|
-
"import": {
|
|
30
|
-
"types": "./dist/browser/index.d.mts",
|
|
31
|
-
"default": "./dist/browser/index.mjs"
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"node": {
|
|
35
|
-
"require": {
|
|
36
|
-
"types": "./dist/node/index.d.cts",
|
|
37
|
-
"default": "./dist/node/index.cjs"
|
|
38
|
-
},
|
|
39
|
-
"import": {
|
|
40
|
-
"types": "./dist/node/index.d.mts",
|
|
41
|
-
"default": "./dist/node/index.mjs"
|
|
42
|
-
}
|
|
43
|
-
}
|
|
24
|
+
"types": "./dist/neutral/index.d.ts",
|
|
25
|
+
"default": "./dist/neutral/index.mjs"
|
|
44
26
|
},
|
|
45
27
|
"./package.json": "./package.json"
|
|
46
28
|
},
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"types": "dist/node/index.d.ts",
|
|
29
|
+
"module": "dist/neutral/index.mjs",
|
|
30
|
+
"types": "dist/neutral/index.d.ts",
|
|
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": "
|
|
41
|
+
"version": "3.0.1",
|
|
61
42
|
"type": "module"
|
|
62
43
|
}
|
package/src/index.ts
CHANGED
|
@@ -5,5 +5,5 @@ import { PayloadPluginFunc } from '@xyo-network/payload-plugin'
|
|
|
5
5
|
|
|
6
6
|
export const BlockchainPayloadPlugins: PayloadPluginFunc[] = [...EthereumPayloadPlugins]
|
|
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 BlockchainPayloadPlugins
|
package/xy.config.ts
ADDED
package/dist/browser/index.cjs
DELETED
|
@@ -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
|
-
BlockchainPayloadPlugins: () => BlockchainPayloadPlugins,
|
|
25
|
-
default: () => src_default
|
|
26
|
-
});
|
|
27
|
-
module.exports = __toCommonJS(src_exports);
|
|
28
|
-
__reExport(src_exports, require("@xyo-network/ethereum-blockchain-payload-plugins"), module.exports);
|
|
29
|
-
var import_ethereum_blockchain_payload_plugins = require("@xyo-network/ethereum-blockchain-payload-plugins");
|
|
30
|
-
var BlockchainPayloadPlugins = [...import_ethereum_blockchain_payload_plugins.EthereumPayloadPlugins];
|
|
31
|
-
var src_default = BlockchainPayloadPlugins;
|
|
32
|
-
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/ethereum-blockchain-payload-plugins'\n\nimport { EthereumPayloadPlugins } from '@xyo-network/ethereum-blockchain-payload-plugins'\nimport { PayloadPluginFunc } from '@xyo-network/payload-plugin'\n\nexport const BlockchainPayloadPlugins: PayloadPluginFunc[] = [...EthereumPayloadPlugins]\n\n// eslint-disable-next-line import/no-default-export\nexport default BlockchainPayloadPlugins\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wBAAc,6DAAd;AAEA,iDAAuC;AAGhC,IAAM,2BAAgD,CAAC,GAAG,iEAAsB;AAGvF,IAAO,cAAQ;","names":[]}
|
package/dist/browser/index.d.cts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export * from '@xyo-network/ethereum-blockchain-payload-plugins';
|
|
2
|
-
import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
|
|
3
|
-
export declare const BlockchainPayloadPlugins: PayloadPluginFunc[];
|
|
4
|
-
export default BlockchainPayloadPlugins;
|
|
5
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kDAAkD,CAAA;AAGhE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,wBAAwB,EAAE,iBAAiB,EAAgC,CAAA;AAGxF,eAAe,wBAAwB,CAAA"}
|
package/dist/browser/index.d.mts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export * from '@xyo-network/ethereum-blockchain-payload-plugins';
|
|
2
|
-
import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
|
|
3
|
-
export declare const BlockchainPayloadPlugins: PayloadPluginFunc[];
|
|
4
|
-
export default BlockchainPayloadPlugins;
|
|
5
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kDAAkD,CAAA;AAGhE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,wBAAwB,EAAE,iBAAiB,EAAgC,CAAA;AAGxF,eAAe,wBAAwB,CAAA"}
|
package/dist/browser/index.d.ts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export * from '@xyo-network/ethereum-blockchain-payload-plugins';
|
|
2
|
-
import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
|
|
3
|
-
export declare const BlockchainPayloadPlugins: PayloadPluginFunc[];
|
|
4
|
-
export default BlockchainPayloadPlugins;
|
|
5
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kDAAkD,CAAA;AAGhE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,wBAAwB,EAAE,iBAAiB,EAAgC,CAAA;AAGxF,eAAe,wBAAwB,CAAA"}
|
package/dist/browser/index.mjs
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
// src/index.ts
|
|
2
|
-
export * from "@xyo-network/ethereum-blockchain-payload-plugins";
|
|
3
|
-
import { EthereumPayloadPlugins } from "@xyo-network/ethereum-blockchain-payload-plugins";
|
|
4
|
-
var BlockchainPayloadPlugins = [...EthereumPayloadPlugins];
|
|
5
|
-
var src_default = BlockchainPayloadPlugins;
|
|
6
|
-
export {
|
|
7
|
-
BlockchainPayloadPlugins,
|
|
8
|
-
src_default as default
|
|
9
|
-
};
|
|
10
|
-
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/ethereum-blockchain-payload-plugins'\n\nimport { EthereumPayloadPlugins } from '@xyo-network/ethereum-blockchain-payload-plugins'\nimport { PayloadPluginFunc } from '@xyo-network/payload-plugin'\n\nexport const BlockchainPayloadPlugins: PayloadPluginFunc[] = [...EthereumPayloadPlugins]\n\n// eslint-disable-next-line import/no-default-export\nexport default BlockchainPayloadPlugins\n"],"mappings":";AAAA,cAAc;AAEd,SAAS,8BAA8B;AAGhC,IAAM,2BAAgD,CAAC,GAAG,sBAAsB;AAGvF,IAAO,cAAQ;","names":[]}
|
package/dist/neutral/index.cjs
DELETED
|
@@ -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
|
-
BlockchainPayloadPlugins: () => BlockchainPayloadPlugins,
|
|
25
|
-
default: () => src_default
|
|
26
|
-
});
|
|
27
|
-
module.exports = __toCommonJS(src_exports);
|
|
28
|
-
__reExport(src_exports, require("@xyo-network/ethereum-blockchain-payload-plugins"), module.exports);
|
|
29
|
-
var import_ethereum_blockchain_payload_plugins = require("@xyo-network/ethereum-blockchain-payload-plugins");
|
|
30
|
-
var BlockchainPayloadPlugins = [...import_ethereum_blockchain_payload_plugins.EthereumPayloadPlugins];
|
|
31
|
-
var src_default = BlockchainPayloadPlugins;
|
|
32
|
-
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/ethereum-blockchain-payload-plugins'\n\nimport { EthereumPayloadPlugins } from '@xyo-network/ethereum-blockchain-payload-plugins'\nimport { PayloadPluginFunc } from '@xyo-network/payload-plugin'\n\nexport const BlockchainPayloadPlugins: PayloadPluginFunc[] = [...EthereumPayloadPlugins]\n\n// eslint-disable-next-line import/no-default-export\nexport default BlockchainPayloadPlugins\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wBAAc,6DAAd;AAEA,iDAAuC;AAGhC,IAAM,2BAAgD,CAAC,GAAG,iEAAsB;AAGvF,IAAO,cAAQ;","names":[]}
|
package/dist/neutral/index.d.cts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export * from '@xyo-network/ethereum-blockchain-payload-plugins';
|
|
2
|
-
import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
|
|
3
|
-
export declare const BlockchainPayloadPlugins: PayloadPluginFunc[];
|
|
4
|
-
export default BlockchainPayloadPlugins;
|
|
5
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kDAAkD,CAAA;AAGhE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,wBAAwB,EAAE,iBAAiB,EAAgC,CAAA;AAGxF,eAAe,wBAAwB,CAAA"}
|
package/dist/neutral/index.d.mts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export * from '@xyo-network/ethereum-blockchain-payload-plugins';
|
|
2
|
-
import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
|
|
3
|
-
export declare const BlockchainPayloadPlugins: PayloadPluginFunc[];
|
|
4
|
-
export default BlockchainPayloadPlugins;
|
|
5
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kDAAkD,CAAA;AAGhE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,wBAAwB,EAAE,iBAAiB,EAAgC,CAAA;AAGxF,eAAe,wBAAwB,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kDAAkD,CAAA;AAGhE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,wBAAwB,EAAE,iBAAiB,EAAgC,CAAA;AAGxF,eAAe,wBAAwB,CAAA"}
|
package/dist/node/index.cjs
DELETED
|
@@ -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
|
-
BlockchainPayloadPlugins: () => BlockchainPayloadPlugins,
|
|
25
|
-
default: () => src_default
|
|
26
|
-
});
|
|
27
|
-
module.exports = __toCommonJS(src_exports);
|
|
28
|
-
__reExport(src_exports, require("@xyo-network/ethereum-blockchain-payload-plugins"), module.exports);
|
|
29
|
-
var import_ethereum_blockchain_payload_plugins = require("@xyo-network/ethereum-blockchain-payload-plugins");
|
|
30
|
-
var BlockchainPayloadPlugins = [...import_ethereum_blockchain_payload_plugins.EthereumPayloadPlugins];
|
|
31
|
-
var src_default = BlockchainPayloadPlugins;
|
|
32
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
33
|
-
0 && (module.exports = {
|
|
34
|
-
BlockchainPayloadPlugins,
|
|
35
|
-
...require("@xyo-network/ethereum-blockchain-payload-plugins")
|
|
36
|
-
});
|
|
37
|
-
//# sourceMappingURL=index.cjs.map
|
package/dist/node/index.cjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/ethereum-blockchain-payload-plugins'\n\nimport { EthereumPayloadPlugins } from '@xyo-network/ethereum-blockchain-payload-plugins'\nimport { PayloadPluginFunc } from '@xyo-network/payload-plugin'\n\nexport const BlockchainPayloadPlugins: PayloadPluginFunc[] = [...EthereumPayloadPlugins]\n\n// eslint-disable-next-line import/no-default-export\nexport default BlockchainPayloadPlugins\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wBAAc,6DAAd;AAEA,iDAAuC;AAGhC,IAAM,2BAAgD,CAAC,GAAG,iEAAsB;AAGvF,IAAO,cAAQ;","names":[]}
|
package/dist/node/index.d.cts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export * from '@xyo-network/ethereum-blockchain-payload-plugins';
|
|
2
|
-
import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
|
|
3
|
-
export declare const BlockchainPayloadPlugins: PayloadPluginFunc[];
|
|
4
|
-
export default BlockchainPayloadPlugins;
|
|
5
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kDAAkD,CAAA;AAGhE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,wBAAwB,EAAE,iBAAiB,EAAgC,CAAA;AAGxF,eAAe,wBAAwB,CAAA"}
|
package/dist/node/index.d.mts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export * from '@xyo-network/ethereum-blockchain-payload-plugins';
|
|
2
|
-
import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
|
|
3
|
-
export declare const BlockchainPayloadPlugins: PayloadPluginFunc[];
|
|
4
|
-
export default BlockchainPayloadPlugins;
|
|
5
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kDAAkD,CAAA;AAGhE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,wBAAwB,EAAE,iBAAiB,EAAgC,CAAA;AAGxF,eAAe,wBAAwB,CAAA"}
|
package/dist/node/index.d.ts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export * from '@xyo-network/ethereum-blockchain-payload-plugins';
|
|
2
|
-
import { PayloadPluginFunc } from '@xyo-network/payload-plugin';
|
|
3
|
-
export declare const BlockchainPayloadPlugins: PayloadPluginFunc[];
|
|
4
|
-
export default BlockchainPayloadPlugins;
|
|
5
|
-
//# sourceMappingURL=index.d.ts.map
|
package/dist/node/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kDAAkD,CAAA;AAGhE,OAAO,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAE/D,eAAO,MAAM,wBAAwB,EAAE,iBAAiB,EAAgC,CAAA;AAGxF,eAAe,wBAAwB,CAAA"}
|
package/dist/node/index.mjs
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
// src/index.ts
|
|
2
|
-
export * from "@xyo-network/ethereum-blockchain-payload-plugins";
|
|
3
|
-
import { EthereumPayloadPlugins } from "@xyo-network/ethereum-blockchain-payload-plugins";
|
|
4
|
-
var BlockchainPayloadPlugins = [...EthereumPayloadPlugins];
|
|
5
|
-
var src_default = BlockchainPayloadPlugins;
|
|
6
|
-
export {
|
|
7
|
-
BlockchainPayloadPlugins,
|
|
8
|
-
src_default as default
|
|
9
|
-
};
|
|
10
|
-
//# sourceMappingURL=index.mjs.map
|
package/dist/node/index.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/ethereum-blockchain-payload-plugins'\n\nimport { EthereumPayloadPlugins } from '@xyo-network/ethereum-blockchain-payload-plugins'\nimport { PayloadPluginFunc } from '@xyo-network/payload-plugin'\n\nexport const BlockchainPayloadPlugins: PayloadPluginFunc[] = [...EthereumPayloadPlugins]\n\n// eslint-disable-next-line import/no-default-export\nexport default BlockchainPayloadPlugins\n"],"mappings":";AAAA,cAAc;AAEd,SAAS,8BAA8B;AAGhC,IAAM,2BAAgD,CAAC,GAAG,sBAAsB;AAGvF,IAAO,cAAQ;","names":[]}
|