a bunch of [32]byte conversions. still more needed.

This commit is contained in:
fiatjaf
2025-04-14 17:31:23 -03:00
parent 40535e6b19
commit b4268d649c
132 changed files with 857 additions and 879 deletions

View File

@@ -5,8 +5,8 @@ import (
"errors"
"time"
"github.com/nbd-wtf/go-nostr"
"github.com/nbd-wtf/go-nostr/nip46"
"fiatjaf.com/nostrlib"
"fiatjaf.com/nostrlib/nip46"
)
var _ nostr.Keyer = (*BunkerSigner)(nil)

View File

@@ -4,9 +4,9 @@ import (
"context"
"fmt"
"github.com/nbd-wtf/go-nostr"
"github.com/nbd-wtf/go-nostr/nip44"
"github.com/nbd-wtf/go-nostr/nip49"
"fiatjaf.com/nostrlib"
"fiatjaf.com/nostrlib/nip44"
"fiatjaf.com/nostrlib/nip49"
)
var _ nostr.Keyer = (*EncryptedKeySigner)(nil)

View File

@@ -7,11 +7,11 @@ import (
"strings"
"time"
"github.com/nbd-wtf/go-nostr"
"github.com/nbd-wtf/go-nostr/nip05"
"github.com/nbd-wtf/go-nostr/nip19"
"github.com/nbd-wtf/go-nostr/nip46"
"github.com/nbd-wtf/go-nostr/nip49"
"fiatjaf.com/nostrlib"
"fiatjaf.com/nostrlib/nip05"
"fiatjaf.com/nostrlib/nip19"
"fiatjaf.com/nostrlib/nip46"
"fiatjaf.com/nostrlib/nip49"
"github.com/puzpuzpuz/xsync/v3"
)

View File

@@ -3,7 +3,7 @@ package keyer
import (
"context"
"github.com/nbd-wtf/go-nostr"
"fiatjaf.com/nostrlib"
)
var _ nostr.Keyer = (*ManualSigner)(nil)

View File

@@ -3,8 +3,8 @@ package keyer
import (
"context"
"github.com/nbd-wtf/go-nostr"
"github.com/nbd-wtf/go-nostr/nip44"
"fiatjaf.com/nostrlib"
"fiatjaf.com/nostrlib/nip44"
"github.com/puzpuzpuz/xsync/v3"
)