@xyo-network/ethereum-blockchain-plugins 3.4.3 → 3.4.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/gas-ethereum-blockchain-plugins'\n\nimport { EthereumGasPlugins } from '@xyo-network/gas-ethereum-blockchain-plugins'\nimport { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport const EthereumPlugins: PayloadSetPluginFunc[] = [...EthereumGasPlugins]\n\nexport default EthereumPlugins\n"],"mappings":";AAAA,cAAc;AAEd,SAAS,0BAA0B;AAG5B,IAAM,kBAA0C,CAAC,GAAG,kBAAkB;AAE7E,IAAO,gBAAQ;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xyo-network/gas-ethereum-blockchain-plugins'\n\nimport { EthereumGasPlugins } from '@xyo-network/gas-ethereum-blockchain-plugins'\nimport type { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'\n\nexport const EthereumPlugins: PayloadSetPluginFunc[] = [...EthereumGasPlugins]\n\nexport default EthereumPlugins\n"],"mappings":";AAAA,cAAc;AAEd,SAAS,0BAA0B;AAG5B,IAAM,kBAA0C,CAAC,GAAG,kBAAkB;AAE7E,IAAO,gBAAQ;","names":[]}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from '@xyo-network/gas-ethereum-blockchain-plugins';
|
|
2
|
-
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
2
|
+
import type { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
3
3
|
export declare const EthereumPlugins: PayloadSetPluginFunc[];
|
|
4
4
|
export default EthereumPlugins;
|
|
5
5
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,8CAA8C,CAAA;AAG5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,8CAA8C,CAAA;AAG5D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAE1E,eAAO,MAAM,eAAe,EAAE,oBAAoB,EAA4B,CAAA;AAE9E,eAAe,eAAe,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/ethereum-blockchain-plugins",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.5",
|
|
4
4
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -21,20 +21,20 @@
|
|
|
21
21
|
"type": "module",
|
|
22
22
|
"exports": {
|
|
23
23
|
".": {
|
|
24
|
-
"types": "./dist/
|
|
24
|
+
"types": "./dist/types/index.d.ts",
|
|
25
25
|
"default": "./dist/neutral/index.mjs"
|
|
26
26
|
},
|
|
27
27
|
"./package.json": "./package.json"
|
|
28
28
|
},
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
|
-
"types": "dist/
|
|
30
|
+
"types": "dist/types/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xyo-network/gas-ethereum-blockchain-plugins": "^3.4.
|
|
33
|
-
"@xyo-network/payloadset-plugin": "^3.
|
|
32
|
+
"@xyo-network/gas-ethereum-blockchain-plugins": "^3.4.5",
|
|
33
|
+
"@xyo-network/payloadset-plugin": "^3.10.6"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@xylabs/ts-scripts-yarn3": "^
|
|
37
|
-
"@xylabs/tsconfig": "^
|
|
36
|
+
"@xylabs/ts-scripts-yarn3": "^6.1.13",
|
|
37
|
+
"@xylabs/tsconfig": "^6.1.13",
|
|
38
38
|
"typescript": "^5.8.2"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
package/src/index.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * from '@xyo-network/gas-ethereum-blockchain-plugins'
|
|
2
2
|
|
|
3
3
|
import { EthereumGasPlugins } from '@xyo-network/gas-ethereum-blockchain-plugins'
|
|
4
|
-
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'
|
|
4
|
+
import type { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'
|
|
5
5
|
|
|
6
6
|
export const EthereumPlugins: PayloadSetPluginFunc[] = [...EthereumGasPlugins]
|
|
7
7
|
|
package/xy.config.ts
CHANGED