Skip to content

Commit 4109102

Browse files
committed
V6.6.0
- Update dependencies. - Add bitcoin signet network
1 parent 2113a27 commit 4109102

6 files changed

Lines changed: 14 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 6.6.0
2+
3+
- Update dependencies.
4+
- Add bitcoin signet network
5+
16
## 6.5.0
27

38
- Fix transaction parsing in Mempool API.

example/pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ packages:
2020
dependency: "direct main"
2121
description:
2222
name: blockchain_utils
23-
sha256: fbddd2a7f1849d2244a35bf996b6fb00bf6bd557f0e13aed65ba0c16ad133cb7
23+
sha256: "2681bc950d31fd12eff8b9ea803d686a845a69f94fa88fdefc8c12ad63f55837"
2424
url: "https://pub.dev"
2525
source: hosted
26-
version: "5.0.0"
26+
version: "5.1.0"
2727
boolean_selector:
2828
dependency: transitive
2929
description:

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies:
3939
path: ../
4040
# blockchain_utils:
4141
# path: ../../blockchain_utils
42-
blockchain_utils: ^5.0.0
42+
blockchain_utils: ^5.1.0
4343
http: ^1.2.0
4444

4545
dev_dependencies:

lib/src/psbt/psbt_builder/types/types.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ class PsbtTransactionInput {
170170
if (nonWitnessUtxo == null) {
171171
throw DartBitcoinPluginException("Missing input non-witness UTXOs.");
172172
}
173-
nonWitnessUtxo = PsbtUtils.cleanUpAdnValidateNonUtxoWitness(
173+
nonWitnessUtxo = PsbtUtils.cleanUpAndValidateNonUtxoWitness(
174174
transaction: nonWitnessUtxo, outIndex: outIndex, txId: txId);
175175

176176
final output = nonWitnessUtxo.outputs[outIndex];
@@ -269,7 +269,7 @@ class PsbtTransactionInput {
269269
}
270270

271271
if (nonWitnessUtxo != null) {
272-
nonWitnessUtxo = PsbtUtils.cleanUpAdnValidateNonUtxoWitness(
272+
nonWitnessUtxo = PsbtUtils.cleanUpAndValidateNonUtxoWitness(
273273
transaction: nonWitnessUtxo, outIndex: outIndex, txId: txId);
274274

275275
final output = nonWitnessUtxo.outputs[outIndex];
@@ -407,7 +407,7 @@ class PsbtTransactionInput {
407407
}
408408
}
409409
if (nonWitnessUtxo != null) {
410-
nonWitnessUtxo = PsbtUtils.cleanUpAdnValidateNonUtxoWitness(
410+
nonWitnessUtxo = PsbtUtils.cleanUpAndValidateNonUtxoWitness(
411411
transaction: nonWitnessUtxo, outIndex: outIndex, txId: txId);
412412
final output = nonWitnessUtxo.outputs[outIndex];
413413
if (scriptPubKey != null) {

lib/src/psbt/utils/utils.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ class PsbtUtils {
235235
musig2inputInfo: v1Param.musig2inputInfo);
236236
}
237237

238-
static BtcTransaction cleanUpAdnValidateNonUtxoWitness(
238+
static BtcTransaction cleanUpAndValidateNonUtxoWitness(
239239
{required BtcTransaction transaction,
240240
required int outIndex,
241241
required String txId}) {

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: bitcoin_base
22
description: A versatile library for Bitcoin, Dogecoin, Litecoin, Dash, BSV, and BCH. Supports P2PKH, P2SH, P2WPKH, P2WSH, P2TR, with advanced creation, signing, and spending capabilities.
3-
version: 6.5.0
3+
version: 6.6.0
44
homepage: "https://github.com/mrtnetwork/bitcoin_base"
55
repository: "https://github.com/mrtnetwork/bitcoin_base"
66
Author: mrhaydari.t@gmail.com
@@ -16,7 +16,7 @@ environment:
1616

1717

1818
dependencies:
19-
blockchain_utils: ^5.0.0
19+
blockchain_utils: ^5.1.0
2020

2121
# blockchain_utils:
2222
# path: ../blockchain_utils

0 commit comments

Comments
 (0)