n8n-nodes-nwc
Version:
n8n nodes for Nostr Wallet Connect (NWC) protocol
22 lines (21 loc) • 629 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NwcUrl = void 0;
class NwcUrl {
constructor() {
this.name = 'nwcUrl';
this.displayName = 'Nostr Wallet Connect (NWC)';
this.documentationUrl = 'https://docs.nwc.dev/';
this.properties = [
{
displayName: 'NWC URL',
name: 'nwcUrl',
type: 'string',
default: '',
description: 'NWC connection URL (e.g., nostr+walletconnect://)',
required: true,
},
];
}
}
exports.NwcUrl = NwcUrl;