Difference between revisions of "Colored Coins"

From Bitcoin Wiki
Jump to: navigation, search
(Current projects leveraging Open Assets)
Line 3: Line 3:
 
Colored coins allow you to store assets on the [[Coinprism.info|Bitcoin blockchain]]. There are many interesting applications to colored coin. You could have an IPO on the blockchain by issuing shares as a colored coins, and send them to your shareholders. The shares can then be traded almost instantaneously and for free through the Bitcoin blockchain. You could have smart properties represented by colored coins. You could store your house on the blockchain by issuing a single coin, then the ownership of the house can be transferred with a simple Bitcoin transaction.
 
Colored coins allow you to store assets on the [[Coinprism.info|Bitcoin blockchain]]. There are many interesting applications to colored coin. You could have an IPO on the blockchain by issuing shares as a colored coins, and send them to your shareholders. The shares can then be traded almost instantaneously and for free through the Bitcoin blockchain. You could have smart properties represented by colored coins. You could store your house on the blockchain by issuing a single coin, then the ownership of the house can be transferred with a simple Bitcoin transaction.
  
==Block Explorer==
+
==Open Assets Block Explorer==
 
[[Coinprism]] offers a colored coin [[Coinprism.info|Bitcoin blockchain]] explorer.
 
[[Coinprism]] offers a colored coin [[Coinprism.info|Bitcoin blockchain]] explorer.
 +
 +
==ColoredCoins.org Block Explorer==
 +
