@tatumio/ltc 2.0.1-alpha.313 → 2.0.1-alpha.322
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/package.json +11 -10
- package/src/index.js +1 -1
- package/src/index.js.map +1 -1
- package/src/lib/ltc.sdk.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,26 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tatumio/ltc",
|
|
3
|
-
"version": "2.0.1-alpha.
|
|
3
|
+
"version": "2.0.1-alpha.322",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
|
-
"
|
|
6
|
+
"types": "./src/index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@tatumio/shared-abstract-sdk": "
|
|
9
|
-
"@tatumio/api-client": "
|
|
8
|
+
"@tatumio/shared-abstract-sdk": "0.0.0",
|
|
9
|
+
"@tatumio/api-client": "0.0.0",
|
|
10
10
|
"axios": "^0.26.0",
|
|
11
11
|
"form-data": "^4.0.0",
|
|
12
|
-
"@tatumio/shared-testing-common": "
|
|
12
|
+
"@tatumio/shared-testing-common": "0.0.0",
|
|
13
13
|
"bignumber.js": "^9.0.2",
|
|
14
|
-
"@tatumio/shared-core": "
|
|
15
|
-
"@tatumio/shared-blockchain-btc-based": "
|
|
16
|
-
"@tatumio/shared-blockchain-abstract": "
|
|
14
|
+
"@tatumio/shared-core": "0.0.0",
|
|
15
|
+
"@tatumio/shared-blockchain-btc-based": "0.0.0",
|
|
16
|
+
"@tatumio/shared-blockchain-abstract": "0.0.0",
|
|
17
17
|
"bip32": "^2.0.5",
|
|
18
18
|
"bip39": "^3.0.2",
|
|
19
19
|
"bitcoinjs-lib": "^5.2.0",
|
|
20
20
|
"hdkey": "^2.0.1",
|
|
21
21
|
"bitcore-lib": "8.25.8",
|
|
22
|
-
"@tatumio/shared-testing-btc-based": "
|
|
23
|
-
"bitcore-lib-ltc": "8.25.27"
|
|
22
|
+
"@tatumio/shared-testing-btc-based": "0.0.0",
|
|
23
|
+
"bitcore-lib-ltc": "8.25.27",
|
|
24
|
+
"tslib": "^2.0.0"
|
|
24
25
|
},
|
|
25
26
|
"peerDependencies": {}
|
|
26
27
|
}
|
package/src/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ltcTransactions = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
|
-
|
|
5
|
+
tslib_1.__exportStar(require("./lib/ltc.sdk"), exports);
|
|
6
6
|
var ltc_tx_1 = require("./lib/transaction/ltc.tx");
|
|
7
7
|
Object.defineProperty(exports, "ltcTransactions", { enumerable: true, get: function () { return ltc_tx_1.ltcTransactions; } });
|
|
8
8
|
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../packages/blockchain/ltc/src/index.ts"],"names":[],"mappings":";;;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../packages/blockchain/ltc/src/index.ts"],"names":[],"mappings":";;;;AAAA,wDAA6B;AAC7B,mDAA0D;AAAjD,yGAAA,eAAe,OAAA"}
|
package/src/lib/ltc.sdk.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export declare const TatumLtcSDK: (args: SDKArguments) => {
|
|
|
29
29
|
send: typeof LitecoinService.ltcTransferBlockchain;
|
|
30
30
|
};
|
|
31
31
|
kms: {
|
|
32
|
-
sign(tx: import("@tatumio/
|
|
32
|
+
sign(tx: import("@tatumio/api-client").PendingTransaction, privateKeys: string[]): Promise<string>;
|
|
33
33
|
getAllPending(signatures?: string): import("@tatumio/api-client").CancelablePromise<import("@tatumio/api-client").PendingTransaction[]>;
|
|
34
34
|
get: typeof import("@tatumio/api-client").KeyManagementSystemService.getPendingTransactionToSign;
|
|
35
35
|
complete: typeof import("@tatumio/api-client").KeyManagementSystemService.completePendingSignature;
|