@xyo-network/evm-plugins 2.94.3 → 2.94.5
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 +37 -0
- package/dist/neutral/index.cjs.map +1 -0
- package/dist/neutral/index.d.cts +10 -0
- package/dist/neutral/index.d.cts.map +1 -0
- package/dist/neutral/index.d.mts +10 -0
- package/dist/neutral/index.d.mts.map +1 -0
- package/dist/neutral/index.d.ts +10 -0
- package/dist/neutral/index.d.ts.map +1 -0
- package/dist/neutral/index.js +15 -0
- package/dist/neutral/index.js.map +1 -0
- package/package.json +30 -30
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
EvmPlugins: () => EvmPlugins,
|
|
25
|
+
default: () => src_default
|
|
26
|
+
});
|
|
27
|
+
module.exports = __toCommonJS(src_exports);
|
|
28
|
+
__reExport(src_exports, require("@xyo-network/erc1822-witness"), module.exports);
|
|
29
|
+
__reExport(src_exports, require("@xyo-network/erc1967-witness"), module.exports);
|
|
30
|
+
__reExport(src_exports, require("@xyo-network/ethereum-blockchain-plugins"), module.exports);
|
|
31
|
+
__reExport(src_exports, require("@xyo-network/evm-abi-diviner"), module.exports);
|
|
32
|
+
__reExport(src_exports, require("@xyo-network/evm-call-witness"), module.exports);
|
|
33
|
+
__reExport(src_exports, require("@xyo-network/evm-contract-witness"), module.exports);
|
|
34
|
+
var import_ethereum_blockchain_plugins = require("@xyo-network/ethereum-blockchain-plugins");
|
|
35
|
+
var EvmPlugins = [...import_ethereum_blockchain_plugins.EthereumPlugins];
|
|
36
|
+
var src_default = EvmPlugins;
|
|
37
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/erc1822-witness'\nexport * from '@xyo-network/erc1967-witness'\nexport * from '@xyo-network/ethereum-blockchain-plugins'\nexport * from '@xyo-network/evm-abi-diviner'\nexport * from '@xyo-network/evm-call-witness'\nexport * from '@xyo-network/evm-contract-witness'\n\nimport { EthereumPlugins } from '@xyo-network/ethereum-blockchain-plugins'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport const EvmPlugins: PayloadSetPluginFunc[] = [...EthereumPlugins]\n\n// eslint-disable-next-line import/no-default-export\nexport default EvmPlugins\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wBAAc,yCAAd;AACA,wBAAc,yCADd;AAEA,wBAAc,qDAFd;AAGA,wBAAc,yCAHd;AAIA,wBAAc,0CAJd;AAKA,wBAAc,8CALd;AAOA,yCAAgC;AAGzB,IAAM,aAAqC,CAAC,GAAG,kDAAe;AAGrE,IAAO,cAAQ;","names":[]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from '@xyo-network/erc1822-witness';
|
|
2
|
+
export * from '@xyo-network/erc1967-witness';
|
|
3
|
+
export * from '@xyo-network/ethereum-blockchain-plugins';
|
|
4
|
+
export * from '@xyo-network/evm-abi-diviner';
|
|
5
|
+
export * from '@xyo-network/evm-call-witness';
|
|
6
|
+
export * from '@xyo-network/evm-contract-witness';
|
|
7
|
+
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
8
|
+
export declare const EvmPlugins: PayloadSetPluginFunc[];
|
|
9
|
+
export default EvmPlugins;
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAA;AAC5C,cAAc,8BAA8B,CAAA;AAC5C,cAAc,0CAA0C,CAAA;AACxD,cAAc,8BAA8B,CAAA;AAC5C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,mCAAmC,CAAA;AAGjD,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,eAAO,MAAM,UAAU,EAAE,oBAAoB,EAAyB,CAAA;AAGtE,eAAe,UAAU,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from '@xyo-network/erc1822-witness';
|
|
2
|
+
export * from '@xyo-network/erc1967-witness';
|
|
3
|
+
export * from '@xyo-network/ethereum-blockchain-plugins';
|
|
4
|
+
export * from '@xyo-network/evm-abi-diviner';
|
|
5
|
+
export * from '@xyo-network/evm-call-witness';
|
|
6
|
+
export * from '@xyo-network/evm-contract-witness';
|
|
7
|
+
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
8
|
+
export declare const EvmPlugins: PayloadSetPluginFunc[];
|
|
9
|
+
export default EvmPlugins;
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAA;AAC5C,cAAc,8BAA8B,CAAA;AAC5C,cAAc,0CAA0C,CAAA;AACxD,cAAc,8BAA8B,CAAA;AAC5C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,mCAAmC,CAAA;AAGjD,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,eAAO,MAAM,UAAU,EAAE,oBAAoB,EAAyB,CAAA;AAGtE,eAAe,UAAU,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from '@xyo-network/erc1822-witness';
|
|
2
|
+
export * from '@xyo-network/erc1967-witness';
|
|
3
|
+
export * from '@xyo-network/ethereum-blockchain-plugins';
|
|
4
|
+
export * from '@xyo-network/evm-abi-diviner';
|
|
5
|
+
export * from '@xyo-network/evm-call-witness';
|
|
6
|
+
export * from '@xyo-network/evm-contract-witness';
|
|
7
|
+
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
8
|
+
export declare const EvmPlugins: PayloadSetPluginFunc[];
|
|
9
|
+
export default EvmPlugins;
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAA;AAC5C,cAAc,8BAA8B,CAAA;AAC5C,cAAc,0CAA0C,CAAA;AACxD,cAAc,8BAA8B,CAAA;AAC5C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,mCAAmC,CAAA;AAGjD,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,eAAO,MAAM,UAAU,EAAE,oBAAoB,EAAyB,CAAA;AAGtE,eAAe,UAAU,CAAA"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// src/index.ts
|
|
2
|
+
export * from "@xyo-network/erc1822-witness";
|
|
3
|
+
export * from "@xyo-network/erc1967-witness";
|
|
4
|
+
export * from "@xyo-network/ethereum-blockchain-plugins";
|
|
5
|
+
export * from "@xyo-network/evm-abi-diviner";
|
|
6
|
+
export * from "@xyo-network/evm-call-witness";
|
|
7
|
+
export * from "@xyo-network/evm-contract-witness";
|
|
8
|
+
import { EthereumPlugins } from "@xyo-network/ethereum-blockchain-plugins";
|
|
9
|
+
var EvmPlugins = [...EthereumPlugins];
|
|
10
|
+
var src_default = EvmPlugins;
|
|
11
|
+
export {
|
|
12
|
+
EvmPlugins,
|
|
13
|
+
src_default as default
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/erc1822-witness'\nexport * from '@xyo-network/erc1967-witness'\nexport * from '@xyo-network/ethereum-blockchain-plugins'\nexport * from '@xyo-network/evm-abi-diviner'\nexport * from '@xyo-network/evm-call-witness'\nexport * from '@xyo-network/evm-contract-witness'\n\nimport { EthereumPlugins } from '@xyo-network/ethereum-blockchain-plugins'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport const EvmPlugins: PayloadSetPluginFunc[] = [...EthereumPlugins]\n\n// eslint-disable-next-line import/no-default-export\nexport default EvmPlugins\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AAEd,SAAS,uBAAuB;AAGzB,IAAM,aAAqC,CAAC,GAAG,eAAe;AAGrE,IAAO,cAAQ;","names":[]}
|
package/package.json
CHANGED
|
@@ -10,38 +10,38 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/plugins/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/erc1822-witness": "~2.94.
|
|
14
|
-
"@xyo-network/erc1967-witness": "~2.94.
|
|
15
|
-
"@xyo-network/ethereum-blockchain-plugins": "~2.94.
|
|
16
|
-
"@xyo-network/evm-abi-diviner": "~2.94.
|
|
17
|
-
"@xyo-network/evm-call-witness": "~2.94.
|
|
18
|
-
"@xyo-network/evm-contract-witness": "~2.94.
|
|
19
|
-
"@xyo-network/payloadset-plugin": "^2.99.
|
|
13
|
+
"@xyo-network/erc1822-witness": "~2.94.5",
|
|
14
|
+
"@xyo-network/erc1967-witness": "~2.94.5",
|
|
15
|
+
"@xyo-network/ethereum-blockchain-plugins": "~2.94.5",
|
|
16
|
+
"@xyo-network/evm-abi-diviner": "~2.94.5",
|
|
17
|
+
"@xyo-network/evm-call-witness": "~2.94.5",
|
|
18
|
+
"@xyo-network/evm-contract-witness": "~2.94.5",
|
|
19
|
+
"@xyo-network/payloadset-plugin": "^2.99.3"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@xylabs/delay": "^3.
|
|
23
|
-
"@xylabs/jest-helpers": "^3.
|
|
24
|
-
"@xylabs/ts-scripts-yarn3": "^3.
|
|
25
|
-
"@xylabs/tsconfig": "^3.
|
|
26
|
-
"@xyo-network/account": "^2.99.
|
|
27
|
-
"@xyo-network/api-call-witness": "~2.94.
|
|
28
|
-
"@xyo-network/crypto-nft-payload-plugin": "~2.94.
|
|
29
|
-
"@xyo-network/diviner-boundwitness-memory": "^2.99.
|
|
30
|
-
"@xyo-network/diviner-evm-call-result-to-token-uri": "~2.94.
|
|
31
|
-
"@xyo-network/diviner-model": "^2.99.
|
|
32
|
-
"@xyo-network/diviner-payload-memory": "^2.99.
|
|
33
|
-
"@xyo-network/diviner-payload-model": "^2.99.
|
|
34
|
-
"@xyo-network/diviner-temporal-indexing": "^2.99.
|
|
35
|
-
"@xyo-network/evm-nft-id-payload-plugin": "~2.94.
|
|
36
|
-
"@xyo-network/manifest": "^2.99.
|
|
37
|
-
"@xyo-network/module-factory-locator": "^2.99.
|
|
38
|
-
"@xyo-network/module-model": "^2.99.
|
|
39
|
-
"@xyo-network/node-memory": "^2.99.
|
|
22
|
+
"@xylabs/delay": "^3.3.2",
|
|
23
|
+
"@xylabs/jest-helpers": "^3.3.2",
|
|
24
|
+
"@xylabs/ts-scripts-yarn3": "^3.10.0",
|
|
25
|
+
"@xylabs/tsconfig": "^3.10.0",
|
|
26
|
+
"@xyo-network/account": "^2.99.3",
|
|
27
|
+
"@xyo-network/api-call-witness": "~2.94.5",
|
|
28
|
+
"@xyo-network/crypto-nft-payload-plugin": "~2.94.5",
|
|
29
|
+
"@xyo-network/diviner-boundwitness-memory": "^2.99.3",
|
|
30
|
+
"@xyo-network/diviner-evm-call-result-to-token-uri": "~2.94.5",
|
|
31
|
+
"@xyo-network/diviner-model": "^2.99.3",
|
|
32
|
+
"@xyo-network/diviner-payload-memory": "^2.99.3",
|
|
33
|
+
"@xyo-network/diviner-payload-model": "^2.99.3",
|
|
34
|
+
"@xyo-network/diviner-temporal-indexing": "^2.99.3",
|
|
35
|
+
"@xyo-network/evm-nft-id-payload-plugin": "~2.94.5",
|
|
36
|
+
"@xyo-network/manifest": "^2.99.3",
|
|
37
|
+
"@xyo-network/module-factory-locator": "^2.99.3",
|
|
38
|
+
"@xyo-network/module-model": "^2.99.3",
|
|
39
|
+
"@xyo-network/node-memory": "^2.99.3",
|
|
40
40
|
"@xyo-network/open-zeppelin-typechain": "^3.0.5",
|
|
41
|
-
"@xyo-network/payload-model": "^2.99.
|
|
42
|
-
"@xyo-network/sentinel-model": "^2.99.
|
|
43
|
-
"@xyo-network/witness-evm-abstract": "^2.99.
|
|
44
|
-
"@xyo-network/witness-timestamp": "^2.99.
|
|
41
|
+
"@xyo-network/payload-model": "^2.99.3",
|
|
42
|
+
"@xyo-network/sentinel-model": "^2.99.3",
|
|
43
|
+
"@xyo-network/witness-evm-abstract": "^2.99.3",
|
|
44
|
+
"@xyo-network/witness-timestamp": "^2.99.3",
|
|
45
45
|
"jest": "^29.7.0",
|
|
46
46
|
"typescript": "^5.4.5"
|
|
47
47
|
},
|
|
@@ -84,6 +84,6 @@
|
|
|
84
84
|
"url": "https://github.com/XYOracleNetwork/plugins.git"
|
|
85
85
|
},
|
|
86
86
|
"sideEffects": false,
|
|
87
|
-
"version": "2.94.
|
|
87
|
+
"version": "2.94.5",
|
|
88
88
|
"type": "module"
|
|
89
89
|
}
|