23 lines
549 B
JavaScript
23 lines
549 B
JavaScript
import { externalLightningAddressValidator } from '@/lib/validate'
|
|
|
|
export const name = 'lightning-address'
|
|
export const shortName = 'lnAddr'
|
|
export const walletType = 'LIGHTNING_ADDRESS'
|
|
export const walletField = 'walletLightningAddress'
|
|
|
|
export const fields = [
|
|
{
|
|
name: 'address',
|
|
label: 'lightning address',
|
|
type: 'text',
|
|
autoComplete: 'off',
|
|
serverOnly: true,
|
|
validate: externalLightningAddressValidator
|
|
}
|
|
]
|
|
|
|
export const card = {
|
|
title: 'lightning address',
|
|
subtitle: 'receive zaps to your lightning address'
|
|
}
|