Quickly program a blank NFC card (NTAG424DNA) to act as your own personal Boltcard. A contactless / paywave like experience for the Lightning network. Before programming your NFC card you must set up your own boltcard server.
The boltcard can be used with Lightning PoS terminals that have NFC support, or Breez wallet PoS App.
Find out more at boltcard.org
- NXP NTAG424 DNA
- NXP NTAG424 DNA TT (Tag Tamper) Thanks to Bassim
Download the compiled APK from the latest release and install on your android phone.
Download from the Google Play store
-
Install dependencies
npm install
-
Start the app
npx expo start
In the output, you'll find options to open the app in a
- development build
- Android emulator
- iOS simulator
- Expo Go, a limited sandbox for trying out app development with Expo
- Install boltcard server and aquire some blank NTAG424DNA tags.
- When app has loaded go to the write screen and put your lnurlw domain and path in to the text box.
- When finished tap a card on the NFC scanner to write the card.
- Go to the read screen and check that your URL looks correct. Should also be outputting the PICC and CMAC as URL paramters
- To change your keys (to prevent malicious re-writing of your card) Go to the boltcard server terminal and run the command to show the card key change URL in QR code form and then scan this with the phone camera to load the server keys.
- When the keys are loaded, Hold the NFC card to the phone to run the key change on the card. Do not move the card until the key change has completed. Warning! If you lose the new keys then you will be unable to reprogram the card again
To wipe a card get the keys into a json in the following format:
{
"version": 1,
"action": "wipe",
"k0": "11111111111111111111111111111111",
"k1": "22222222222222222222222222222222",
"k2": "33333333333333333333333333333333",
"k3": "44444444444444444444444444444444",
"k4": "55555555555555555555555555555555"
}
Go to the advanced > key reset screen and either paste this json from the clipboard or scan a QR code with this JSON encoded in it. Then press "reset card now" and tap and hold your card against the NFC reader.
As of 0.1.4 the app now supports card UID Randomisation (irreversable). If you add the "uid_privacy" field and set its value to "Y" the card will be programmed to have a random UID. Any other value or ommission of this field will leave the card UID as-is. Please note this action is irreversable.
{
"protocol_name": "new_bolt_card_response",
"protocol_version":1,
"card_name": "Spending_Card",
"lnurlw_base": "lnurlw://your.domain.com/ln",
"uid_privacy": "Y",
"k0":"11111111111111111111111111111111",
"k1":"22222222222222222222222222222222",
"k2":"33333333333333333333333333333333",
"k3":"44444444444444444444444444444444",
"k4":"55555555555555555555555555555555"
}
React native & Expo libraries are used to make building the UI easier.
Keep all your keys secret, and be careful when creating your cards that there are no other potential listening devices in range.