20 lines
342 B
JavaScript
20 lines
342 B
JavaScript
|
import { nwcSchema } from '@/lib/validate'
|
||
|
|
||
|
export const name = 'nwc'
|
||
|
|
||
|
export const fields = [
|
||
|
{
|
||
|
name: 'nwcUrl',
|
||
|
label: 'connection',
|
||
|
type: 'password'
|
||
|
}
|
||
|
]
|
||
|
|
||
|
export const card = {
|
||
|
title: 'NWC',
|
||
|
subtitle: 'use Nostr Wallet Connect for payments',
|
||
|
badges: ['send only', 'non-custodialish']
|
||
|
}
|
||
|
|
||
|
export const schema = nwcSchema
|