29 lines
476 B
JavaScript
Raw Permalink Normal View History

2024-07-16 07:54:27 +02:00
export const name = 'lnbits'
export const fields = [
{
name: 'url',
label: 'lnbits url',
2024-07-17 00:04:35 +02:00
type: 'text',
validate: {
type: 'url',
2024-07-17 01:03:45 +02:00
torAllowed: true
2024-07-17 00:04:35 +02:00
}
2024-07-16 07:54:27 +02:00
},
{
name: 'adminKey',
label: 'admin key',
2024-07-17 00:04:35 +02:00
type: 'password',
validate: {
type: 'string',
length: 32
}
2024-07-16 07:54:27 +02:00
}
]
export const card = {
title: 'LNbits',
subtitle: 'use [LNbits](https://lnbits.com/) for payments',
badges: ['send only', 'non-custodialish']
}