fix: ed25519 import bug

This commit is contained in:
Rastislav Vysoky 2025-10-06 22:07:24 +02:00 committed by GitHub
parent 3164f1b3b5
commit 5c0f3b1b98
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -54,7 +54,7 @@ class Advert {
async isVerified() {
const ed25519 = await import("@noble/curves/ed25519");
const { ed25519 } = await import("@noble/curves/ed25519");
// build signed data
const bufferWriter = new BufferWriter();