Name: network-bitcoin Version: 1.8.3 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 Homepage: http://github.com/cgaebel/network-bitcoin Bug-reports: http://github.com/cgaebel/network-bitcoin/issues Copyright: 2012 Michael Hendricks 2013 Clark Gaebel Stability: experimental 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.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/wowus/network-bitcoin.git Test-suite network-bitcoin-tests hs-source-dirs: src ghc-options: -Wall main-is: Test/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, http-client >= 0.4.6, network-bitcoin