@xyo-network/blockchain-plugins 2.61.0 → 2.61.2
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/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/docs.json +159 -159
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/index.ts +3 -3
package/dist/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from '@xyo-network/ethereum-blockchain-plugins';
|
|
2
|
-
import {
|
|
3
|
-
export const
|
|
2
|
+
import { EthereumPlugins } from '@xyo-network/ethereum-blockchain-plugins';
|
|
3
|
+
export const BlockchainPlugins = [...EthereumPlugins];
|
|
4
4
|
// eslint-disable-next-line import/no-default-export
|
|
5
|
-
export default
|
|
5
|
+
export default BlockchainPlugins;
|
|
6
6
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,0CAA0C,CAAA;AAExD,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,0CAA0C,CAAA;AAExD,OAAO,EAAE,eAAe,EAAE,MAAM,0CAA0C,CAAA;AAG1E,MAAM,CAAC,MAAM,iBAAiB,GAA2B,CAAC,GAAG,eAAe,CAAC,CAAA;AAE7E,oDAAoD;AACpD,eAAe,iBAAiB,CAAA"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from '@xyo-network/ethereum-blockchain-plugins';
|
|
2
2
|
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin';
|
|
3
|
-
export declare const
|
|
4
|
-
export default
|
|
3
|
+
export declare const BlockchainPlugins: PayloadSetPluginFunc[];
|
|
4
|
+
export default BlockchainPlugins;
|
|
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,0CAA0C,CAAA;AAGxD,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,0CAA0C,CAAA;AAGxD,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAA;AAErE,eAAO,MAAM,iBAAiB,EAAE,oBAAoB,EAAyB,CAAA;AAG7E,eAAe,iBAAiB,CAAA"}
|
package/package.json
CHANGED
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/ethereum-blockchain-plugins": "^2.61.
|
|
14
|
-
"@xyo-network/payloadset-plugin": "^2.61.
|
|
13
|
+
"@xyo-network/ethereum-blockchain-plugins": "^2.61.2",
|
|
14
|
+
"@xyo-network/payloadset-plugin": "^2.61.2"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@xylabs/ts-scripts-yarn3": "^2.17.13",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
},
|
|
52
52
|
"sideEffects": false,
|
|
53
53
|
"types": "dist/types/index.d.ts",
|
|
54
|
-
"version": "2.61.
|
|
54
|
+
"version": "2.61.2"
|
|
55
55
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export * from '@xyo-network/ethereum-blockchain-plugins'
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { EthereumPlugins } from '@xyo-network/ethereum-blockchain-plugins'
|
|
4
4
|
import { PayloadSetPluginFunc } from '@xyo-network/payloadset-plugin'
|
|
5
5
|
|
|
6
|
-
export const
|
|
6
|
+
export const BlockchainPlugins: PayloadSetPluginFunc[] = [...EthereumPlugins]
|
|
7
7
|
|
|
8
8
|
// eslint-disable-next-line import/no-default-export
|
|
9
|
-
export default
|
|
9
|
+
export default BlockchainPlugins
|