Prerequisites
To complete this guide, you will need the following:1. Create a Supabase Function
To create a Supabase Edge Function you must run the following command locally:/supabase/functions/zbd-receive
folder structure in your project.
2. Write the Edge Function
Use the code below as a starting point for your handler function. You will need to replace theZBD_API_KEY
with your own ZBD Project’s API key.
3. Receive payment locally
To run this Supabase Edge Function locally you can spin up your Supabase instance using the following command. You may already have this running at this stage.--no-verify-jwt
flag to the command to disable JWT verification. This is because we are not passing a JWT token to the function when we call it. This is not recommended for production use.
Supabase CLI will output a HTTP URL endpoint that you can use to test your function by issuing a POST request to that resource.
4. Deploying to Supabase Edge
After testing it locally, you can deploy your function to Supabase Edge using the following command. You will need to enter your Supabase project ID to deploy.
https://xxxxxxxxxxxxx.supabase.co/functions/v1/zbd-receive
should return a JSON response with the payment request details.
You can also test this using curl command:
data.invoice.request
property in the JSON response. It starts with lnbc1
and is the payment request anyone in the Bitcoin Lightning Network can use to pay you.