mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-17 04:04:21 +01:00
* ark credits * rename "ecash" --> "ark credit" * rework note_test.go * NewFromString * create several notes * note repo: rename "push" to "add" * RegisterInputsForNextRoundRequest: move "notes" to field #3 * use uint64 as note ID * rename to voucher * add nostr notification * nostr notification test and fixes * bump badger to 4.3 * allow npub to be registered * rename poolTxID * add default relays * Update server/internal/config/config.go Co-authored-by: Marco Argentieri <3596602+tiero@users.noreply.github.com> * fix RedeemVouchers test * notification = voucher * WASM wrappers * fix arkd voucher cmd * test_utils.go ignore gosec rule G101 * fix permissions * rename ALL to notes * add URI prefix * note.go : fix signature encoding * fix decode note.Data * Update server/internal/infrastructure/notifier/nostr/nostr.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> * Update pkg/client-sdk/wasm/browser/wrappers.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> * Update server/internal/infrastructure/notifier/nostr/nostr.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> * rework note and entity db + sqlite implementations * NOTIFICATION_PREFIX -> NOTE_URI_PREFIX * validate NOTE_URI_PREFIX * Update defaults to convenant-less mainnet (#2) * config: defaults to convenant-less tx builder * Drop env var for blockchain scanner --------- Co-authored-by: altafan <18440657+altafan@users.noreply.github.com> * add // before URI prefix * add URI prefix in admin CreateNote * Fixes * rework nonces encoding (#4) * rework nonces encoding * add a check in Musig2Nonce decode function * musig2_test: increase number of signers to 20 * musig2.json: add a test case with a 35 leaves tree * GetEventStream REST rework * fix round phases time intervals * [SDK] Use server-side streams in rest client * Fix history * make the URI optional * Updates * Fix settled txs in history * fix e2e test * go work sync in sdk unit test * fix signMessage in btc and liquid sdk wallets --------- Co-authored-by: Marco Argentieri <3596602+tiero@users.noreply.github.com> Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com>
66 lines
2.4 KiB
Go
66 lines
2.4 KiB
Go
package ports
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/decred/dcrd/dcrec/secp256k1/v4"
|
|
"github.com/lightningnetwork/lnd/lnwallet/chainfee"
|
|
)
|
|
|
|
// ErrNonFinalBIP68 is returned when a transaction spending a CSV-locked output is not final.
|
|
var ErrNonFinalBIP68 = errors.New("non-final BIP68 sequence")
|
|
|
|
type WalletService interface {
|
|
BlockchainScanner
|
|
GetSyncedUpdate(ctx context.Context) <-chan struct{}
|
|
GenSeed(ctx context.Context) (string, error)
|
|
Create(ctx context.Context, seed, password string) error
|
|
Restore(ctx context.Context, seed, password string) error
|
|
Unlock(ctx context.Context, password string) error
|
|
Lock(ctx context.Context, password string) error
|
|
Status(ctx context.Context) (WalletStatus, error)
|
|
GetPubkey(ctx context.Context) (*secp256k1.PublicKey, error)
|
|
GetForfeitAddress(ctx context.Context) (string, error)
|
|
DeriveConnectorAddress(ctx context.Context) (string, error)
|
|
DeriveAddresses(ctx context.Context, num int) ([]string, error)
|
|
SignTransaction(
|
|
ctx context.Context, partialTx string, extractRawTx bool,
|
|
) (string, error)
|
|
SignTransactionTapscript(ctx context.Context, pset string, inputIndexes []int) (string, error) // inputIndexes == nil means sign all inputs
|
|
SelectUtxos(ctx context.Context, asset string, amount uint64) ([]TxInput, uint64, error)
|
|
BroadcastTransaction(ctx context.Context, txHex string) (string, error)
|
|
WaitForSync(ctx context.Context, txid string) error
|
|
EstimateFees(ctx context.Context, psbt string) (uint64, error)
|
|
MinRelayFee(ctx context.Context, vbytes uint64) (uint64, error)
|
|
MinRelayFeeRate(ctx context.Context) chainfee.SatPerKVByte
|
|
ListConnectorUtxos(ctx context.Context, connectorAddress string) ([]TxInput, error)
|
|
MainAccountBalance(ctx context.Context) (uint64, uint64, error)
|
|
ConnectorsAccountBalance(ctx context.Context) (uint64, uint64, error)
|
|
LockConnectorUtxos(ctx context.Context, utxos []TxOutpoint) error
|
|
GetDustAmount(ctx context.Context) (uint64, error)
|
|
GetTransaction(ctx context.Context, txid string) (string, error)
|
|
SignMessage(ctx context.Context, message []byte) ([]byte, error)
|
|
VerifyMessageSignature(ctx context.Context, message, signature []byte) (bool, error)
|
|
Close()
|
|
}
|
|
|
|
type WalletStatus interface {
|
|
IsInitialized() bool
|
|
IsUnlocked() bool
|
|
IsSynced() bool
|
|
}
|
|
|
|
type TxInput interface {
|
|
GetTxid() string
|
|
GetIndex() uint32
|
|
GetScript() string
|
|
GetAsset() string
|
|
GetValue() uint64
|
|
}
|
|
|
|
type TxOutpoint interface {
|
|
GetTxid() string
|
|
GetIndex() uint32
|
|
}
|