xrp 0.0.4 copy "xrp: ^0.0.4" to clipboard
xrp: ^0.0.4 copied to clipboard

Flutter XRP package is a software library that allows developers to integrate XRP functionality into their Flutter applications.

Interact with xrp blockchain with flutter

Features #

  • get xrp address from mnemonic
  • get xrp address balance
  • validate xrp address

Getting started #

flutter pub add xrp

Usage #

        final mnemonic = XRP.generateMnemonic();
            final mnemonicReceiver = XRP.generateMnemonic();
            if (kDebugMode) {
              print("mnemonic: $mnemonic");
            }
            XRPAccount xrpDetails = XRP.fromMnemonic(mnemonic);
            XRPAccount xrpDetailsReceiver = XRP.fromMnemonic(mnemonicReceiver);
            final xrpAddress = xrpDetails.address;
            final xrpPrivateKey = xrpDetails.privateKey;
            if (kDebugMode) {
              print("Sender Address: $xrpAddress");
              print("Sender Private Key: $xrpPrivateKey");
              print("Receiver Address: ${xrpDetailsReceiver.address}");
              print("Receiver Private Key: ${xrpDetailsReceiver.privateKey}");
            }

            bool isValidXRPAddress = XRP.isValidAddress(xrpAddress);
            if (kDebugMode) {
              print("isValidXRPAddress: $isValidXRPAddress");
            }
            bool getTestnetFaucet = await XRP.fundRippleTestnet(xrpAddress);
            if (kDebugMode) {
              print("Funded: $getTestnetFaucet");
            }
            int getDrops = await XRP.getBalance(xrpAddress, XRPCluster.testNet);

            if (kDebugMode) {
              print("Sender account balance Before Sending: $getDrops");
            }

            String txHash = await XRP.transferToken(
              amount: '11',
              to: xrpDetailsReceiver.address,
              account: xrpDetails,
              networkType: XRPCluster.testNet,
            );

            if (kDebugMode) {
              print("txHash: $txHash");
            }

            int getDropsAfterSend =
                await XRP.getBalance(xrpAddress, XRPCluster.testNet);

            if (kDebugMode) {
              print("Sender account balance After Sending: $getDropsAfterSend");
            }
            int getDropsAfterSendReceiver = await XRP.getBalance(
                xrpDetailsReceiver.address, XRPCluster.testNet);

            if (kDebugMode) {
              print("Receiver account balance: $getDropsAfterSendReceiver");
            }
        

Additional information #

You could find more information Davyking

0
likes
40
points
36
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter XRP package is a software library that allows developers to integrate XRP functionality into their Flutter applications.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

algorand_dart, base_x, bip32, bip39, bitcoin_flutter, crypto, flutter, hash, hex, http, web3dart

More

Packages that depend on xrp