@xyo-network/ethereum-blockchain-payload-plugins 5.3.2 → 5.3.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.
@@ -0,0 +1,5 @@
1
+ export * from '@xyo-network/gas-ethereum-blockchain-payload-plugins';
2
+ import type { PayloadPluginFunc } from '@xyo-network/payload-plugin';
3
+ export declare const EthereumPayloadPlugins: PayloadPluginFunc[];
4
+ export default EthereumPayloadPlugins;
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,sDAAsD,CAAA;AAGpE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAEpE,eAAO,MAAM,sBAAsB,EAAE,iBAAiB,EAAmC,CAAA;AAEzF,eAAe,sBAAsB,CAAA"}
@@ -0,0 +1,10 @@
1
+ // src/index.ts
2
+ export * from "@xyo-network/gas-ethereum-blockchain-payload-plugins";
3
+ import { EthereumGasPayloadPlugins } from "@xyo-network/gas-ethereum-blockchain-payload-plugins";
4
+ var EthereumPayloadPlugins = [...EthereumGasPayloadPlugins];
5
+ var index_default = EthereumPayloadPlugins;
6
+ export {
7
+ EthereumPayloadPlugins,
8
+ index_default as default
9
+ };
10
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/gas-ethereum-blockchain-payload-plugins'\n\nimport { EthereumGasPayloadPlugins } from '@xyo-network/gas-ethereum-blockchain-payload-plugins'\nimport type { PayloadPluginFunc } from '@xyo-network/payload-plugin'\n\nexport const EthereumPayloadPlugins: PayloadPluginFunc[] = [...EthereumGasPayloadPlugins]\n\nexport default EthereumPayloadPlugins\n"],"mappings":";AAAA,cAAc;AAEd,SAAS,iCAAiC;AAGnC,IAAM,yBAA8C,CAAC,GAAG,yBAAyB;AAExF,IAAO,gBAAQ;","names":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/ethereum-blockchain-payload-plugins",
3
- "version": "5.3.2",
3
+ "version": "5.3.4",
4
4
  "description": "Typescript/Javascript Plugins for XYO Platform",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -30,27 +30,29 @@
30
30
  "types": "dist/neutral/index.d.ts",
31
31
  "files": [
32
32
  "dist",
33
- "src",
34
- "!**/*.bench.*",
35
- "!**/*.spec.*",
36
- "!**/*.test.*"
33
+ "README.md"
37
34
  ],
35
+ "dependencies": {
36
+ "@xyo-network/gas-ethereum-blockchain-payload-plugins": "~5.3.4"
37
+ },
38
38
  "devDependencies": {
39
39
  "@xylabs/sdk-js": "^5.0.90",
40
+ "@xylabs/ts-scripts-common": "~7.5.10",
40
41
  "@xylabs/ts-scripts-yarn3": "~7.5.10",
41
42
  "@xylabs/tsconfig": "~7.5.10",
42
43
  "@xylabs/vitest-extended": "~5.0.90",
43
- "@xyo-network/etherchain-ethereum-gas-v2-payload-plugin": "~5.3.2",
44
- "@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins": "~5.3.2",
45
- "@xyo-network/etherscan-ethereum-gas-payload-plugin": "~5.3.2",
46
- "@xyo-network/gas-ethereum-blockchain-payload-plugins": "5.3.2",
44
+ "@xyo-network/etherchain-ethereum-gas-v2-payload-plugin": "~5.3.4",
45
+ "@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins": "~5.3.4",
46
+ "@xyo-network/etherscan-ethereum-gas-payload-plugin": "~5.3.4",
47
47
  "@xyo-network/payload-model": "~5.3.5",
48
48
  "@xyo-network/payload-plugin": "~5.3.5",
49
49
  "typescript": "~5.9.3",
50
- "vitest": "~4.1.2"
50
+ "vitest": "~4.1.2",
51
+ "zod": "^4"
51
52
  },
52
53
  "peerDependencies": {
53
- "@xylabs/sdk-js": "^5"
54
+ "@xylabs/sdk-js": "^5",
55
+ "@xyo-network/payload-plugin": "^5"
54
56
  },
55
57
  "publishConfig": {
56
58
  "access": "public"
package/src/index.ts DELETED
@@ -1,8 +0,0 @@
1
- export * from '@xyo-network/gas-ethereum-blockchain-payload-plugins'
2
-
3
- import { EthereumGasPayloadPlugins } from '@xyo-network/gas-ethereum-blockchain-payload-plugins'
4
- import type { PayloadPluginFunc } from '@xyo-network/payload-plugin'
5
-
6
- export const EthereumPayloadPlugins: PayloadPluginFunc[] = [...EthereumGasPayloadPlugins]
7
-
8
- export default EthereumPayloadPlugins