xrpl

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

xrpl

xrpl.dart #
xrpl.dart is a Dart package that provides bindings to the xrpl.js library, allowing developers to interact with the XRP Ledger in Dart applications.
Features #
This package is a work in progress, and so does not fully replicate the functionality of xrpl.js.
Getting started #
To use xrpl.dart in your Dart project, please follow these steps:

Add the following snippet to the bottom of the body of your web/index.html:

<script src="https://unpkg.com/xrpl@2.6.0/build/xrpl-latest-min.js"></script>
copied to clipboard

Add it as a dependency in your pubspec.yaml file:

dependencies:
xrpl: ^0.0.9
copied to clipboard

Finally, run dart pub get to download the package.

Usage #
To use xrpl.dart, first import it into your code:
import 'package:xrpl/xrpl.dart';
copied to clipboard
You can then use the functionality provided by xrpl.js through the xrpl.dart bindings:
var walletFromMneomicOptions = WalletFromMnemonicOptions(
mnemonicEncoding: "bip39",
);

var wallet = Wallet.fromMnemonic(seed, walletFromMneomicOptions);

Client client = Client("wss://s.altnet.rippletest.net:51233");

client.connect().then((_) {
client.fundWallet(wallet);

String address = wallet!.address;
client.getXrpBalance(address).then((balanceString) {
print("Wallet balance: ${balanceString.toString()}");
});
});
copied to clipboard
Please do not use this example for production code!
Contributing #
Contributions to xrpl.dart are welcome! To contribute, please fork the repository and submit a pull request. Before submitting a pull request, please make sure that your code follows the Dart Style Guide.
license #
xrpl.dart is licensed under the BSD-3-Clause License. See the LICENSE file for more information.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.