mirror of
https://github.com/aljazceru/ark.git
synced 2026-01-22 05:04:20 +01:00
* Drop unused ComputeOutputScript & use ParseTaprootScript internally * Add pending field to vtxo domain * Add check to handle async change as claimed vtxo & Move check to prevent spending penidng vtxos to app level * Rename utils.go to parser.go & Fixes * Ignore sent-and-reversible vtxos in ListVtxos * Fixes Co-authored-by: Louis Singer <louisinger@users.noreply.github.com> * Fix e2e test Co-authored-by: Louis Singer <louisinger@users.noreply.github.com> Co-authored-by: João Bordalo <bordalix@users.noreply.github.com> * Fix * Add PendingChange field to vtxo * Add PendingChange field to Transaction * Fixes * Remove logs --------- Co-authored-by: Louis Singer <louisinger@users.noreply.github.com> Co-authored-by: João Bordalo <bordalix@users.noreply.github.com>
44 lines
1.8 KiB
Modula-2
44 lines
1.8 KiB
Modula-2
module github.com/ark-network/ark/server/pkg/macaroons
|
|
|
|
go 1.23.1
|
|
|
|
require (
|
|
github.com/btcsuite/btcwallet v0.16.10-0.20240718224643-db3a4a2543bd
|
|
github.com/btcsuite/btcwallet/walletdb v1.4.2
|
|
github.com/stretchr/testify v1.9.0
|
|
google.golang.org/grpc v1.65.0
|
|
gopkg.in/macaroon-bakery.v2 v2.3.0
|
|
gopkg.in/macaroon.v2 v2.1.0
|
|
)
|
|
|
|
require (
|
|
github.com/btcsuite/btcd v0.24.2 // indirect
|
|
github.com/btcsuite/btcd/btcec/v2 v2.3.4 // indirect
|
|
github.com/btcsuite/btcd/btcutil v1.1.5 // indirect
|
|
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0 // indirect
|
|
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
|
|
github.com/frankban/quicktest v1.14.6 // indirect
|
|
github.com/go-macaroon-bakery/macaroonpb v1.0.0 // indirect
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
|
github.com/lightninglabs/neutrino/cache v1.1.2 // indirect
|
|
github.com/lightningnetwork/lnd/fn v1.2.1 // indirect
|
|
github.com/lightningnetwork/lnd/tlv v1.2.6 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/rogpeppe/fastuuid v1.2.0 // indirect
|
|
github.com/rogpeppe/go-internal v1.12.0 // indirect
|
|
go.etcd.io/bbolt v1.3.10 // indirect
|
|
golang.org/x/crypto v0.26.0 // indirect
|
|
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa // indirect
|
|
golang.org/x/net v0.28.0 // indirect
|
|
golang.org/x/sync v0.8.0 // indirect
|
|
golang.org/x/sys v0.24.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20240812133136-8ffd90a71988 // indirect
|
|
google.golang.org/protobuf v1.34.2 // indirect
|
|
gopkg.in/errgo.v1 v1.0.1 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|