Merge pull request #3 from recrof/patch-2

fix: ed25519 import bug
This commit is contained in:
Liam Cottle 2025-10-08 21:59:52 +13:00 committed by GitHub
commit 83c07a6ce2
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();