@meshsdk/transaction 1.6.0-alpha.21 → 1.6.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/index.cjs +1 -0
- package/dist/{index.d.mts → index.d.cts} +6 -35
- package/dist/index.d.ts +6 -35
- package/dist/index.js +1 -2029
- package/package.json +28 -11
- package/.turbo/turbo-build$colon$docs.log +0 -9
- package/.turbo/turbo-build$colon$mesh.log +0 -19
- package/.turbo/turbo-build.log +0 -19
- package/dist/index.mjs +0 -2014
- package/src/index.ts +0 -4
- package/src/mesh-tx-builder/index.ts +0 -259
- package/src/mesh-tx-builder/tx-builder-core.ts +0 -1180
- package/src/scripts/forge.script.ts +0 -63
- package/src/scripts/index.ts +0 -1
- package/src/transaction/index.ts +0 -609
- package/src/transaction/transaction-v2.ts +0 -81
- package/src/utxo-selection/common.ts +0 -113
- package/src/utxo-selection/experimental.ts +0 -137
- package/src/utxo-selection/index.ts +0 -69
- package/src/utxo-selection/keepRelevant.ts +0 -35
- package/src/utxo-selection/largestFirst.ts +0 -31
- package/src/utxo-selection/largestFirstMultiAsset.ts +0 -37
- package/tsconfig.json +0 -5
- package/types/index.ts +0 -0
package/package.json
CHANGED
|
@@ -1,18 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meshsdk/transaction",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "",
|
|
5
|
-
"main": "./dist/index.
|
|
6
|
-
"module": "./dist/index.
|
|
5
|
+
"main": "./dist/index.cjs",
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
|
+
"type": "module",
|
|
8
9
|
"exports": {
|
|
9
10
|
".": {
|
|
10
|
-
"import": "./dist/index.
|
|
11
|
-
"require": "./dist/index.
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"require": "./dist/index.cjs",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
12
14
|
}
|
|
13
15
|
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist/**"
|
|
18
|
+
],
|
|
14
19
|
"scripts": {
|
|
15
|
-
"build:mesh": "tsup src/index.ts --format esm,cjs --dts",
|
|
20
|
+
"build:mesh": "tsup src/index.ts --format esm,cjs --dts --minify",
|
|
16
21
|
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
|
|
17
22
|
"lint": "eslint",
|
|
18
23
|
"clean": "rm -rf .turbo && rm -rf dist && rm -rf node_modules",
|
|
@@ -20,16 +25,28 @@
|
|
|
20
25
|
"build:docs": "typedoc src/index.ts --json ../../apps/docs/src/data/mesh-transactions.json"
|
|
21
26
|
},
|
|
22
27
|
"devDependencies": {
|
|
23
|
-
"@meshsdk/typescript-config": "
|
|
28
|
+
"@meshsdk/typescript-config": "*",
|
|
24
29
|
"@types/json-bigint": "^1.0.4",
|
|
25
30
|
"eslint": "^8.57.0",
|
|
26
31
|
"tsup": "^8.0.2",
|
|
27
32
|
"typescript": "^5.3.3"
|
|
28
33
|
},
|
|
29
34
|
"dependencies": {
|
|
30
|
-
"@meshsdk/common": "
|
|
31
|
-
"@meshsdk/core-csl": "
|
|
32
|
-
"@meshsdk/core-cst": "
|
|
35
|
+
"@meshsdk/common": "*",
|
|
36
|
+
"@meshsdk/core-csl": "*",
|
|
37
|
+
"@meshsdk/core-cst": "*",
|
|
33
38
|
"json-bigint": "^1.0.0"
|
|
34
|
-
}
|
|
39
|
+
},
|
|
40
|
+
"prettier": "@meshsdk/prettier-config",
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
},
|
|
44
|
+
"license": "Apache-2.0",
|
|
45
|
+
"keywords": [
|
|
46
|
+
"cardano",
|
|
47
|
+
"ada",
|
|
48
|
+
"web3",
|
|
49
|
+
"blockchain",
|
|
50
|
+
"sdk"
|
|
51
|
+
]
|
|
35
52
|
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
> @meshsdk/transaction@1.6.0-alpha.21 build:docs
|
|
3
|
-
> typedoc src/index.ts --json ../../apps/docs/src/data/mesh-transactions.json
|
|
4
|
-
|
|
5
|
-
[1G[0K[33m[93m[warning][0m The signature MeshTxBuilder.txInScript has an @param with name "version", which was not used[39m
|
|
6
|
-
[33m[93m[warning][0m The signature MeshTxBuilder.mintingScript has an @param with name "version", which was not used[39m
|
|
7
|
-
[96m[info][0m JSON written to /Users/jingles/Documents/GitHub/mesh-v2/apps/docs/src/data/mesh-transactions.json
|
|
8
|
-
[33m[93m[warning][0m Found 0 errors and 2 warnings[39m
|
|
9
|
-
[1G[0K⠙[1G[0K
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
> @meshsdk/transaction@1.6.0-alpha.21 build:mesh
|
|
3
|
-
> tsup src/index.ts --format esm,cjs --dts
|
|
4
|
-
|
|
5
|
-
[1G[0K[34mCLI[39m Building entry: src/index.ts
|
|
6
|
-
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
|
-
[34mCLI[39m tsup v8.2.3
|
|
8
|
-
[34mCLI[39m Target: es2020
|
|
9
|
-
[34mESM[39m Build start
|
|
10
|
-
[34mCJS[39m Build start
|
|
11
|
-
[32mCJS[39m [1mdist/index.js [22m[32m71.06 KB[39m
|
|
12
|
-
[32mCJS[39m ⚡️ Build success in 40ms
|
|
13
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m68.82 KB[39m
|
|
14
|
-
[32mESM[39m ⚡️ Build success in 41ms
|
|
15
|
-
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in 1175ms
|
|
17
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[32m25.67 KB[39m
|
|
18
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m25.67 KB[39m
|
|
19
|
-
[1G[0K⠙[1G[0K
|
package/.turbo/turbo-build.log
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
> @meshsdk/transaction@0.0.1 build
|
|
3
|
-
> tsup src/index.ts --format esm,cjs --dts
|
|
4
|
-
|
|
5
|
-
[1G[0K[34mCLI[39m Building entry: src/index.ts
|
|
6
|
-
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
|
-
[34mCLI[39m tsup v8.2.3
|
|
8
|
-
[34mCLI[39m Target: es2020
|
|
9
|
-
[34mESM[39m Build start
|
|
10
|
-
[34mCJS[39m Build start
|
|
11
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m68.68 KB[39m
|
|
12
|
-
[32mESM[39m ⚡️ Build success in 42ms
|
|
13
|
-
[32mCJS[39m [1mdist/index.js [22m[32m70.92 KB[39m
|
|
14
|
-
[32mCJS[39m ⚡️ Build success in 49ms
|
|
15
|
-
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in 1306ms
|
|
17
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[32m25.67 KB[39m
|
|
18
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m25.67 KB[39m
|
|
19
|
-
[1G[0K⠙[1G[0K
|