mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-18 04:34:19 +01:00
* v0 unilateral redemption * add fee outputs to congestion tree * unilateral exit * rework unilateral exit verbosity * substract fee from vtxo amount * remove unused functions and variables * fix after reviews * Update noah/explorer.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> Signed-off-by: Louis Singer <41042567+louisinger@users.noreply.github.com> * remove bufferutils --------- Signed-off-by: Louis Singer <41042567+louisinger@users.noreply.github.com> Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com>
27 lines
805 B
Modula-2
27 lines
805 B
Modula-2
module github.com/ark-network/ark/common
|
|
|
|
go 1.21.0
|
|
|
|
require (
|
|
github.com/btcsuite/btcd v0.23.1
|
|
github.com/btcsuite/btcd/btcec/v2 v2.3.2
|
|
github.com/btcsuite/btcd/btcutil v1.1.3
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0
|
|
github.com/stretchr/testify v1.8.0
|
|
)
|
|
|
|
require (
|
|
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 // indirect
|
|
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect
|
|
github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect
|
|
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
|
|
golang.org/x/sys v0.0.0-20220608164250-635b8c9b7f68 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/vulpemventures/go-elements v0.5.1
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|