Plugins for edge-core-js, to support various cryptocurrencies such as bitcoin, bitcoin cash, and litecoin,
First, add this library to your project:
npm i -s edge-currency-pluginsFor Node.js, you should call addEdgeCorePlugins to register these plugins with edge-core-js:
const{ addEdgeCorePlugins, lockEdgeCorePlugins }=require("edge-core-js");constplugins=require("edge-currency-plugins");addEdgeCorePlugins(plugins);// Once you are done adding plugins, call this:lockEdgeCorePlugins();You can also add plugins individually if you want to be more picky:
addEdgeCorePlugins({bitcoin: plugins.bitcoin,});The bundle located in dist/edge-currency-plugins.js will automatically register itself with edge-core-js. Just serve the entire dist directory along with your app, and then load the script:
<scriptsrc='https://example.com/app/dist/edge-currency-plugins.js'>If you want to debug this project, run npm run start to start a Webpack server,
and then adjust your script URL to http://localhost:8084/edge-currency-plugins.js.
The edge-currency-plugins package will automatically install itself using React Native autolinking.
To integrate the plugins with edge-core-js, add its URI to the context component:
import{pluginUri,makePluginIo}from"edge-currency-plugins";<MakeEdgeContextnativeIo={{"edge-currency-plugins": makePluginIo(),}}pluginUris={[pluginUri]}// Plus other props as required.../>;To debug this project, run npm run start to start a Webpack server, and then use debugUri instead of pluginUri.
Contributions are welcome and appreciated. Please reference these guides for specific contribution information:
Additionally, any issues or bugs found can be reported by opening a issue on GitHub.