@xyo-network/gas-ethereum-blockchain-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 +21 -19
- package/src/index.ts +0 -10
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from '@xyo-network/etherchain-gas-ethereum-blockchain-plugins';
|
|
2
|
+
export * from '@xyo-network/etherscan-ethereum-gas-plugin';
|
|
3
|
+
import type { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
4
|
+
export declare const EthereumGasPlugins: PayloadSetPluginFunc[];
|
|
5
|
+
export default EthereumGasPlugins;
|
|
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,yDAAyD,CAAA;AACvE,cAAc,4CAA4C,CAAA;AAI1D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAE1E,eAAO,MAAM,kBAAkB,EAAE,oBAAoB,EAAkE,CAAA;AAEvH,eAAe,kBAAkB,CAAA"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// src/index.ts
|
|
2
|
+
export * from "@xyo-network/etherchain-gas-ethereum-blockchain-plugins";
|
|
3
|
+
export * from "@xyo-network/etherscan-ethereum-gas-plugin";
|
|
4
|
+
import { EthereumGasEtherchainPlugins } from "@xyo-network/etherchain-gas-ethereum-blockchain-plugins";
|
|
5
|
+
import { EthereumGasEtherscanPlugin } from "@xyo-network/etherscan-ethereum-gas-plugin";
|
|
6
|
+
var EthereumGasPlugins = [...EthereumGasEtherchainPlugins, EthereumGasEtherscanPlugin];
|
|
7
|
+
var index_default = EthereumGasPlugins;
|
|
8
|
+
export {
|
|
9
|
+
EthereumGasPlugins,
|
|
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-plugins'\nexport * from '@xyo-network/etherscan-ethereum-gas-plugin'\n\nimport { EthereumGasEtherchainPlugins } from '@xyo-network/etherchain-gas-ethereum-blockchain-plugins'\nimport { EthereumGasEtherscanPlugin } from '@xyo-network/etherscan-ethereum-gas-plugin'\nimport type { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport const EthereumGasPlugins: PayloadSetPluginFunc[] = [...EthereumGasEtherchainPlugins, EthereumGasEtherscanPlugin]\n\nexport default EthereumGasPlugins\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AAEd,SAAS,oCAAoC;AAC7C,SAAS,kCAAkC;AAGpC,IAAM,qBAA6C,CAAC,GAAG,8BAA8B,0BAA0B;AAEtH,IAAO,gBAAQ;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/gas-ethereum-blockchain-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,31 +30,31 @@
|
|
|
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-plugins": "~5.3.4",
|
|
37
|
+
"@xyo-network/etherscan-ethereum-gas-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
45
|
"@xyo-network/abstract-witness": "~5.3.5",
|
|
44
|
-
"@xyo-network/blocknative-ethereum-gas-payload-plugin": "~5.3.
|
|
45
|
-
"@xyo-network/blocknative-ethereum-gas-plugin": "~5.3.
|
|
46
|
+
"@xyo-network/blocknative-ethereum-gas-payload-plugin": "~5.3.4",
|
|
47
|
+
"@xyo-network/blocknative-ethereum-gas-plugin": "~5.3.4",
|
|
46
48
|
"@xyo-network/diviner-abstract": "~5.3.5",
|
|
47
49
|
"@xyo-network/diviner-model": "~5.3.5",
|
|
48
|
-
"@xyo-network/etherchain-ethereum-gas-v2-payload-plugin": "~5.3.
|
|
49
|
-
"@xyo-network/etherchain-ethereum-gas-v2-plugin": "~5.3.
|
|
50
|
-
"@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins": "~5.3.
|
|
51
|
-
"@xyo-network/
|
|
52
|
-
"@xyo-network/ethers-ethereum-gas-
|
|
53
|
-
"@xyo-network/
|
|
54
|
-
"@xyo-network/
|
|
55
|
-
"@xyo-network/
|
|
56
|
-
"@xyo-network/ethgasstation-ethereum-gas-payload-plugin": "~5.3.2",
|
|
57
|
-
"@xyo-network/gas-price-payload-plugin": "~5.3.2",
|
|
50
|
+
"@xyo-network/etherchain-ethereum-gas-v2-payload-plugin": "~5.3.4",
|
|
51
|
+
"@xyo-network/etherchain-ethereum-gas-v2-plugin": "~5.3.4",
|
|
52
|
+
"@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins": "~5.3.4",
|
|
53
|
+
"@xyo-network/ethers-ethereum-gas-payload-plugin": "~5.3.4",
|
|
54
|
+
"@xyo-network/ethers-ethereum-gas-plugin": "~5.3.4",
|
|
55
|
+
"@xyo-network/etherscan-ethereum-gas-payload-plugin": "~5.3.4",
|
|
56
|
+
"@xyo-network/ethgasstation-ethereum-gas-payload-plugin": "~5.3.4",
|
|
57
|
+
"@xyo-network/gas-price-payload-plugin": "~5.3.4",
|
|
58
58
|
"@xyo-network/module-model": "~5.3.5",
|
|
59
59
|
"@xyo-network/payload-model": "~5.3.5",
|
|
60
60
|
"@xyo-network/payloadset-plugin": "~5.3.5",
|
|
@@ -65,10 +65,12 @@
|
|
|
65
65
|
"ethers": "^6.16.0",
|
|
66
66
|
"regression": "~2.0.1",
|
|
67
67
|
"typescript": "~5.9.3",
|
|
68
|
-
"vitest": "~4.1.2"
|
|
68
|
+
"vitest": "~4.1.2",
|
|
69
|
+
"zod": "^4"
|
|
69
70
|
},
|
|
70
71
|
"peerDependencies": {
|
|
71
|
-
"@xylabs/sdk-js": "^5"
|
|
72
|
+
"@xylabs/sdk-js": "^5",
|
|
73
|
+
"@xyo-network/payloadset-plugin": "^5"
|
|
72
74
|
},
|
|
73
75
|
"publishConfig": {
|
|
74
76
|
"access": "public"
|
package/src/index.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export * from '@xyo-network/etherchain-gas-ethereum-blockchain-plugins'
|
|
2
|
-
export * from '@xyo-network/etherscan-ethereum-gas-plugin'
|
|
3
|
-
|
|
4
|
-
import { EthereumGasEtherchainPlugins } from '@xyo-network/etherchain-gas-ethereum-blockchain-plugins'
|
|
5
|
-
import { EthereumGasEtherscanPlugin } from '@xyo-network/etherscan-ethereum-gas-plugin'
|
|
6
|
-
import type { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'
|
|
7
|
-
|
|
8
|
-
export const EthereumGasPlugins: PayloadSetPluginFunc[] = [...EthereumGasEtherchainPlugins, EthereumGasEtherscanPlugin]
|
|
9
|
-
|
|
10
|
-
export default EthereumGasPlugins
|