[http://coloredcoins.org/ ColoredCoins.org] offers a public search engine for digital assets, all open source.
  
 
==Open Assets==
 
==Open Assets==
Line 42: Line 45:
  
 
[http://coinspark.org/ CoinSpark] is a Colored Coin implementation that uses a lightweight (SPV) desktop wallet for Windows, Mac or Linux. In CoinSpark, contracts are hosted on the issuer's website and notarized on the blockchain. Like Open Assets, it uses [[Script#Provably_Unspendable.2FPrunable_Outputs|OP_RETURNs]] to store metadata, with a highly efficient encoding scheme that allows multiple transfers of different assets to be encoded in a single transaction. CoinSpark [http://coinspark.org/developers/source-libraries/ software libraries] are available for C/C++, Java, Javascript, PHP and Python, and there's a detailed [http://coinspark.org/developers/ developers guide] with examples.
 
[http://coinspark.org/ CoinSpark] is a Colored Coin implementation that uses a lightweight (SPV) desktop wallet for Windows, Mac or Linux. In CoinSpark, contracts are hosted on the issuer's website and notarized on the blockchain. Like Open Assets, it uses [[Script#Provably_Unspendable.2FPrunable_Outputs|OP_RETURNs]] to store metadata, with a highly efficient encoding scheme that allows multiple transfers of different assets to be encoded in a single transaction. CoinSpark [http://coinspark.org/developers/source-libraries/ software libraries] are available for C/C++, Java, Javascript, PHP and Python, and there's a detailed [http://coinspark.org/developers/ developers guide] with examples.
 +
 +
==Colu Colored Coins Implementation==
 +
 +
A new Colored Coins implementation developed by [http://colu.co/ Colu], based on attaching value to transactions using the OP_RETURN field on the Blockchain. Colu's coloring scheme enables to compress massive amount of data into a limited space and new functionalities with the Rule Engine tool.
 +
The Metadata is attached to the digital assets using Torrent technology so every asset is published publicly.
 +
 +
===Main Features===
 +
 +
* Smarts Contracts Compatible
 +
  [https://github.com/Colored-Coins/Colored-Coins-Protocol-Specification/wiki/Rules/ Rule Engine] for issuing digital assets with various 
 +
  capabilities: time limitations - expiry date, access abilities to authorized holders, additional fees on specific address and limited permission to
 +
  issue more of the same asset.
 +
 +
* Maximum Decentralization Using Torrents
 +
  Automatically storing [https://github.com/Colored-Coins/Colored-Coins-Protocol-Specification/wiki/Metadata/ metadata] that can be freely accessed 
 +
  and verified  in torrent files. The metadata size is unlimited and can contain information like: track record, history, description, validity or any
 +
  information the issuer finds relevant.
 +
 +
* Data Storage Flexibility
 +
  Adding [https://github.com/Colored-Coins/Colored-Coins-Protocol-Specification/wiki/Data%20Storage%20Methods/ endless amount of metadata] on every 
 +
  transaction is available not only during issuance, but also in future transactions after the asset was issued.
 +
 +
 +
  
 
[[Category:Financial]]
 
[[Category:Financial]]
 
[[Category:Colored Coins]]
 
[[Category:Colored Coins]]
 
[[Category:Digital currencies]]
 
[[Category:Digital currencies]]

Revision as of 16:44, 28 June 2015

Colored Coins is a colored bitcoin minting and exchange protocol that works on top of the Bitcoin blockchain infrastructure.

Colored coins allow you to store assets on the Bitcoin blockchain. There are many interesting applications to colored coin. You could have an IPO on the blockchain by issuing shares as a colored coins, and send them to your shareholders. The shares can then be traded almost instantaneously and for free through the Bitcoin blockchain. You could have smart properties represented by colored coins. You could store your house on the blockchain by issuing a single coin, then the ownership of the house can be transferred with a simple Bitcoin transaction.

Open Assets Block Explorer

Coinprism offers a colored coin Bitcoin blockchain explorer.

ColoredCoins.org Block Explorer

ColoredCoins.org offers a public search engine for digital assets, all open source.

Open Assets

Open Assets is a Colored Coin implementation based on the OP_RETURN operator. Metadata is linked from the Blockchain and stored on the web.

Example of an Open Assets OP_RETURN marker output

This example illustrates how a marker output is decoded. Assuming the marker output is output 1:

   Data in the marker output      Description
   -----------------------------  -------------------------------------------------------------------
   0x6a                           The OP_RETURN opcode.
   0x10                           The marker output is 16 bytes long.
   0x4f 0x41                      The Open Assets Protocol tag.
   0x01 0x00                      Version 1 of the protocol.
   0x03                           There are 3 items in the asset quantity list.
   0xac 0x02 0x00 0xe5 0x8e 0x26  The asset quantity list:
                                  - '0xac 0x02' means output 0 has an asset quantity of 300.
                                  - Output 1 is skipped and has an asset quantity of 0
                                    because it is the marker output.
                                  - '0x00' means output 2 has an asset quantity of 0.
                                  - '0xe5 0x8e 0x26' means output 3 has an asset quantity of 624,485.
                                  - Outputs after output 3 (if any) have an asset quantity of 0.
   0x04                           The metadata is 4 bytes long.
   0x12 0x34 0x56 0x78            Some arbitrary metadata.

Current projects leveraging Open Assets

CoinSpark

CoinSpark is a Colored Coin implementation that uses a lightweight (SPV) desktop wallet for Windows, Mac or Linux. In CoinSpark, contracts are hosted on the issuer's website and notarized on the blockchain. Like Open Assets, it uses OP_RETURNs to store metadata, with a highly efficient encoding scheme that allows multiple transfers of different assets to be encoded in a single transaction. CoinSpark software libraries are available for C/C++, Java, Javascript, PHP and Python, and there's a detailed developers guide with examples.

Colu Colored Coins Implementation

A new Colored Coins implementation developed by Colu, based on attaching value to transactions using the OP_RETURN field on the Blockchain. Colu's coloring scheme enables to compress massive amount of data into a limited space and new functionalities with the Rule Engine tool. The Metadata is attached to the digital assets using Torrent technology so every asset is published publicly.

Main Features

  • Smarts Contracts Compatible
 Rule Engine for issuing digital assets with various   
 capabilities: time limitations - expiry date, access abilities to authorized holders, additional fees on specific address and limited permission to 
 issue more of the same asset. 
  • Maximum Decentralization Using Torrents
 Automatically storing metadata that can be freely accessed  
 and verified  in torrent files. The metadata size is unlimited and can contain information like: track record, history, description, validity or any 
 information the issuer finds relevant. 
  • Data Storage Flexibility
 Adding endless amount of metadata on every  
 transaction is available not only during issuance, but also in future transactions after the asset was issued.