Outdated egg!

This is an egg for CHICKEN 4, the unsupported old release. You're almost certainly looking for the CHICKEN 5 version of this egg, if it exists.

If it does not exist, there may be equivalent functionality provided by another egg; have a look at the egg index. Otherwise, please consider porting this egg to the current version of CHICKEN.

bitcoin

  1. Outdated egg!
  2. bitcoin
  3. Description
  4. Requirements
  5. Usage
  6. License

Description

An interface to bitcoind's JSON-RPC API.

This library is obsolete, unsupported, and may not even work anymore.

If you feel like adopting it, be my guest.

The source is available here.

Requirements

Usage

Function names and signatures match those listed in the bitcoind API reference. JSON responses are translated into Scheme datatypes according to medea's conversion rules.

When an error response is received from bitcoind, an exception of type (exn bitcoin) is raised.

   > (use bitcoin)
   > (define c (make-bitcoind-connection "http://user:pass@localhost:8332"))
   > (getblockcount c)
   215673
   > (getblock c 123456)
   "0000000000002917ed80650c6174aac8dfc46f5fe36480aaef682ff6cd83c3ca"
   > (getinfo c)
   ((version . 70200)
    (protocolversion . 60002)
    (walletversion . 60000)
    (balance . 12.0)
    (blocks . 215673)
    (connections . 0)
    (proxy . "")
    (difficulty . 2979636.61693807)
    (testnet . #f)
    (keypoololdest . 1357260660)
    (keypoolsize . 108)
    (paytxfee . 0.0)
    (errors . ""))

License

Public Domain