Name: network-bitcoin Version: 1.4.0 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 > balance <- getBalance auth > putStrLn $ show balance ++ " BTC" > where > auth = Auth "http://127.0.0.1:8332" "user" "password" . To learn more about Bitcoin, see . License: BSD3 License-file: LICENSE Author: Michael Hendricks Clark Gaebel Maintainer: Clark Gaebel Stability: experimental Homepage: http://github.com/wowus/network-bitcoin Bug-reports: http://github.com/wowus/network-bitcoin/issues Copyright: 2012 Michael Hendricks 2013 Clark Gaebel Stability: experimental Homepage: http://github.com/mndrix/network-bitcoin Bug-reports: http://github.com/wowus/network-bitcoin/issues Category: Network Build-type: Simple Cabal-version: >=1.8 tested-with: GHC ==7.4.1, GHC ==7.6.2, GHC ==7.6.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.6.1 && < 0.7, bytestring >= 0.9 && < 0.11, attoparsec == 0.10.*, unordered-containers >= 0.2, HTTP >= 4000, network >= 2.3, text >= 0.11, vector >= 0.10, base == 4.* Source-repository head type: git location: git://github.com/wowus/network-bitcoin.git Executable network-bitcoin-tests hs-source-dirs: src ghc-options: -Wall main-is: Test/Main.hs build-depends: aeson >= 0.6.1 && < 0.7, bytestring >= 0.9 && < 0.11, attoparsec == 0.10.*, unordered-containers >= 0.2, HTTP >= 4000, network >= 2.3, text >= 0.11, vector >= 0.10, base == 4.*, QuickCheck == 2.5.*, network-bitcoin