@xyo-network/xl1-protocol-sdk 1.26.27 → 1.26.29
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.mjs +252 -348
- package/dist/neutral/index.mjs.map +1 -1
- package/dist/neutral/primitives/index.d.ts +0 -1
- package/dist/neutral/primitives/index.d.ts.map +1 -1
- package/dist/neutral/primitives/step/completedStepRewardAddress.d.ts +1 -4
- package/dist/neutral/primitives/step/completedStepRewardAddress.d.ts.map +1 -1
- package/dist/neutral/primitives/step/derivedReceiveAddress.d.ts +1 -3
- package/dist/neutral/primitives/step/derivedReceiveAddress.d.ts.map +1 -1
- package/dist/neutral/primitives/step/index.d.ts +0 -2
- package/dist/neutral/primitives/step/index.d.ts.map +1 -1
- package/dist/neutral/primitives/transaction/elevatedPayloads.d.ts +1 -4
- package/dist/neutral/primitives/transaction/elevatedPayloads.d.ts.map +1 -1
- package/dist/neutral/{transaction → test}/buildRandomTransaction.d.ts +1 -1
- package/dist/neutral/test/buildRandomTransaction.d.ts.map +1 -0
- package/dist/neutral/test/index.d.ts +1 -0
- package/dist/neutral/test/index.d.ts.map +1 -1
- package/dist/neutral/test/index.mjs +143 -151
- package/dist/neutral/test/index.mjs.map +1 -1
- package/dist/neutral/transaction/index.d.ts +0 -2
- package/dist/neutral/transaction/index.d.ts.map +1 -1
- package/dist/neutral/transaction/script.d.ts +1 -11
- package/dist/neutral/transaction/script.d.ts.map +1 -1
- package/package.json +11 -11
- package/dist/neutral/transaction/buildRandomTransaction.d.ts.map +0 -1
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
export * from './buildRandomTransaction.ts';
|
|
2
1
|
export * from './buildTransaction.ts';
|
|
3
2
|
export * from './buildUnsignedTransaction.ts';
|
|
4
3
|
export * from './confirmSubmittedTransaction.ts';
|
|
5
4
|
export * from './hydrateTransaction.ts';
|
|
6
5
|
export * from './primitives/index.ts';
|
|
7
|
-
export * from './script.ts';
|
|
8
6
|
export * from './signTransaction.ts';
|
|
9
7
|
export * from './TransactionBuilder.ts';
|
|
10
8
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/transaction/index.ts"],"names":[],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/transaction/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAA;AACrC,cAAc,+BAA+B,CAAA;AAC7C,cAAc,kCAAkC,CAAA;AAChD,cAAc,yBAAyB,CAAA;AACvC,cAAc,uBAAuB,CAAA;AACrC,cAAc,sBAAsB,CAAA;AACpC,cAAc,yBAAyB,CAAA"}
|
|
@@ -1,12 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
import type { WithHashMeta } from '@xyo-network/sdk-js';
|
|
3
|
-
import type { AllowedBlockPayload, HydratedTransactionWithHashMeta } from '@xyo-network/xl1-protocol-lib';
|
|
4
|
-
/** tryExtractElevatedHashesFromScript constant. */
|
|
5
|
-
export declare const tryExtractElevatedHashesFromScript: (strings: string[]) => Hash[];
|
|
6
|
-
/** extractElevatedHashesFromScript constant. */
|
|
7
|
-
export declare const extractElevatedHashesFromScript: (strings: string[]) => Hash[];
|
|
8
|
-
/** tryExtractElevatedHashes constant. */
|
|
9
|
-
export declare const tryExtractElevatedHashes: (tx: HydratedTransactionWithHashMeta) => WithHashMeta<AllowedBlockPayload>[];
|
|
10
|
-
/** extractElevatedHashes constant. */
|
|
11
|
-
export declare const extractElevatedHashes: (tx: HydratedTransactionWithHashMeta) => WithHashMeta<AllowedBlockPayload>[];
|
|
1
|
+
export { extractElevatedHashes, extractElevatedHashesFromScript, tryExtractElevatedHashes, tryExtractElevatedHashesFromScript, } from '@xyo-network/xl1-protocol-lib';
|
|
12
2
|
//# sourceMappingURL=script.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"script.d.ts","sourceRoot":"","sources":["../../../src/transaction/script.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"script.d.ts","sourceRoot":"","sources":["../../../src/transaction/script.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,qBAAqB,EACrB,+BAA+B,EAC/B,wBAAwB,EACxB,kCAAkC,GACnC,MAAM,+BAA+B,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/xl1-protocol-sdk",
|
|
3
|
-
"version": "1.26.
|
|
3
|
+
"version": "1.26.29",
|
|
4
4
|
"description": "XYO Layer One SDK Protocol",
|
|
5
5
|
"homepage": "https://xylabs.com",
|
|
6
6
|
"bugs": {
|
|
@@ -24,14 +24,14 @@
|
|
|
24
24
|
"types": "./dist/neutral/index.d.ts",
|
|
25
25
|
"default": "./dist/neutral/index.mjs"
|
|
26
26
|
},
|
|
27
|
-
"./test": {
|
|
28
|
-
"types": "./dist/neutral/test/index.d.ts",
|
|
29
|
-
"default": "./dist/neutral/test/index.mjs"
|
|
30
|
-
},
|
|
31
27
|
"./get": {
|
|
32
28
|
"types": "./dist/neutral/getFileConfig.d.ts",
|
|
33
29
|
"default": "./dist/neutral/getFileConfig.mjs"
|
|
34
30
|
},
|
|
31
|
+
"./test": {
|
|
32
|
+
"types": "./dist/neutral/test/index.d.ts",
|
|
33
|
+
"default": "./dist/neutral/test/index.mjs"
|
|
34
|
+
},
|
|
35
35
|
"./package.json": "./package.json"
|
|
36
36
|
},
|
|
37
37
|
"files": [
|
|
@@ -45,15 +45,15 @@
|
|
|
45
45
|
"async-mutex": "~0.5.0",
|
|
46
46
|
"cosmiconfig": "^9.0.1",
|
|
47
47
|
"lru-cache": "^11.3.5",
|
|
48
|
-
"@xyo-network/xl1-protocol-lib": "~1.26.
|
|
49
|
-
"@xyo-network/xl1-schema": "~1.26.
|
|
48
|
+
"@xyo-network/xl1-protocol-lib": "~1.26.29",
|
|
49
|
+
"@xyo-network/xl1-schema": "~1.26.29"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@opentelemetry/api": "^1.9.1",
|
|
53
53
|
"@types/node": "^25.6.0",
|
|
54
54
|
"@xylabs/sdk-js": "^5.0.95",
|
|
55
|
-
"@xylabs/toolchain": "~7.10.
|
|
56
|
-
"@xylabs/tsconfig": "~7.10.
|
|
55
|
+
"@xylabs/toolchain": "~7.10.7",
|
|
56
|
+
"@xylabs/tsconfig": "~7.10.7",
|
|
57
57
|
"@xylabs/vitest-extended": "~5.0.95",
|
|
58
58
|
"@xylabs/vitest-matchers": "~5.0.95",
|
|
59
59
|
"@xyo-network/account": "~5.3.30",
|
|
@@ -115,8 +115,8 @@
|
|
|
115
115
|
"vite": "^8.0.8",
|
|
116
116
|
"vitest": "~4.1.4",
|
|
117
117
|
"zod": "~4.3.6",
|
|
118
|
-
"@xyo-network/xl1-
|
|
119
|
-
"@xyo-network/xl1-
|
|
118
|
+
"@xyo-network/xl1-protocol-model": "~1.26.29",
|
|
119
|
+
"@xyo-network/xl1-network-model": "~1.26.29"
|
|
120
120
|
},
|
|
121
121
|
"peerDependencies": {
|
|
122
122
|
"@opentelemetry/api": "^1",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"buildRandomTransaction.d.ts","sourceRoot":"","sources":["../../../src/transaction/buildRandomTransaction.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,KAAK,EACV,eAAe,EAAE,OAAO,EAAE,MAAM,EACjC,MAAM,qBAAqB,CAAA;AAE5B,OAAO,KAAK,EACW,OAAO,EAC5B,qCAAqC,EAErC,cAAc,EACf,MAAM,+BAA+B,CAAA;AAMtC,uCAAuC;AACvC,eAAO,MAAM,sBAAsB,GACjC,OAAO,OAAO,EACd,WAAW,OAAO,EAAE,EACpB,UAAU,eAAe,EACzB,MAAK,cAA0C,EAC/C,MAAK,cAAmD,EACxD,wBAAuB,MAAM,EAAO,EACpC,kBAAkB,OAAO,KACxB,OAAO,CAAC,qCAAqC,CAY/C,CAAA"}
|