stacker.news/wallets/lnbits/index.js

29 lines
476 B
JavaScript
Raw Normal View History

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