mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-17 04:04:21 +01:00
* tx history * fix * fix * pr review refactor * pr review refactor * fix * pr review refactor * exclude gosec G115 Integer Overflow Conversion * ignore some gosec errs * ignore some gosec errs * ignore createdat in test assertion * Fixes (#7) * Fixes * Fixes * Update golang (#8) * update gha golangci-lint version * update gha golangci-lint version * fix linting issues * fix linting issues * fix linting issues * add linter timeout --------- Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com>
43 lines
1.6 KiB
Modula-2
43 lines
1.6 KiB
Modula-2
module github.com/ark-network/ark/client
|
|
|
|
go 1.23.1
|
|
|
|
replace github.com/ark-network/ark/common => ../common
|
|
|
|
replace github.com/btcsuite/btcd/btcec/v2 => github.com/btcsuite/btcd/btcec/v2 v2.3.3
|
|
|
|
require (
|
|
github.com/ark-network/ark/api-spec v0.0.0-20240812233307-18e343b31899
|
|
github.com/ark-network/ark/common v0.0.0-20240812233307-18e343b31899
|
|
github.com/btcsuite/btcd v0.24.2
|
|
github.com/btcsuite/btcd/btcec/v2 v2.3.4
|
|
github.com/btcsuite/btcd/btcutil/psbt v1.1.9
|
|
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0
|
|
github.com/urfave/cli/v2 v2.27.4
|
|
golang.org/x/crypto v0.26.0
|
|
golang.org/x/term v0.23.0
|
|
)
|
|
|
|
require (
|
|
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect
|
|
github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect
|
|
github.com/vulpemventures/fastsha256 v0.0.0-20160815193821-637e65642941 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/btcsuite/btcd/btcutil v1.1.5
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.21.0 // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
github.com/vulpemventures/go-elements v0.5.4
|
|
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
|
|
golang.org/x/net v0.28.0 // indirect
|
|
golang.org/x/sys v0.24.0 // indirect
|
|
golang.org/x/text v0.17.0 // indirect
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20240812133136-8ffd90a71988 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20240812133136-8ffd90a71988 // indirect
|
|
google.golang.org/grpc v1.65.0
|
|
google.golang.org/protobuf v1.34.2 // indirect
|
|
)
|