2025-09-22 12:45:00 -05:00

22 lines
450 B
JavaScript

import { clinkValidator } from '@/wallets/lib/validate'
// CLINK: Common Lightning Interface for Nostr Keys
// https://github.com/shocknet/CLINK/
export default {
name: 'CLINK',
displayName: 'CLINK',
send: false,
fields: [
{
name: 'noffer',
label: 'noffer',
type: 'password',
placeholder: 'noffer...',
required: true,
validate: clinkValidator('noffer')
}
],
relationName: 'walletRecvClink'
}