Skip to content

Commit

Permalink
v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtnetwork committed Feb 27, 2024
1 parent 17e5f14 commit 03bda5d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2.0.1
- dart format .

## 2.0.0
- Implements classes for signing and verifying transaction digests.
- Bitcoin (ECDSA, Schnorr)
Expand Down
1 change: 0 additions & 1 deletion example/test/test_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -218,4 +218,3 @@ void _encodeDecodeAddrTest() {
_test("algo Address", algoAddressTest);
_test("ada Shelly Address", adaShellyAddrTest);
}

8 changes: 4 additions & 4 deletions lib/bip/coin_conf/coins_conf.dart
Original file line number Diff line number Diff line change
Expand Up @@ -580,14 +580,14 @@ class CoinsConf {
/// Configuration for Ripple
static const CoinConf ripple = CoinConf(
coinName: CoinNames("Ripple", "XRP"),
params: CoinParams(
p2pkhNetVer: btcP2PKHNetVerMn, addrNetVer: [0x05, 0x44]));
params:
CoinParams(p2pkhNetVer: btcP2PKHNetVerMn, addrNetVer: [0x05, 0x44]));

/// Configuration for RippleTestNet
static const CoinConf rippleTestNet = CoinConf(
coinName: CoinNames("Ripple", "XRP"),
params: CoinParams(
p2pkhNetVer: btcP2PKHNetVerMn, addrNetVer: [0x04, 0x93]));
params:
CoinParams(p2pkhNetVer: btcP2PKHNetVerMn, addrNetVer: [0x04, 0x93]));

/// Configuration for Secret Network
static const CoinConf secretNetwork = CoinConf(
Expand Down
2 changes: 1 addition & 1 deletion lib/exception/exceptions.dart
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export 'exception.dart';
export 'rpc_error.dart';
export 'rpc_error.dart';
2 changes: 1 addition & 1 deletion lib/tuple/tuple.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ class Tuple<T, R> {
final R item2;

/// Constructor to initialize the tuple with the provided values.
const Tuple(this.item1, this.item2);
const Tuple(this.item1, this.item2);
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: blockchain_utils
description: Comprehensive Crypto & Blockchain Toolkit, Pure Dart, Cross-Platform, Encoding, Cryptography, Addresses, Mnemonics, & More.
version: 2.0.0
version: 2.0.1
homepage: "https://github.com/mrtnetwork/blockchain_utils"
repository: "https://github.com/mrtnetwork/blockchain_utils"
Author: [email protected]
Expand Down

0 comments on commit 03bda5d

Please sign in to comment.