mirror of
https://github.com/lightninglabs/faraday.git
synced 2026-08-13 12:33:35 +02:00
Since the code for creating and using a macaroon service is the same for multiple projects (pool, loop, faraday & litd), the code has been unified in lndclient. So this commit removes the macaroon service code and instead uses the lndclient code. Since the default key for the macaroon db is now a shared secret with LND, faraday requires LND's admin macaroon so that this secret can be derived. So this commit also updates all references of LND's `readme` macaroon to the `admin` macaroon.
22 lines
793 B
Modula-2
22 lines
793 B
Modula-2
module github.com/lightninglabs/faraday
|
|
|
|
require (
|
|
github.com/btcsuite/btcd v0.22.0-beta.0.20220207191057-4dc4ff7963b4
|
|
github.com/btcsuite/btcd/btcutil v1.1.0
|
|
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.5.0
|
|
github.com/jessevdk/go-flags v1.4.0
|
|
github.com/lightninglabs/lndclient v0.15.0-0
|
|
github.com/lightninglabs/protobuf-hex-display v1.4.3-hex-display
|
|
github.com/lightningnetwork/lnd v0.14.1-beta.0.20220324135938-0dcaa511a249
|
|
github.com/lightningnetwork/lnd/cert v1.1.1
|
|
github.com/shopspring/decimal v1.2.0
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/urfave/cli v1.22.4
|
|
google.golang.org/grpc v1.38.0
|
|
google.golang.org/protobuf v1.26.0
|
|
gopkg.in/macaroon-bakery.v2 v2.0.1
|
|
gopkg.in/macaroon.v2 v2.1.0
|
|
)
|
|
|
|
go 1.15
|