{isCreate ? (
<>
setCreateKindInput(e.target.value)}
className="font-mono text-sm"
/>
{t(
'Signed: 0–{{maxSigned}}. Unsigned experiment (empty sig): {{unsignedMin}}–{{unsignedMax}}.',
{
maxSigned: MAX_SIGNED_CUSTOM_EVENT_KIND,
unsignedMin: UNSIGNED_EXPERIMENTAL_KIND_MIN,
unsignedMax: UNSIGNED_EXPERIMENTAL_KIND_MAX
}
)}
{parsedCreateKind !== null && isUnsignedExperimentalKind(parsedCreateKind) ? (
{t('Unsigned experimental kind')}
{t(
'This kind is published with an empty signature. Normal Nostr relays will reject it, and these events are not portable on the open network. Only use relays that explicitly support this experiment and authenticate you (for example with NIP-42 AUTH) before accepting writes.'
)}
) : null}
>
) : (
)}