@tatumio/doge 2.1.16 → 2.1.18
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 +10 -10
- package/src/index.d.ts +1 -0
- package/src/lib/doge.sdk.tx.d.ts +25 -1
- package/src/lib/doge.sdk.tx.js +68 -18
- package/src/lib/doge.sdk.tx.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tatumio/doge",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.18",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"types": "./src/index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@tatumio/shared-testing-common": "2.1.
|
|
9
|
-
"@tatumio/api-client": "2.1.
|
|
8
|
+
"@tatumio/shared-testing-common": "2.1.18",
|
|
9
|
+
"@tatumio/api-client": "2.1.18",
|
|
10
10
|
"axios": "^0.26.0",
|
|
11
11
|
"form-data": "^4.0.0",
|
|
12
|
-
"@tatumio/shared-testing-btc-based": "2.1.
|
|
13
|
-
"@tatumio/shared-blockchain-btc-based": "2.1.
|
|
14
|
-
"@tatumio/shared-abstract-sdk": "2.1.
|
|
12
|
+
"@tatumio/shared-testing-btc-based": "2.1.18",
|
|
13
|
+
"@tatumio/shared-blockchain-btc-based": "2.1.18",
|
|
14
|
+
"@tatumio/shared-abstract-sdk": "2.1.18",
|
|
15
15
|
"bignumber.js": "^9.0.2",
|
|
16
|
-
"@tatumio/shared-core": "2.1.
|
|
16
|
+
"@tatumio/shared-core": "2.1.18",
|
|
17
17
|
"lodash": "^4.17.21",
|
|
18
|
-
"@tatumio/shared-blockchain-abstract": "2.1.
|
|
18
|
+
"@tatumio/shared-blockchain-abstract": "2.1.18",
|
|
19
19
|
"bip32": "^2.0.5",
|
|
20
20
|
"bip39": "^3.0.2",
|
|
21
21
|
"bitcoinjs-lib": "^5.2.0",
|
|
22
22
|
"hdkey": "^2.0.1",
|
|
23
|
-
"bitcore-lib": "
|
|
24
|
-
"bitcore-lib-doge": "
|
|
23
|
+
"bitcore-lib": "10.0.2",
|
|
24
|
+
"bitcore-lib-doge": "10.0.0",
|
|
25
25
|
"tslib": "^2.0.0"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {}
|
package/src/index.d.ts
CHANGED
package/src/lib/doge.sdk.tx.d.ts
CHANGED
|
@@ -1,6 +1,30 @@
|
|
|
1
1
|
import { ApiServices, DogeTransactionUTXO, DogeTransactionUTXOKMS } from '@tatumio/api-client';
|
|
2
2
|
import { BtcBasedTx } from '@tatumio/shared-blockchain-btc-based';
|
|
3
|
-
|
|
3
|
+
interface DogeTransactionBase {
|
|
4
|
+
to: Array<{
|
|
5
|
+
address: string;
|
|
6
|
+
value: number;
|
|
7
|
+
}>;
|
|
8
|
+
fee?: string;
|
|
9
|
+
changeAddress?: string;
|
|
10
|
+
}
|
|
11
|
+
export interface DogeTransactionAddress extends DogeTransactionBase {
|
|
12
|
+
fromAddress: {
|
|
13
|
+
address: string;
|
|
14
|
+
privateKey: string;
|
|
15
|
+
}[];
|
|
16
|
+
}
|
|
17
|
+
interface DogeTransactionAddressKMS extends DogeTransactionBase {
|
|
18
|
+
fromAddress: {
|
|
19
|
+
address: string;
|
|
20
|
+
signatureId: string;
|
|
21
|
+
index?: number;
|
|
22
|
+
}[];
|
|
23
|
+
}
|
|
24
|
+
export declare type DogeTransactionTypes = DogeTransactionUTXO | DogeTransactionUTXOKMS | DogeTransactionAddress | DogeTransactionAddressKMS;
|
|
4
25
|
export declare const dogeTransactions: (apiCalls?: {
|
|
5
26
|
dogeBroadcast: typeof ApiServices.blockchain.doge.dogeBroadcast;
|
|
27
|
+
getTxByAddress: typeof ApiServices.blockchain.doge.dogeGetTxByAddress;
|
|
28
|
+
getUtxo: typeof ApiServices.blockchain.doge.dogeGetUtxo;
|
|
6
29
|
}) => BtcBasedTx<DogeTransactionTypes>;
|
|
30
|
+
export {};
|
package/src/lib/doge.sdk.tx.js
CHANGED
|
@@ -9,40 +9,90 @@ const shared_abstract_sdk_1 = require("@tatumio/shared-abstract-sdk");
|
|
|
9
9
|
const doge_sdk_errors_1 = require("./doge.sdk.errors");
|
|
10
10
|
const dogeTransactions = (apiCalls = {
|
|
11
11
|
dogeBroadcast: api_client_1.ApiServices.blockchain.doge.dogeBroadcast,
|
|
12
|
+
getTxByAddress: api_client_1.ApiServices.blockchain.doge.dogeGetTxByAddress,
|
|
13
|
+
getUtxo: api_client_1.ApiServices.blockchain.doge.dogeGetUtxo,
|
|
12
14
|
}) => {
|
|
13
15
|
// @TODO add support - by address
|
|
14
16
|
const prepareSignedTransaction = (body) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
15
17
|
try {
|
|
16
|
-
const {
|
|
17
|
-
const
|
|
18
|
+
const { to, fee, changeAddress } = body;
|
|
19
|
+
const transaction = new bitcore_lib_doge_1.Transaction();
|
|
18
20
|
const privateKeysToSign = [];
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
21
|
+
if ('fromUTXO' in body) {
|
|
22
|
+
for (const item of body.fromUTXO) {
|
|
23
|
+
transaction.from({
|
|
24
|
+
txId: item.txHash,
|
|
25
|
+
outputIndex: item.index,
|
|
26
|
+
script: bitcore_lib_doge_1.Script.fromAddress(item.address).toString(),
|
|
27
|
+
satoshis: shared_abstract_sdk_1.amountUtils.toSatoshis(item.value),
|
|
28
|
+
});
|
|
29
|
+
if ('signatureId' in item)
|
|
30
|
+
privateKeysToSign.push(item.signatureId);
|
|
31
|
+
else if ('privateKey' in item)
|
|
32
|
+
privateKeysToSign.push(item.privateKey);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
else if ('fromAddress' in body) {
|
|
36
|
+
for (const item of body.fromAddress) {
|
|
37
|
+
const utxos = [];
|
|
38
|
+
const txs = yield apiCalls.getTxByAddress(item.address, 50, 0, 'incoming');
|
|
39
|
+
for (const tx of txs) {
|
|
40
|
+
if (!tx.outputs || !tx.hash)
|
|
41
|
+
continue;
|
|
42
|
+
for (const [i, o] of tx.outputs.entries()) {
|
|
43
|
+
if (o.address !== item.address) {
|
|
44
|
+
continue;
|
|
45
|
+
}
|
|
46
|
+
const utxo = yield getUtxoSilent(tx.hash, i);
|
|
47
|
+
if (utxo === null) {
|
|
48
|
+
continue;
|
|
49
|
+
}
|
|
50
|
+
utxos.push(utxo);
|
|
51
|
+
transaction.from([
|
|
52
|
+
bitcore_lib_doge_1.Transaction.UnspentOutput.fromObject({
|
|
53
|
+
txId: tx.hash,
|
|
54
|
+
outputIndex: i,
|
|
55
|
+
script: bitcore_lib_doge_1.Script.fromAddress(o.address).toString(),
|
|
56
|
+
satoshis: shared_abstract_sdk_1.amountUtils.toSatoshis(utxo.value),
|
|
57
|
+
}),
|
|
58
|
+
]);
|
|
59
|
+
if ('signatureId' in item)
|
|
60
|
+
privateKeysToSign.push(item.signatureId);
|
|
61
|
+
else if ('privateKey' in item)
|
|
62
|
+
privateKeysToSign.push(item.privateKey);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
30
66
|
}
|
|
31
67
|
for (const item of to) {
|
|
32
|
-
|
|
68
|
+
transaction.to(item.address, shared_abstract_sdk_1.amountUtils.toSatoshis(item.value));
|
|
69
|
+
}
|
|
70
|
+
transaction.fee(shared_abstract_sdk_1.amountUtils.toSatoshis(fee)).change(changeAddress);
|
|
71
|
+
if ('fromUTXO' in body && 'signatureId' in body.fromUTXO[0] && body.fromUTXO[0].signatureId) {
|
|
72
|
+
return JSON.stringify(transaction);
|
|
33
73
|
}
|
|
34
|
-
if (
|
|
35
|
-
return JSON.stringify(
|
|
74
|
+
if ('fromAddress' in body && 'signatureId' in body.fromAddress[0] && body.fromAddress[0].signatureId) {
|
|
75
|
+
return JSON.stringify(transaction);
|
|
36
76
|
}
|
|
37
77
|
for (const pk of privateKeysToSign) {
|
|
38
|
-
|
|
78
|
+
transaction.sign(bitcore_lib_doge_1.PrivateKey.fromWIF(pk));
|
|
39
79
|
}
|
|
40
|
-
return
|
|
80
|
+
return transaction.serialize();
|
|
41
81
|
}
|
|
42
82
|
catch (e) {
|
|
43
83
|
throw new doge_sdk_errors_1.DogeSdkError(e);
|
|
44
84
|
}
|
|
45
85
|
});
|
|
86
|
+
function getUtxoSilent(hash, i) {
|
|
87
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
88
|
+
try {
|
|
89
|
+
return yield apiCalls.getUtxo(hash, i);
|
|
90
|
+
}
|
|
91
|
+
catch (e) {
|
|
92
|
+
return null;
|
|
93
|
+
}
|
|
94
|
+
});
|
|
95
|
+
}
|
|
46
96
|
const sendTransaction = (body) => tslib_1.__awaiter(void 0, void 0, void 0, function* () {
|
|
47
97
|
return apiCalls.dogeBroadcast({
|
|
48
98
|
txData: yield prepareSignedTransaction(body),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"doge.sdk.tx.js","sourceRoot":"","sources":["../../../../../../packages/blockchain/doge/src/lib/doge.sdk.tx.ts"],"names":[],"mappings":";;;;AAAA,aAAa;AACb,uDAAkE;AAClE,
|
|
1
|
+
{"version":3,"file":"doge.sdk.tx.js","sourceRoot":"","sources":["../../../../../../packages/blockchain/doge/src/lib/doge.sdk.tx.ts"],"names":[],"mappings":"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"}
|