Skip to content

Instantly share code, notes, and snippets.

@dellagustin
dellagustin / Body.json
Last active December 28, 2020 20:26
Postman resquest to send a lightning payment using KeySend and the LND REST API
{
"dest": "{{lightning-dest-pubkey-base64}}",
"amt": "{{lightning-payment-amount}}",
"timeout_seconds": 60,
"payment_hash": "{{lightning-payment-hash}}",
"dest_custom_records": {
"5482373484": "{{lightning-preimage}}"
}
}
@dellagustin
dellagustin / cordova-plugin-guide.md
Last active October 4, 2017 20:27 — forked from mlynch/cordova-plugin-guide.md
Cordova Plugin Developer Guide

Cordova Plugin Development Guide (iOS and Android)

Version: 0.0.1 updated 7/1/2016

Cordova Plugins are the magic that enable our mobile web app content to access the full power of Native SDKs underneath, but through clean JavaScript APIs that work the same across all platforms we target.

Building Cordova plugins is scary for many Cordova and Ionic developers, but it doesn't have to be. This simple guide walks through the what, when, why, and how of Cordova plugin development for iOS and Android.

Introduction