From: BitcoinZavior Date: Mon, 11 Jul 2022 21:07:41 +0000 (-0400) Subject: corrected links X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/scripts/enum.AddrV2.html?a=commitdiff_plain;h=4fcc21fde3d75f8c1183a1cbf7c5dfe82888f5cc;p=bitcoindevkit.org corrected links --- diff --git a/docs/_blog/bdk_rn_making_of.md b/docs/_blog/bdk_rn_making_of.md index edad256e21..e42f9d2b2d 100644 --- a/docs/_blog/bdk_rn_making_of.md +++ b/docs/_blog/bdk_rn_making_of.md @@ -216,7 +216,7 @@ console.log({ balance }) ``` -The actual bdk-rn module has organised the native code into granular methods for different stages of creating a wallet and for different interactions with the wallet, like generating seeds, creating wallet for different network, creating descriptors, creating or restoring wallet, fetching balance, fetching transactions and many other methods. Please refer: https://github.com/LtbLightning/bdk-rn#library-api The set of APIs available will grow in the near future as more APIs will get added. This article can also be used as a guide to add new methods to the existing bdk-rn project. +The actual bdk-rn module has organised the native code into granular methods for different stages of creating a wallet and for different interactions with the wallet, like generating seeds, creating wallet for different network, creating descriptors, creating or restoring wallet, fetching balance, fetching transactions and many other methods. Please refer:[https://github.com/LtbLightning/bdk-rn#library-api](https://github.com/LtbLightning/bdk-rn#library-api) The set of APIs available will grow in the near future as more APIs will get added. This article can also be used as a guide to add new methods to the existing bdk-rn project. The objective of `bdk-rn` is to enable React Native developers to quickly start developing applications without the need to package BDK as described above. This article can also be used as a guide to add new methods to the existing bdk-rn project. @@ -224,13 +224,13 @@ Be on the lookout for user guides and tutorials on how to build bitcoin applicat ## References -Creating native modules for Android and IOS: https://reactnative.dev/docs/native-modules-intro +Creating native modules for Android and IOS: [https://reactnative.dev/docs/native-modules-intro](https://reactnative.dev/docs/native-modules-intro) -React Native Architecture: https://formidable.com/blog/2019/react-codegen-part-1/ +React Native Architecture: [https://formidable.com/blog/2019/react-codegen-part-1/](https://formidable.com/blog/2019/react-codegen-part-1/) -BDK-Android API: https://bitcoindevkit.org/bdk-jvm/bdk-jvm/org.bitcoindevkit/index.html +BDK-Android API: [https://bitcoindevkit.org/bdk-jvm/bdk-jvm/org.bitcoindevkit/index.html](https://bitcoindevkit.org/bdk-jvm/bdk-jvm/org.bitcoindevkit/index.html) -BDK-RN: https://github.com/LtbLightning/bdk-rn +BDK-RN: [https://github.com/LtbLightning/bdk-rn](https://github.com/LtbLightning/bdk-rn) ## Feedback