Skip to content

Commit 0ec83f5

Browse files
committed
Update the README.
1 parent 8cfdd2c commit 0ec83f5

File tree

11 files changed

+17
-12
lines changed

11 files changed

+17
-12
lines changed

.dart_tool/package_config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@
296296
"languageVersion": "2.15"
297297
}
298298
],
299-
"generated": "2024-01-24T17:53:15.297265Z",
299+
"generated": "2024-01-24T18:21:43.538344Z",
300300
"generator": "pub",
301301
"generatorVersion": "3.2.3"
302302
}
368 Bytes
Binary file not shown.

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1+
## Version 4.0.1
2+
3+
- Update the README.
4+
15
## Version 4.0.0
2-
- Changed the package name from xrp_dart to xrpl_dart to match the already existing SDK naming convention
6+
7+
- Changed the package name from xrpl_dart to xrpl_dart to match the already existing SDK naming convention
38

49
## Version 3.0.3
510

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# XRP Dart Package
1+
# XRPL Dart Package
22

33
This package offers comprehensive functionality for signing XRP transactions using two prominent cryptographic algorithms, ED25519 and SECP256K1. Beyond transaction signing, it provides support for various features, including JSON-RPC, socket, and HTTP interactions. This versatility empowers developers to securely create, sign, and interact with XRP transactions.
44

@@ -37,7 +37,7 @@ The XRP Ledger accommodates a diverse range of transaction types, each tailored
3737
This package streamlines communication with XRP nodes using both the JSON-RPC protocol and WebSocket technology. While endeavors have been undertaken to integrate all methods into RPC, it's crucial to acknowledge that, currently, the majority of data APIs are presented in JSON format and haven't been entirely modeled. The addition of WebSocket support enhances the package's versatility for real-time and asynchronous interactions with XRP nodes.
3838

3939
## EXAMPLES
40-
Discover at least one example for each transaction type in the [examples](https://github.com/mrtnetwork/xrp_dart/tree/main/example/lib) folder.
40+
Discover at least one example for each transaction type in the [examples](https://github.com/mrtnetwork/xrpl_dart/tree/main/example/lib) folder.
4141

4242
### Key and addresses
4343
```
@@ -67,7 +67,7 @@ Discover at least one example for each transaction type in the [examples](https:
6767
### Transaction
6868
Every transaction type has a dedicated class for transaction creation.
6969
Descriptions for some of these classes are outlined below.
70-
Explore training examples for each transaction type in the examples folder [here](https://github.com/mrtnetwork/xrp_dart/tree/main/example/lib/examples).
70+
Explore training examples for each transaction type in the examples folder [here](https://github.com/mrtnetwork/xrpl_dart/tree/main/example/lib/examples).
7171
- Simple payment
7272

7373
```
@@ -147,7 +147,7 @@ Explore training examples for each transaction type in the examples folder [here
147147

148148
### JSON-RPC
149149

150-
Check out the [http_service](https://github.com/mrtnetwork/xrp_dart/blob/main/example/lib/socket_rpc_example/http_service.dart) and [socket_service](https://github.com/mrtnetwork/xrp_dart/blob/main/example/lib/socket_rpc_example/socket_service.dart) files to learn how to create an HTTP/WEBSOCKET RPC service.
150+
Check out the [http_service](https://github.com/mrtnetwork/xrpl_dart/blob/main/example/lib/socket_rpc_example/http_service.dart) and [socket_service](https://github.com/mrtnetwork/xrpl_dart/blob/main/example/lib/socket_rpc_example/socket_service.dart) files to learn how to create an HTTP/WEBSOCKET RPC service.
151151

152152
- HTTP JSON RPC
153153

example/lib/examples/nft/nft.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Future<void> mintToken(QuickWallet wallet) async {
6363
final transaction = NFTokenMint(
6464
// flags: NFTokenMintFlag.tfTransferable.value,
6565
uri: BytesUtils.toHexString(
66-
StringUtils.encode("https://github.com/mrtnetwork/xrp_dart")),
66+
StringUtils.encode("https://github.com/mrtnetwork/xrpl_dart")),
6767
account: wallet.address,
6868
signingPubKey: wallet.pubHex,
6969
memos: [exampleMemo],

example/lib/examples/quick_wallet/quick_wallet.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import 'package:xrpl_dart/xrpl_dart.dart';
99
import 'package:http/http.dart' as http;
1010

1111
String memoData = BytesUtils.toHexString(
12-
utf8.encode("https://github.com/mrtnetwork/xrp_dart"));
12+
utf8.encode("https://github.com/mrtnetwork/xrpl_dart"));
1313
String memoType = BytesUtils.toHexString(utf8.encode("Text"));
1414
String mempFormat = BytesUtils.toHexString(utf8.encode("text/plain"));
1515
final exampleMemo =

example/lib/examples/token_issue_transfer/issue.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Future<void> configureIssue(QuickWallet coldWallet) async {
6363
memos: [exampleMemo],
6464
setFlag: AccountSetAsfFlag.asfDefaultRipple,
6565
domain: BytesUtils.toHexString(
66-
StringUtils.encode("https://github.com/mrtnetwork/xrp_dart")),
66+
StringUtils.encode("https://github.com/mrtnetwork/xrpl_dart")),
6767
tickSize: 5,
6868
transferRate: 0);
6969
print("autofill trnsction");

example/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,6 @@ packages:
246246
path: ".."
247247
relative: true
248248
source: path
249-
version: "3.0.3"
249+
version: "4.0.1"
250250
sdks:
251251
dart: ">=3.2.2 <4.0.0"

lib.zip

-104 KB
Binary file not shown.

lib/src/xrpl/models/account/account_set.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ class AccountSet extends XRPTransaction {
165165
final AccountSetAsfFlag? clearFlag;
166166

167167
/// [domain] Set the DNS domain of the account owner. Must be hex-encoded
168-
/// BytesUtils.toHexString(utf8.encode("https://github.com/mrtnetwork/xrp_dart")).
168+
/// BytesUtils.toHexString(utf8.encode("https://github.com/mrtnetwork/xrpl_dart")).
169169
final String? domain;
170170

171171
/// [emailHash] Set the MD5 Hash to be used for generating an avatar image for this

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: xrpl_dart
22
description: Easily sign, create, and send all types of XRP transactions using the xrpl_dart package. Manage your XRP Ledger transactions securely and with ease.
3-
version: 4.0.0
3+
version: 4.0.1
44
homepage: "https://github.com/mrtnetwork/xrpl_dart"
55
repository: "https://github.com/mrtnetwork/xrpl_dart"
66

0 commit comments

Comments
 (0)