stacker.news/wallets/lightning-address/index.js

22 lines
464 B
JavaScript
Raw Normal View History

2024-07-16 05:54:27 +00:00
import { lnAddrAutowithdrawSchema } from '@/lib/validate'
export const name = 'lightning-address'
export const shortName = 'lnAddr'
export const fields = [
{
name: 'address',
label: 'lightning address',
type: 'text',
autoComplete: 'off'
}
]
export const card = {
title: 'lightning address',
subtitle: 'autowithdraw to a lightning address',
badges: ['receive only', 'non-custodialish']
}
export const schema = lnAddrAutowithdrawSchema