@bitgo/sdk-coin-canton 1.3.0 → 1.5.0
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/resources/hash/hash.d.ts +5 -0
- package/dist/resources/hash/hash.js +298 -0
- package/dist/resources/proto/damlTransaction.js +4 -4
- package/dist/resources/proto/damlTransactionNode.js +3 -3
- package/dist/resources/proto/damlTransactionNodeSeed.js +2 -2
- package/dist/resources/proto/metadata/metadataGlobalKeyMappingEntry.js +4 -4
- package/dist/resources/proto/metadata/metadataInputContract.js +3 -3
- package/dist/resources/proto/metadata/metadataSubmitterInfo.js +2 -2
- package/dist/resources/proto/metadata.js +5 -5
- package/dist/resources/proto/node/empty.js +2 -2
- package/dist/resources/proto/node/globalKey.js +4 -4
- package/dist/resources/proto/node/identifier.js +2 -2
- package/dist/resources/proto/node/node.js +16 -8
- package/dist/resources/proto/node/timestamp.js +3 -3
- package/dist/resources/proto/node/value.js +28 -14
- package/dist/resources/proto/preparedTransaction.js +4 -4
- package/dist/src/lib/constant.d.ts +2 -0
- package/dist/src/lib/constant.d.ts.map +1 -1
- package/dist/src/lib/constant.js +4 -2
- package/dist/src/lib/iface.d.ts +22 -2
- package/dist/src/lib/iface.d.ts.map +1 -1
- package/dist/src/lib/iface.js +1 -1
- package/dist/src/lib/index.d.ts +2 -0
- package/dist/src/lib/index.d.ts.map +1 -1
- package/dist/src/lib/index.js +6 -2
- package/dist/src/lib/oneStepPreApprovalBuilder.d.ts +49 -0
- package/dist/src/lib/oneStepPreApprovalBuilder.d.ts.map +1 -0
- package/dist/src/lib/oneStepPreApprovalBuilder.js +87 -0
- package/dist/src/lib/transaction/transaction.d.ts +9 -4
- package/dist/src/lib/transaction/transaction.d.ts.map +1 -1
- package/dist/src/lib/transaction/transaction.js +36 -10
- package/dist/src/lib/transactionBuilder.d.ts +6 -13
- package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilder.js +31 -23
- package/dist/src/lib/transactionBuilderFactory.d.ts +9 -3
- package/dist/src/lib/transactionBuilderFactory.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilderFactory.js +31 -6
- package/dist/src/lib/transferBuilder.d.ts +2 -0
- package/dist/src/lib/transferBuilder.d.ts.map +1 -1
- package/dist/src/lib/transferBuilder.js +4 -1
- package/dist/src/lib/utils.d.ts +1 -0
- package/dist/src/lib/utils.d.ts.map +1 -1
- package/dist/src/lib/utils.js +7 -1
- package/dist/src/lib/walletInitBuilder.d.ts +4 -10
- package/dist/src/lib/walletInitBuilder.d.ts.map +1 -1
- package/dist/src/lib/walletInitBuilder.js +10 -18
- package/dist/src/lib/walletInitialization/walletInitTransaction.d.ts +0 -1
- package/dist/src/lib/walletInitialization/walletInitTransaction.d.ts.map +1 -1
- package/dist/src/lib/walletInitialization/walletInitTransaction.js +34 -7
- package/dist/test/resources.d.ts +22 -1
- package/dist/test/resources.d.ts.map +1 -1
- package/dist/test/resources.js +25 -3
- package/dist/test/unit/builder/oneStepEnablement/oneStepEnablementBuilder.d.ts +2 -0
- package/dist/test/unit/builder/oneStepEnablement/oneStepEnablementBuilder.d.ts.map +1 -0
- package/dist/test/unit/builder/oneStepEnablement/oneStepEnablementBuilder.js +67 -0
- package/dist/test/unit/builder/walletInit/walletInitBuilder.js +10 -13
- package/dist/test/unit/utils.js +8 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +20 -6
package/package.json
CHANGED
|
@@ -1,9 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitgo/sdk-coin-canton",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "BitGo SDK coin library for Canton",
|
|
5
5
|
"main": "./dist/src/index.js",
|
|
6
6
|
"types": "./dist/src/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"require": "./dist/src/index.js",
|
|
10
|
+
"types": "./dist/src/index.d.ts"
|
|
11
|
+
},
|
|
12
|
+
"./resources/proto/preparedTransaction": {
|
|
13
|
+
"require": "./dist/resources/proto/preparedTransaction.js",
|
|
14
|
+
"types": "./dist/resources/proto/preparedTransaction.d.ts"
|
|
15
|
+
},
|
|
16
|
+
"./resources/hash/hash": {
|
|
17
|
+
"require": "./dist/resources/hash/hash.js",
|
|
18
|
+
"types": "./dist/resources/hash/hash.d.ts"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
7
21
|
"scripts": {
|
|
8
22
|
"build": "npm run prepare",
|
|
9
23
|
"build-ts": "yarn tsc --build --incremental --verbose .",
|
|
@@ -41,18 +55,18 @@
|
|
|
41
55
|
]
|
|
42
56
|
},
|
|
43
57
|
"dependencies": {
|
|
44
|
-
"@bitgo/sdk-core": "^36.
|
|
45
|
-
"@bitgo/statics": "^58.
|
|
58
|
+
"@bitgo/sdk-core": "^36.15.0",
|
|
59
|
+
"@bitgo/statics": "^58.7.0",
|
|
46
60
|
"@protobuf-ts/runtime": "^2.11.1",
|
|
47
61
|
"bignumber.js": "^9.1.1"
|
|
48
62
|
},
|
|
49
63
|
"devDependencies": {
|
|
50
|
-
"@bitgo/sdk-api": "^1.70.
|
|
64
|
+
"@bitgo/sdk-api": "^1.70.4",
|
|
51
65
|
"@bitgo/sdk-lib-mpc": "^10.8.1",
|
|
52
|
-
"@bitgo/sdk-test": "^9.1.
|
|
66
|
+
"@bitgo/sdk-test": "^9.1.7"
|
|
53
67
|
},
|
|
54
68
|
"files": [
|
|
55
69
|
"dist"
|
|
56
70
|
],
|
|
57
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "3960d34c7573ef1113b84887fd3b0e6c5aa690e1"
|
|
58
72
|
}
|