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