Bitcoin Transaction Scripts

-1

Could someone explain to me how the bitcoin transaction scripts work?How to build custom scripts? Also please explain the data structure of transactions as specified by the bitcoin protocol? How to collect unconfirmed transactions to start mining, what is protocol API for writing python scripts to collect transactions, generate blocks, build transactions and other necessary information to build a bitcoin client from scratch?

Xclane

Posted 2013-03-01T17:21:58.987

Reputation: 9

I think it would be handy to develop libraries implementing the protocol methods for building transaction scripts as well as generating blocks(mining) and provide a handy interface to the bitcoin protocol just like "requests" and "twisted" libraries.Xclane 2013-03-01T19:23:48.187

Answers

1

A client for transactional purposes can have less capabilities than a client that also will perform the tasks needed to support mining.

A lightweight client to review might be picocoin, "a tiny bitcoin library, with lightweight client and utils".

Stephen Gornick

Posted 2013-03-01T17:21:58.987

Reputation: 26 118

1

Nice simple library but what I was asking for is a thorough explanation to the points I mentioned above, anyway I found this post 285-bytes-that-changed-the-world.

Xclane 2013-03-02T14:44:58.767