mainnet-js 1.1.1 → 1.1.3
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.html +1 -1
- package/dist/{mainnet-1.1.1.js → mainnet-1.1.3.js} +4 -4
- package/dist/module/libauth.d.ts +1 -1
- package/dist/module/libauth.d.ts.map +1 -1
- package/dist/module/libauth.js +1 -1
- package/dist/module/libauth.js.map +1 -1
- package/dist/module/transaction/Wif.d.ts +42 -7
- package/dist/module/transaction/Wif.d.ts.map +1 -1
- package/dist/module/transaction/Wif.js +132 -107
- package/dist/module/transaction/Wif.js.map +1 -1
- package/dist/module/wallet/Slp.d.ts.map +1 -1
- package/dist/module/wallet/Slp.js +11 -1
- package/dist/module/wallet/Slp.js.map +1 -1
- package/dist/module/wallet/Wif.d.ts +8 -4
- package/dist/module/wallet/Wif.d.ts.map +1 -1
- package/dist/module/wallet/Wif.js +119 -55
- package/dist/module/wallet/Wif.js.map +1 -1
- package/dist/module/wallet/interface.d.ts +2 -0
- package/dist/module/wallet/interface.d.ts.map +1 -1
- package/dist/module/wallet/model.d.ts +4 -0
- package/dist/module/wallet/model.d.ts.map +1 -1
- package/dist/module/wallet/model.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/libauth.ts +1 -0
- package/src/transaction/Wif.ts +207 -155
- package/src/wallet/Cashtokens.test.headless.js +161 -0
- package/src/wallet/Cashtokens.test.ts +179 -1
- package/src/wallet/Slp.ts +10 -7
- package/src/wallet/Wif.test.ts +101 -1
- package/src/wallet/Wif.ts +160 -92
- package/src/wallet/interface.ts +2 -0
- package/src/wallet/model.ts +6 -0
package/src/wallet/Wif.ts
CHANGED
|
@@ -849,7 +849,7 @@ export class Wallet extends BaseWallet {
|
|
|
849
849
|
options: {},
|
|
850
850
|
}
|
|
851
851
|
): Promise<{ value: number; utxos: UtxoI[] }> {
|
|
852
|
-
if (!this.privateKey) {
|
|
852
|
+
if (!this.privateKey && params.options?.buildUnsigned !== true) {
|
|
853
853
|
throw Error("Couldn't get network or private key for wallet.");
|
|
854
854
|
}
|
|
855
855
|
if (!this.cashaddr) {
|
|
@@ -907,7 +907,8 @@ export class Wallet extends BaseWallet {
|
|
|
907
907
|
const fee = await getFeeAmount({
|
|
908
908
|
utxos: fundingUtxos,
|
|
909
909
|
sendRequests: sendRequests,
|
|
910
|
-
privateKey: this.privateKey,
|
|
910
|
+
privateKey: this.privateKey ?? Uint8Array.from([]),
|
|
911
|
+
sourceAddress: this.cashaddr!,
|
|
911
912
|
relayFeePerByteInSatoshi: relayFeePerByteInSatoshi,
|
|
912
913
|
slpOutputs: [],
|
|
913
914
|
feePaidBy: feePaidBy,
|
|
@@ -953,31 +954,33 @@ export class Wallet extends BaseWallet {
|
|
|
953
954
|
| SendRequestArray[],
|
|
954
955
|
options?: SendRequestOptionsI
|
|
955
956
|
): Promise<SendResponse> {
|
|
956
|
-
|
|
957
|
-
requests,
|
|
958
|
-
undefined,
|
|
959
|
-
options
|
|
960
|
-
);
|
|
957
|
+
const { encodedTransaction, tokenIds, sourceOutputs } =
|
|
958
|
+
await this.encodeTransaction(requests, undefined, options);
|
|
961
959
|
|
|
962
|
-
const
|
|
963
|
-
|
|
964
|
-
options.awaitTransactionPropagation === undefined ||
|
|
965
|
-
options.awaitTransactionPropagation;
|
|
960
|
+
const resp = new SendResponse({});
|
|
961
|
+
resp.tokenIds = tokenIds;
|
|
966
962
|
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
963
|
+
if (options?.buildUnsigned !== true) {
|
|
964
|
+
const txId = await this.submitTransaction(
|
|
965
|
+
encodedTransaction,
|
|
966
|
+
options?.awaitTransactionPropagation === undefined ||
|
|
967
|
+
options?.awaitTransactionPropagation === true
|
|
968
|
+
);
|
|
971
969
|
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
970
|
+
resp.txId = txId;
|
|
971
|
+
resp.explorerUrl = this.explorerUrl(resp.txId);
|
|
972
|
+
|
|
973
|
+
if (
|
|
974
|
+
options?.queryBalance === undefined ||
|
|
975
|
+
options?.queryBalance === true
|
|
976
|
+
) {
|
|
977
|
+
resp.balance = (await this.getBalance()) as BalanceResponse;
|
|
978
|
+
}
|
|
979
|
+
} else {
|
|
980
|
+
resp.unsignedTransaction = binToHex(encodedTransaction);
|
|
981
|
+
resp.sourceOutputs = sourceOutputs;
|
|
978
982
|
}
|
|
979
|
-
|
|
980
|
-
resp.tokenIds = tokenIds;
|
|
983
|
+
|
|
981
984
|
return resp;
|
|
982
985
|
}
|
|
983
986
|
|
|
@@ -993,16 +996,7 @@ export class Wallet extends BaseWallet {
|
|
|
993
996
|
cashaddr: string,
|
|
994
997
|
options?: SendRequestOptionsI
|
|
995
998
|
): Promise<SendResponse> {
|
|
996
|
-
|
|
997
|
-
const queryBalance =
|
|
998
|
-
!options || options.queryBalance === undefined || options.queryBalance;
|
|
999
|
-
return {
|
|
1000
|
-
txId: txId,
|
|
1001
|
-
balance: queryBalance
|
|
1002
|
-
? ((await this.getBalance()) as BalanceResponse)
|
|
1003
|
-
: undefined,
|
|
1004
|
-
explorerUrl: this.explorerUrl(txId),
|
|
1005
|
-
};
|
|
999
|
+
return await this.sendMaxRaw(cashaddr, options);
|
|
1006
1000
|
}
|
|
1007
1001
|
|
|
1008
1002
|
/**
|
|
@@ -1016,11 +1010,13 @@ export class Wallet extends BaseWallet {
|
|
|
1016
1010
|
private async sendMaxRaw(
|
|
1017
1011
|
cashaddr: string,
|
|
1018
1012
|
options?: SendRequestOptionsI
|
|
1019
|
-
): Promise<
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1013
|
+
): Promise<SendResponse> {
|
|
1014
|
+
const { value: maxSpendableAmount, utxos } = await this._getMaxAmountToSend(
|
|
1015
|
+
{
|
|
1016
|
+
outputCount: 1,
|
|
1017
|
+
options: options,
|
|
1018
|
+
}
|
|
1019
|
+
);
|
|
1024
1020
|
|
|
1025
1021
|
if (!options) {
|
|
1026
1022
|
options = {};
|
|
@@ -1028,28 +1024,40 @@ export class Wallet extends BaseWallet {
|
|
|
1028
1024
|
|
|
1029
1025
|
options.utxoIds = utxos;
|
|
1030
1026
|
|
|
1031
|
-
|
|
1027
|
+
const sendRequest = new SendRequest({
|
|
1032
1028
|
cashaddr: cashaddr,
|
|
1033
1029
|
value: maxSpendableAmount,
|
|
1034
1030
|
unit: "sat",
|
|
1035
1031
|
});
|
|
1036
1032
|
|
|
1037
|
-
const { encodedTransaction } =
|
|
1038
|
-
[sendRequest],
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1033
|
+
const { encodedTransaction, tokenIds, sourceOutputs } =
|
|
1034
|
+
await this.encodeTransaction([sendRequest], true, options);
|
|
1035
|
+
|
|
1036
|
+
const resp = new SendResponse({});
|
|
1037
|
+
resp.tokenIds = tokenIds;
|
|
1038
|
+
|
|
1039
|
+
if (options?.buildUnsigned !== true) {
|
|
1040
|
+
const txId = await this.submitTransaction(
|
|
1041
|
+
encodedTransaction,
|
|
1042
|
+
options?.awaitTransactionPropagation === undefined ||
|
|
1043
|
+
options?.awaitTransactionPropagation === true
|
|
1044
|
+
);
|
|
1045
|
+
|
|
1046
|
+
resp.txId = txId;
|
|
1047
|
+
resp.explorerUrl = this.explorerUrl(resp.txId);
|
|
1048
|
+
|
|
1049
|
+
if (
|
|
1050
|
+
options?.queryBalance === undefined ||
|
|
1051
|
+
options?.queryBalance === true
|
|
1052
|
+
) {
|
|
1053
|
+
resp.balance = (await this.getBalance()) as BalanceResponse;
|
|
1054
|
+
}
|
|
1055
|
+
} else {
|
|
1056
|
+
resp.unsignedTransaction = binToHex(encodedTransaction);
|
|
1057
|
+
resp.sourceOutputs = sourceOutputs;
|
|
1058
|
+
}
|
|
1051
1059
|
|
|
1052
|
-
return
|
|
1060
|
+
return resp;
|
|
1053
1061
|
}
|
|
1054
1062
|
|
|
1055
1063
|
/**
|
|
@@ -1070,7 +1078,7 @@ export class Wallet extends BaseWallet {
|
|
|
1070
1078
|
) {
|
|
1071
1079
|
let sendRequests = asSendRequestObject(requests);
|
|
1072
1080
|
|
|
1073
|
-
if (!this.privateKey) {
|
|
1081
|
+
if (!this.privateKey && options?.buildUnsigned !== true) {
|
|
1074
1082
|
throw new Error(
|
|
1075
1083
|
`Wallet ${this.name} is missing either a network or private key`
|
|
1076
1084
|
);
|
|
@@ -1124,6 +1132,13 @@ export class Wallet extends BaseWallet {
|
|
|
1124
1132
|
utxos = utxos.filter((val) => !val.token);
|
|
1125
1133
|
}
|
|
1126
1134
|
|
|
1135
|
+
// let tokenOp: "send" | "genesis" | "mint" | "burn" | undefined = undefined;
|
|
1136
|
+
// if (options?.ensureUtxos?.every(val => !val.token) && sendRequests.some(val => (val as TokenSendRequest).tokenId)) {
|
|
1137
|
+
// tokenOp = "genesis";
|
|
1138
|
+
// } else if (options?.ensureUtxos?.length === 1 && options?.ensureUtxos?.[0].token?.capability === NFTCapability.minting && ) {
|
|
1139
|
+
|
|
1140
|
+
// }
|
|
1141
|
+
|
|
1127
1142
|
const addTokenChangeOutputs = (
|
|
1128
1143
|
inputs: UtxoI[],
|
|
1129
1144
|
outputs: SendRequestType[]
|
|
@@ -1189,7 +1204,8 @@ export class Wallet extends BaseWallet {
|
|
|
1189
1204
|
const feeEstimate = await getFeeAmount({
|
|
1190
1205
|
utxos: utxos,
|
|
1191
1206
|
sendRequests: sendRequests,
|
|
1192
|
-
privateKey: this.privateKey,
|
|
1207
|
+
privateKey: this.privateKey ?? Uint8Array.from([]),
|
|
1208
|
+
sourceAddress: this.cashaddr!,
|
|
1193
1209
|
relayFeePerByteInSatoshi: relayFeePerByteInSatoshi,
|
|
1194
1210
|
slpOutputs: [],
|
|
1195
1211
|
feePaidBy: feePaidBy,
|
|
@@ -1201,7 +1217,8 @@ export class Wallet extends BaseWallet {
|
|
|
1201
1217
|
bestHeight,
|
|
1202
1218
|
feePaidBy,
|
|
1203
1219
|
sendRequests,
|
|
1204
|
-
options?.ensureUtxos || []
|
|
1220
|
+
options?.ensureUtxos || [],
|
|
1221
|
+
options?.tokenOperation
|
|
1205
1222
|
);
|
|
1206
1223
|
if (fundingUtxos.length === 0) {
|
|
1207
1224
|
throw Error(
|
|
@@ -1211,20 +1228,24 @@ export class Wallet extends BaseWallet {
|
|
|
1211
1228
|
const fee = await getFeeAmount({
|
|
1212
1229
|
utxos: fundingUtxos,
|
|
1213
1230
|
sendRequests: sendRequests,
|
|
1214
|
-
privateKey: this.privateKey,
|
|
1231
|
+
privateKey: this.privateKey ?? Uint8Array.from([]),
|
|
1232
|
+
sourceAddress: this.cashaddr!,
|
|
1215
1233
|
relayFeePerByteInSatoshi: relayFeePerByteInSatoshi,
|
|
1216
1234
|
slpOutputs: [],
|
|
1217
1235
|
feePaidBy: feePaidBy,
|
|
1218
1236
|
});
|
|
1219
|
-
const encodedTransaction = await buildEncodedTransaction(
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1237
|
+
const { encodedTransaction, sourceOutputs } = await buildEncodedTransaction(
|
|
1238
|
+
{
|
|
1239
|
+
inputs: fundingUtxos,
|
|
1240
|
+
outputs: sendRequests,
|
|
1241
|
+
signingKey: this.privateKey ?? Uint8Array.from([]),
|
|
1242
|
+
sourceAddress: this.cashaddr!,
|
|
1243
|
+
fee,
|
|
1244
|
+
discardChange,
|
|
1245
|
+
slpOutputs: [],
|
|
1246
|
+
feePaidBy,
|
|
1247
|
+
changeAddress,
|
|
1248
|
+
}
|
|
1228
1249
|
);
|
|
1229
1250
|
|
|
1230
1251
|
const tokenIds = [
|
|
@@ -1236,7 +1257,7 @@ export class Wallet extends BaseWallet {
|
|
|
1236
1257
|
.map((val) => (val as TokenSendRequest).tokenId),
|
|
1237
1258
|
].filter((value, index, array) => array.indexOf(value) === index);
|
|
1238
1259
|
|
|
1239
|
-
return { encodedTransaction, tokenIds
|
|
1260
|
+
return { encodedTransaction, tokenIds, sourceOutputs };
|
|
1240
1261
|
}
|
|
1241
1262
|
|
|
1242
1263
|
// Submit a raw transaction
|
|
@@ -1437,32 +1458,51 @@ export class Wallet extends BaseWallet {
|
|
|
1437
1458
|
* @param {string?} genesisRequest.commitment NFT commitment message
|
|
1438
1459
|
* @param {string?} genesisRequest.cashaddr cash address to send the created token UTXO to; if undefined will default to your address
|
|
1439
1460
|
* @param {number?} genesisRequest.value satoshi value to send alongside with tokens; if undefined will default to 1000 satoshi
|
|
1440
|
-
* @param {SendRequestType} sendRequests single or an array of extra send requests (OP_RETURN, value transfer, etc.) to include in genesis transaction
|
|
1461
|
+
* @param {SendRequestType | SendRequestType[]} sendRequests single or an array of extra send requests (OP_RETURN, value transfer, etc.) to include in genesis transaction
|
|
1462
|
+
* @param {SendRequestOptionsI} options Options of the send requests
|
|
1441
1463
|
*/
|
|
1442
1464
|
public async tokenGenesis(
|
|
1443
1465
|
genesisRequest: TokenGenesisRequest,
|
|
1444
|
-
sendRequests: SendRequestType | SendRequestType[] = []
|
|
1466
|
+
sendRequests: SendRequestType | SendRequestType[] = [],
|
|
1467
|
+
options?: SendRequestOptionsI
|
|
1445
1468
|
): Promise<SendResponse> {
|
|
1446
1469
|
if (!Array.isArray(sendRequests)) {
|
|
1447
1470
|
sendRequests = [sendRequests];
|
|
1448
1471
|
}
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1472
|
+
|
|
1473
|
+
let utxos: UtxoI[];
|
|
1474
|
+
if (options && options.utxoIds) {
|
|
1475
|
+
utxos = options.utxoIds.map((utxoId: UtxoI | string) =>
|
|
1476
|
+
typeof utxoId === "string" ? fromUtxoId(utxoId) : utxoId
|
|
1477
|
+
);
|
|
1478
|
+
} else {
|
|
1479
|
+
utxos = await this.getAddressUtxos(this.cashaddr);
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
const genesisInputs = utxos.filter((val) => val.vout === 0 && !val.token);
|
|
1483
|
+
if (genesisInputs.length === 0) {
|
|
1484
|
+
throw new Error(
|
|
1485
|
+
"No suitable inputs with vout=0 available for new token genesis"
|
|
1486
|
+
);
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
const genesisSendRequest = new TokenSendRequest({
|
|
1490
|
+
cashaddr: genesisRequest.cashaddr || this.tokenaddr!,
|
|
1491
|
+
amount: genesisRequest.amount,
|
|
1492
|
+
value: genesisRequest.value || 1000,
|
|
1493
|
+
capability: genesisRequest.capability,
|
|
1494
|
+
commitment: genesisRequest.commitment,
|
|
1495
|
+
tokenId: utxos[0].txid,
|
|
1496
|
+
});
|
|
1497
|
+
|
|
1498
|
+
return this.send([genesisSendRequest, ...(sendRequests as any)], {
|
|
1499
|
+
...options,
|
|
1500
|
+
utxoIds: utxos,
|
|
1501
|
+
ensureUtxos: [utxos[0]],
|
|
1502
|
+
checkTokenQuantities: false,
|
|
1503
|
+
queryBalance: false,
|
|
1504
|
+
tokenOperation: "genesis",
|
|
1505
|
+
});
|
|
1466
1506
|
}
|
|
1467
1507
|
|
|
1468
1508
|
/**
|
|
@@ -1475,11 +1515,13 @@ export class Wallet extends BaseWallet {
|
|
|
1475
1515
|
* @param {string?} mintRequest.cashaddr cash address to send the created token UTXO to; if undefined will default to your address
|
|
1476
1516
|
* @param {number?} mintRequest.value satoshi value to send alongside with tokens; if undefined will default to 1000 satoshi
|
|
1477
1517
|
* @param {boolean?} deductTokenAmount if minting token contains fungible amount, deduct from it by amount of minted tokens
|
|
1518
|
+
* @param {SendRequestOptionsI} options Options of the send requests
|
|
1478
1519
|
*/
|
|
1479
1520
|
public async tokenMint(
|
|
1480
1521
|
tokenId: string,
|
|
1481
1522
|
mintRequests: TokenMintRequest | Array<TokenMintRequest>,
|
|
1482
|
-
deductTokenAmount: boolean = false
|
|
1523
|
+
deductTokenAmount: boolean = false,
|
|
1524
|
+
options?: SendRequestOptionsI
|
|
1483
1525
|
): Promise<SendResponse> {
|
|
1484
1526
|
if (tokenId?.length !== 64) {
|
|
1485
1527
|
throw Error(`Invalid tokenId supplied: ${tokenId}`);
|
|
@@ -1493,7 +1535,7 @@ export class Wallet extends BaseWallet {
|
|
|
1493
1535
|
const nftUtxos = utxos.filter(
|
|
1494
1536
|
(val) =>
|
|
1495
1537
|
val.token?.tokenId === tokenId &&
|
|
1496
|
-
val.token?.capability
|
|
1538
|
+
val.token?.capability === NFTCapability.minting
|
|
1497
1539
|
);
|
|
1498
1540
|
if (!nftUtxos.length) {
|
|
1499
1541
|
throw new Error(
|
|
@@ -1529,8 +1571,11 @@ export class Wallet extends BaseWallet {
|
|
|
1529
1571
|
),
|
|
1530
1572
|
],
|
|
1531
1573
|
{
|
|
1574
|
+
...options,
|
|
1575
|
+
ensureUtxos: [nftUtxos[0]],
|
|
1532
1576
|
checkTokenQuantities: false,
|
|
1533
1577
|
queryBalance: false,
|
|
1578
|
+
tokenOperation: "mint",
|
|
1534
1579
|
}
|
|
1535
1580
|
);
|
|
1536
1581
|
}
|
|
@@ -1549,10 +1594,12 @@ export class Wallet extends BaseWallet {
|
|
|
1549
1594
|
* @param {number?} burnRequest.amount amount of fungible tokens to burn, optional
|
|
1550
1595
|
* @param {string?} burnRequest.cashaddr address to return token and satoshi change to
|
|
1551
1596
|
* @param {string?} message optional message to include in OP_RETURN
|
|
1597
|
+
* @param {SendRequestOptionsI} options Options of the send requests
|
|
1552
1598
|
*/
|
|
1553
1599
|
public async tokenBurn(
|
|
1554
1600
|
burnRequest: TokenBurnRequest,
|
|
1555
|
-
message?: string
|
|
1601
|
+
message?: string,
|
|
1602
|
+
options?: SendRequestOptionsI
|
|
1556
1603
|
): Promise<SendResponse> {
|
|
1557
1604
|
if (burnRequest.tokenId?.length !== 64) {
|
|
1558
1605
|
throw Error(`Invalid tokenId supplied: ${burnRequest.tokenId}`);
|
|
@@ -1563,8 +1610,7 @@ export class Wallet extends BaseWallet {
|
|
|
1563
1610
|
(val) =>
|
|
1564
1611
|
val.token?.tokenId === burnRequest.tokenId &&
|
|
1565
1612
|
val.token?.capability === burnRequest.capability &&
|
|
1566
|
-
val.token?.commitment === burnRequest.commitment
|
|
1567
|
-
val.token?.capability === burnRequest.capability
|
|
1613
|
+
val.token?.commitment === burnRequest.commitment
|
|
1568
1614
|
);
|
|
1569
1615
|
|
|
1570
1616
|
if (!tokenUtxos.length) {
|
|
@@ -1587,6 +1633,16 @@ export class Wallet extends BaseWallet {
|
|
|
1587
1633
|
changeSendRequests = [];
|
|
1588
1634
|
utxoIds.push(tokenUtxos[0]);
|
|
1589
1635
|
} else {
|
|
1636
|
+
// add utxos to spend from
|
|
1637
|
+
let available = 0;
|
|
1638
|
+
for (const token of tokenUtxos.filter((val) => val.token?.amount)) {
|
|
1639
|
+
utxoIds.push(token);
|
|
1640
|
+
available += token.token?.amount!;
|
|
1641
|
+
if (available >= fungibleBurnAmount) {
|
|
1642
|
+
break;
|
|
1643
|
+
}
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1590
1646
|
// if there are FT, reduce their amount
|
|
1591
1647
|
const newAmount = totalFungibleAmount - fungibleBurnAmount;
|
|
1592
1648
|
const safeNewAmount = Math.max(0, newAmount);
|
|
@@ -1607,6 +1663,16 @@ export class Wallet extends BaseWallet {
|
|
|
1607
1663
|
changeSendRequests = [];
|
|
1608
1664
|
utxoIds.push(tokenUtxos[0]);
|
|
1609
1665
|
} else {
|
|
1666
|
+
// add utxos to spend from
|
|
1667
|
+
let available = 0;
|
|
1668
|
+
for (const token of tokenUtxos.filter((val) => val.token?.amount)) {
|
|
1669
|
+
utxoIds.push(token);
|
|
1670
|
+
available += token.token?.amount!;
|
|
1671
|
+
if (available >= fungibleBurnAmount) {
|
|
1672
|
+
break;
|
|
1673
|
+
}
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1610
1676
|
// reduce the FT amount
|
|
1611
1677
|
const newAmount = totalFungibleAmount - fungibleBurnAmount;
|
|
1612
1678
|
const safeNewAmount = Math.max(0, newAmount);
|
|
@@ -1623,9 +1689,11 @@ export class Wallet extends BaseWallet {
|
|
|
1623
1689
|
|
|
1624
1690
|
const opReturn = OpReturnData.fromString(message || "");
|
|
1625
1691
|
return this.send([opReturn, ...changeSendRequests], {
|
|
1692
|
+
...options,
|
|
1626
1693
|
checkTokenQuantities: false,
|
|
1627
1694
|
queryBalance: false,
|
|
1628
1695
|
ensureUtxos: utxoIds.length > 0 ? utxoIds : undefined,
|
|
1696
|
+
tokenOperation: "burn",
|
|
1629
1697
|
});
|
|
1630
1698
|
}
|
|
1631
1699
|
|
package/src/wallet/interface.ts
CHANGED
|
@@ -54,7 +54,9 @@ export interface SendRequestOptionsI {
|
|
|
54
54
|
awaitTransactionPropagation?: boolean;
|
|
55
55
|
feePaidBy?: FeePaidByEnum;
|
|
56
56
|
checkTokenQuantities?: boolean; // true
|
|
57
|
+
tokenOperation?: "send" | "genesis" | "mint" | "burn"; // undefined. internal use only
|
|
57
58
|
ensureUtxos?: UtxoI[]; // ensure these inputs will be consumed in the transaction
|
|
59
|
+
buildUnsigned?: boolean; // false
|
|
58
60
|
}
|
|
59
61
|
|
|
60
62
|
export interface MnemonicI {
|
package/src/wallet/model.ts
CHANGED
|
@@ -4,6 +4,8 @@ import { UnitEnum } from "../enum.js";
|
|
|
4
4
|
import { NFTCapability, UtxoI } from "../interface.js";
|
|
5
5
|
import { DELIMITER } from "../constant.js";
|
|
6
6
|
import {
|
|
7
|
+
Input,
|
|
8
|
+
Output,
|
|
7
9
|
binToNumberUint16LE,
|
|
8
10
|
binToUtf8,
|
|
9
11
|
hexToBin,
|
|
@@ -312,11 +314,15 @@ export class OpReturnData {
|
|
|
312
314
|
|
|
313
315
|
export type SendRequestArray = Array<string | number | UnitEnum | Buffer>;
|
|
314
316
|
|
|
317
|
+
export type SourceOutput = Input & Output;
|
|
318
|
+
|
|
315
319
|
export class SendResponse {
|
|
316
320
|
txId?: string;
|
|
317
321
|
balance?: BalanceResponse;
|
|
318
322
|
explorerUrl?: string;
|
|
319
323
|
tokenIds?: string[];
|
|
324
|
+
unsignedTransaction?: string; // unsigned transaction hex
|
|
325
|
+
sourceOutputs?: SourceOutput[]; // source outputs for signing unsigned transactions
|
|
320
326
|
|
|
321
327
|
constructor({
|
|
322
328
|
txId,
|