diff --git a/src/nip05.ts b/src/nip05.ts index 1ddd1361..2205ded6 100644 --- a/src/nip05.ts +++ b/src/nip05.ts @@ -11,7 +11,7 @@ interface LookupOpts { /** Get pubkey from NIP-05. */ async function lookup(value: string, opts: LookupOpts = {}): Promise { - const { timeout = 1000 } = opts; + const { timeout = 2000 } = opts; const match = value.match(NIP05_REGEX); if (!match) return null;