Bitcoin Transport Layer API

From Bitcoin Wiki
Revision as of 05:53, 16 May 2011 by Sgornick (talk | contribs) (Add to Developer category.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

from post on bitcoin forum:

The BtcFn (The Bitcoin Freeent Project) project is in the process of working on the API connecting to the bitcoin client to other transport layers / data back-ends.

These backed layers will be used to transmit various bitcoin data over different protocols, such possible uses could be:

  • Program that saves and reads a copy of the block-chain from a file. Say used to save the block-chain on a USB key-drive.
  • A radio station could transmit the block-chain over short-wave radio so that everyone in the world has access to it. The same API could be used for a program to automatically import the block-chain updates in the Bitcoin software.
  • BtcTorrent, a simple application that takes advantage of the API and lib-torrent that allows new clients to quickly download the block chain.
  • The above mentioned bitcoin on freenet project, this project will allow clients to use bitcoin with freenet as a transport layer, for both transmission of the block chain, and transactions.
  • Traditional bitcoin transport layer application. This application will implement the standard bitcoin p2p protocol, and will be used by default.


The API should be designed so that multiple applications can connect to the same bitcoin instance at the same time. The API should be non-blocking and atomic in design... (either something works completely, or it fails completely). Finally the API should have no access to any function that interacts with the wallet.

The goal is that every bitcoin implementation will implement this API, so any bitcoin implementation can use any transport implementation. e.g. Bitcoinj could make use of the same Bitcoin p2p application as the mainline client.

Questions/Comments?

We will be working on the design on the bitcoin wiki: (address to be added)