@alephium/web3 2.0.5 → 2.0.6
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.
|
@@ -413,6 +413,7 @@ export interface BuildSweepAddressTransactions {
|
|
|
413
413
|
utxosLimit?: number;
|
|
414
414
|
/** @format group-index */
|
|
415
415
|
group?: number;
|
|
416
|
+
sweepAlphOnly?: boolean;
|
|
416
417
|
}
|
|
417
418
|
/** BuildSweepAddressTransactionsResult */
|
|
418
419
|
export interface BuildSweepAddressTransactionsResult {
|
|
@@ -446,6 +447,7 @@ export interface BuildSweepMultisig {
|
|
|
446
447
|
/** @format group-index */
|
|
447
448
|
group?: number;
|
|
448
449
|
multiSigType?: 'P2HMPK' | 'P2MPKH';
|
|
450
|
+
sweepAlphOnly?: boolean;
|
|
449
451
|
}
|
|
450
452
|
/** BuildTransferTx */
|
|
451
453
|
export interface BuildTransferTx {
|
|
@@ -1444,7 +1446,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
1444
1446
|
}
|
|
1445
1447
|
/**
|
|
1446
1448
|
* @title Alephium API
|
|
1447
|
-
* @version 4.2.
|
|
1449
|
+
* @version 4.2.5
|
|
1448
1450
|
* @baseUrl ../
|
|
1449
1451
|
*/
|
|
1450
1452
|
export declare class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDataType> {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alephium/web3",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"description": "A JS/TS library to interact with the Alephium platform",
|
|
5
5
|
"license": "GPL",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"author": "Alephium dev <dev@alephium.org>",
|
|
35
35
|
"config": {
|
|
36
|
-
"alephium_version": "4.2.
|
|
36
|
+
"alephium_version": "4.2.5",
|
|
37
37
|
"explorer_backend_version": "3.3.2"
|
|
38
38
|
},
|
|
39
39
|
"type": "commonjs",
|
package/src/api/api-alephium.ts
CHANGED
|
@@ -468,6 +468,7 @@ export interface BuildSweepAddressTransactions {
|
|
|
468
468
|
utxosLimit?: number
|
|
469
469
|
/** @format group-index */
|
|
470
470
|
group?: number
|
|
471
|
+
sweepAlphOnly?: boolean
|
|
471
472
|
}
|
|
472
473
|
|
|
473
474
|
/** BuildSweepAddressTransactionsResult */
|
|
@@ -503,6 +504,7 @@ export interface BuildSweepMultisig {
|
|
|
503
504
|
/** @format group-index */
|
|
504
505
|
group?: number
|
|
505
506
|
multiSigType?: 'P2HMPK' | 'P2MPKH'
|
|
507
|
+
sweepAlphOnly?: boolean
|
|
506
508
|
}
|
|
507
509
|
|
|
508
510
|
/** BuildTransferTx */
|
|
@@ -1778,7 +1780,7 @@ export class HttpClient<SecurityDataType = unknown> {
|
|
|
1778
1780
|
|
|
1779
1781
|
/**
|
|
1780
1782
|
* @title Alephium API
|
|
1781
|
-
* @version 4.2.
|
|
1783
|
+
* @version 4.2.5
|
|
1782
1784
|
* @baseUrl ../
|
|
1783
1785
|
*/
|
|
1784
1786
|
export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDataType> {
|