Name: network-bitcoin
Version: 1.9.1
Synopsis: An interface to bitcoind.
Description:
This can be used to send Bitcoins, query balances, etc. It
requires the Bitcoin daemon to be running and accessible via
HTTP.
.
> import Network.Bitcoin
>
> main = do
> client <- getClient "http://127.0.0.1:8332" "user" "password"
> balance <- getBalance client
> putStrLn $ show balance ++ " BTC"
.
To learn more about Bitcoin, see <http://www.bitcoin.org>.
License: BSD3
License-file: LICENSE
Author: Michael Hendricks <michael@ndrix.org>
Clark Gaebel <cgaebel@uwaterloo.ca>
Maintainer: Matt Wraith <matt@bitnomial.com>
Homepage: http://github.com/bitnomial/network-bitcoin
Bug-reports: http://github.com/bitnomial/network-bitcoin/issues
Copyright: 2012 Michael Hendricks <michael@ndrix.org>
2013 Clark Gaebel <cgaebel@uwaterloo.ca>
Stability: experimental
Category: Network
Build-type: Simple
Cabal-version: >=1.8
tested-with: GHC ==8.4.3
Library
hs-source-dirs: src
ghc-options: -Wall
Exposed-modules:
Network.Bitcoin
Network.Bitcoin.BlockChain
Network.Bitcoin.Dump
Network.Bitcoin.Internal
Network.Bitcoin.Mining
Network.Bitcoin.Net
Network.Bitcoin.RawTransaction
Network.Bitcoin.Types
Network.Bitcoin.Wallet
Build-depends:
aeson >= 0.8,
bytestring >= 0.9 && < 0.11,
cookie >= 0.4,
attoparsec >= 0.12,
unordered-containers >= 0.2,
HTTP >= 4000,
http-types >= 0.8.5,
network >= 2.3,
text >= 0.11,
vector >= 0.10,
base == 4.*,
time >= 1.4.2,
http-client >= 0.4.6,
network-uri
Source-repository head
type: git
location: git://github.com/bitnomial/network-bitcoin.git
Test-suite network-bitcoin-tests
hs-source-dirs: src/Test
main-is: Main.hs
type: exitcode-stdio-1.0
build-depends:
aeson >= 0.8,
bytestring >= 0.9 && < 0.11,
cookie >= 0.4,
attoparsec >= 0.12,
unordered-containers >= 0.2,
HTTP >= 4000,
http-types >= 0.8.5,
network >= 2.3,
text >= 0.11,
vector >= 0.10,
base == 4.*,
time >= 1.4.2,
QuickCheck >= 2.6,
tasty >= 1.0,
tasty-quickcheck >= 0.10,
http-client >= 0.4.6,
network-bitcoin