@xyo-network/ethereum-blockchain-plugins 2.73.4 → 2.74.1
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/docs.json +56282 -55287
- package/dist/index.d.mts +3 -4
- package/dist/index.d.mts.map +1 -0
- package/dist/index.d.ts +3 -4
- package/dist/index.d.ts.map +1 -0
- package/package.json +5 -11
- package/tsup.config.ts +0 -16
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export * from '@xyo-network/gas-ethereum-blockchain-plugins';
|
|
2
2
|
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
export { EthereumPlugins, EthereumPlugins as default };
|
|
3
|
+
export declare const EthereumPlugins: PayloadSetPluginFunc[];
|
|
4
|
+
export default EthereumPlugins;
|
|
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,8CAA8C,CAAA;AAG5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,eAAO,MAAM,eAAe,EAAE,oBAAoB,EAA4B,CAAA;AAG9E,eAAe,eAAe,CAAA"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export * from '@xyo-network/gas-ethereum-blockchain-plugins';
|
|
2
2
|
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
export { EthereumPlugins, EthereumPlugins as default };
|
|
3
|
+
export declare const EthereumPlugins: PayloadSetPluginFunc[];
|
|
4
|
+
export default EthereumPlugins;
|
|
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,8CAA8C,CAAA;AAG5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,eAAO,MAAM,eAAe,EAAE,oBAAoB,EAA4B,CAAA;AAG9E,eAAe,eAAe,CAAA"}
|
package/package.json
CHANGED
|
@@ -10,20 +10,14 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/gas-ethereum-blockchain-plugins": "~2.
|
|
14
|
-
"@xyo-network/payloadset-plugin": "~2.
|
|
13
|
+
"@xyo-network/gas-ethereum-blockchain-plugins": "~2.74.1",
|
|
14
|
+
"@xyo-network/payloadset-plugin": "~2.74.1"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@xylabs/ts-scripts-yarn3": "^
|
|
18
|
-
"@xylabs/tsconfig": "^
|
|
19
|
-
"publint": "^0.2.2",
|
|
20
|
-
"tsup": "^7.2.0",
|
|
17
|
+
"@xylabs/ts-scripts-yarn3": "^3.0.28",
|
|
18
|
+
"@xylabs/tsconfig": "^3.0.28",
|
|
21
19
|
"typescript": "^5.2.2"
|
|
22
20
|
},
|
|
23
|
-
"scripts": {
|
|
24
|
-
"package-compile": "tsup && publint",
|
|
25
|
-
"package-recompile": "tsup && publint"
|
|
26
|
-
},
|
|
27
21
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
28
22
|
"docs": "dist/docs.json",
|
|
29
23
|
"types": "dist/index.d.ts",
|
|
@@ -64,5 +58,5 @@
|
|
|
64
58
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
|
|
65
59
|
},
|
|
66
60
|
"sideEffects": false,
|
|
67
|
-
"version": "2.
|
|
61
|
+
"version": "2.74.1"
|
|
68
62
|
}
|
package/tsup.config.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { defineConfig } from 'tsup'
|
|
2
|
-
|
|
3
|
-
// eslint-disable-next-line import/no-default-export
|
|
4
|
-
export default defineConfig({
|
|
5
|
-
bundle: true,
|
|
6
|
-
cjsInterop: true,
|
|
7
|
-
clean: false,
|
|
8
|
-
dts: {
|
|
9
|
-
entry: ['src/index.ts'],
|
|
10
|
-
},
|
|
11
|
-
entry: ['src/index.ts'],
|
|
12
|
-
format: ['cjs', 'esm'],
|
|
13
|
-
sourcemap: true,
|
|
14
|
-
splitting: false,
|
|
15
|
-
tsconfig: 'tsconfig.json',
|
|
16
|
-
})
|