<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://en.bitcoin.it/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ahazred8oc</id>
	<title>Bitcoin Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://en.bitcoin.it/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ahazred8oc"/>
	<link rel="alternate" type="text/html" href="https://en.bitcoin.it/wiki/Special:Contributions/Ahazred8oc"/>
	<updated>2026-04-17T21:58:31Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=BIP_0032&amp;diff=38848</id>
		<title>BIP 0032</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=BIP_0032&amp;diff=38848"/>
		<updated>2013-06-22T18:13:11Z</updated>

		<summary type="html">&lt;p&gt;Ahazred8oc: /* Abstract */ link to Deterministic Wallet&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{bip}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
RECENT CHANGES:&lt;br /&gt;
* [16 Apr 2013] Added private derivation for i &amp;gt;= 0x80000000 (less risk of parent private key leakage)&lt;br /&gt;
* [30 Apr 2013] Switched from multiplication by I_L to addition of I_L (faster, easier implementation)&lt;br /&gt;
* [25 May 2013] Added test vectors&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  BIP: 32&lt;br /&gt;
  Title: Hierarchical Deterministic Wallets&lt;br /&gt;
  Author: Pieter Wuille&lt;br /&gt;
  Status: Accepted&lt;br /&gt;
  Type: Informational&lt;br /&gt;
  Created: 11-02-2012&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Abstract==&lt;br /&gt;
&lt;br /&gt;
This document describes [[Deterministic Wallet|hierarchical determinstic wallets]] (or &amp;quot;HD Wallets&amp;quot;): wallets which can be shared partially or entirely with different systems, each with or without the ability to spend coins.&lt;br /&gt;
&lt;br /&gt;
The specification is intended to set a standard for deterministic wallets that can be interchanged between different clients. Although the wallets described here have many features, not all are required by supporting clients.&lt;br /&gt;
&lt;br /&gt;
The specification consists of two parts. In a first part, a system for deriving a tree of keypairs from a single seed is presented. The second part demonstrates how to build a wallet structure on top of such a tree.&lt;br /&gt;
&lt;br /&gt;
==Motivation==&lt;br /&gt;
&lt;br /&gt;
The Bitcoin reference client uses randomly generated keys. In order to avoid the necessity for a backup after every transaction, (by default) 100 keys are cached in a pool of reserve keys. Still, these wallets are not intended to be shared and used on several systems simultaneously. They support hiding their private keys by using the wallet encrypt feature and not sharing the password, but such &amp;quot;neutered&amp;quot; wallets lose the power to generate public keys as well. &lt;br /&gt;
&lt;br /&gt;
Deterministic wallets do not require such frequent backups, and elliptic curve mathematics permit schemes where one can calculate the public keys without revealing the private keys. This permits for example a webshop business to let its webserver generate fresh addresses (public key hashes) for each order or for each customer, without giving the webserver access to the corresponding private keys (which are required for spending the received funds).&lt;br /&gt;
&lt;br /&gt;
However, deterministic wallets typically consist of a single &amp;quot;chain&amp;quot; of keypairs. The fact that there is only one chain means that sharing a wallet happens on an all-or-nothing basis. However, in some cases one only wants some (public) keys to be shared and recoverable. In the example of a webshop, the webserver does not need access to all public keys of the merchant&#039;s wallet; only to those addresses which are used to receive customer&#039;s payments, and not for example the change addresses that are generated when the merchant spends money. Hierarchical deterministic wallets allow such selective sharing by supporting multiple keypair chains, derived from a single root.&lt;br /&gt;
&lt;br /&gt;
==Specification: Key derivation==&lt;br /&gt;
&lt;br /&gt;
===Conventions===&lt;br /&gt;
&lt;br /&gt;
In the rest of this text we will assume the public key cryptography used in Bitcoin, namely elliptic curve cryptography using the field and curve parameters defined by secp256k1 (http://www.secg.org/index.php?action=secg,docs_secg). Variables below are either:&lt;br /&gt;
* integers modulo the order of the curve (referred to as n), serialized as 32 bytes, most significant byte first.&lt;br /&gt;
* coordinates of points on the curve, serialized as specified in SEC1 in compressed form: [0x02 or 0x03] + 32 byte x coordinate), where the header byte depends on the parity of the omitted y coordinate.&lt;br /&gt;
* byte sequences&lt;br /&gt;
&lt;br /&gt;
We shall denote the compressed form of point P by &amp;amp;chi;(P), which for secp256k1 will always be 33 bytes long.&lt;br /&gt;
&lt;br /&gt;
Addition (+) of two coordinates is defined as application of the EC group operation. Multiplication (*) of an integer and a coordinate is defined as repeated application of the EC group operation. The generator element of the curve is called G. The public key K corresponding to the private key k is calculated as k*G. We do not distinguish between numbers or coordinates and their serialization as byte sequences.&lt;br /&gt;
&lt;br /&gt;
===Extended keys===&lt;br /&gt;
&lt;br /&gt;
In what follows, we will define a function that derives a number of child keys from a parent key. In order to prevent these from depending solely on the key itself, we extend both private and public keys first with an extra 256 bits of entropy. This extension, called the chain code, is identical for corresponding private and public keys, and consists of 32 bytes.&lt;br /&gt;
&lt;br /&gt;
We represent an extended private key as (k, c), with k the normal private key, and c the chain code. An extended public key is represented as (K, c), with K = k*G and c the chain code.&lt;br /&gt;
&lt;br /&gt;
===Child key derivation functions===&lt;br /&gt;
&lt;br /&gt;
We allow for two different types of derivation: private and public.&lt;br /&gt;
* Private derivation: knowledge of the private key k&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt; and c&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt; is required to compute both k&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; and K&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt;.&lt;br /&gt;
* Public derivation: knowledge of the public key K&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt; and c&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt; suffices to compute K&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; (but not k&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
We define the private and public child key derivation functions:&lt;br /&gt;
* CKD((k&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;, c&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;), i) &amp;amp;rarr;  (k&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt;, c&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt;), defined for both private and public derivation.&lt;br /&gt;
* CKD&#039;((K&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;, c&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;), i) &amp;amp;rarr; (K&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt;, c&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt;), defined only for public derivation.&lt;br /&gt;
&lt;br /&gt;
We use the most significant bit of i to specify which type of derivation to use. i is encoded as a 32 bit unsigned integer, most significant byte first; &#039;||&#039; represents concatenation.&lt;br /&gt;
&lt;br /&gt;
====Private child key derivation====&lt;br /&gt;
&lt;br /&gt;
To define CKD((k&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;, c&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;), i) &amp;amp;rarr; (k&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt;, c&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt;):&lt;br /&gt;
* Check whether the highest bit (0x80000000) of i is set:&lt;br /&gt;
** If 1, private derivation is used: let I = HMAC-SHA512(Key = c&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;, Data = 0x00 || k&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt; || i) [Note: The 0x00 pads the private key to make it 33 bytes long.]&lt;br /&gt;
** If 0, public derivation is used: let I = HMAC-SHA512(Key = c&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;, Data = &amp;amp;chi;(k&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;*G) || i)&lt;br /&gt;
* Split I = I&amp;lt;sub&amp;gt;L&amp;lt;/sub&amp;gt; || I&amp;lt;sub&amp;gt;R&amp;lt;/sub&amp;gt; into two 32-byte sequences, I&amp;lt;sub&amp;gt;L&amp;lt;/sub&amp;gt; and I&amp;lt;sub&amp;gt;R&amp;lt;/sub&amp;gt;.&lt;br /&gt;
* k&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; = I&amp;lt;sub&amp;gt;L&amp;lt;/sub&amp;gt; + k&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt; (mod n).&lt;br /&gt;
* c&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; = I&amp;lt;sub&amp;gt;R&amp;lt;/sub&amp;gt;.&lt;br /&gt;
In case I&amp;lt;sub&amp;gt;L&amp;lt;/sub&amp;gt; ≥ n or k&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; = 0, the resulting key is invalid, and one should proceed with the next value for i.&lt;br /&gt;
[Note: this has probability lower than 1 in 2&amp;lt;sup&amp;gt;127&amp;lt;/sup&amp;gt;.]&lt;br /&gt;
&lt;br /&gt;
====Public child key derivation====&lt;br /&gt;
&lt;br /&gt;
To define CKD&#039;((K&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;, c&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;), i) &amp;amp;rarr; (K&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt;, c&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt;):&lt;br /&gt;
* Check whether the highest bit (0x80000000) of i is set:&lt;br /&gt;
** If 1, return error&lt;br /&gt;
** If 0, let I = HMAC-SHA512(Key = c&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;, Data = &amp;amp;chi;(K&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;) || i)&lt;br /&gt;
* Split I = I&amp;lt;sub&amp;gt;L&amp;lt;/sub&amp;gt; || I&amp;lt;sub&amp;gt;R&amp;lt;/sub&amp;gt; into two 32-byte sequences, I&amp;lt;sub&amp;gt;L&amp;lt;/sub&amp;gt; and I&amp;lt;sub&amp;gt;R&amp;lt;/sub&amp;gt;.&lt;br /&gt;
* K&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; = (I&amp;lt;sub&amp;gt;L&amp;lt;/sub&amp;gt; + k&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;)*G = I&amp;lt;sub&amp;gt;L&amp;lt;/sub&amp;gt;*G + K&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;&lt;br /&gt;
* c&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; = I&amp;lt;sub&amp;gt;R&amp;lt;/sub&amp;gt;.&lt;br /&gt;
In case I&amp;lt;sub&amp;gt;L&amp;lt;/sub&amp;gt; ≥ n or K&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; is the point at infinity, the resulting key is invalid, and one should proceed with the next value for i.&lt;br /&gt;
&lt;br /&gt;
Note that the extended public key corresponding to the evaluation of CKD(k&amp;lt;sub&amp;gt;ext&amp;lt;/sub&amp;gt;, i) with public derivation (so with i &amp;lt; 0x80000000) is identical to the evaluation of CKD&#039;(K&amp;lt;sub&amp;gt;ext&amp;lt;/sub&amp;gt;, i), with K&amp;lt;sub&amp;gt;ext&amp;lt;/sub&amp;gt; the extended public key corresponding to k&amp;lt;sub&amp;gt;ext&amp;lt;/sub&amp;gt;. Symbolically, CKD((k, c), i)*G = CKD&#039;((k*G, c), i). This implies that CKD&#039; can be used to derive all public keys corresponding to the private keys that CKD would find. It cannot be used to retrieve the private keys, however.&lt;br /&gt;
&lt;br /&gt;
The HMAC-SHA512 function is specified in [http://tools.ietf.org/html/rfc4231 RFC 4231].&lt;br /&gt;
&lt;br /&gt;
===The key tree===&lt;br /&gt;
&lt;br /&gt;
The next step is cascading several CKD constructions to build a tree. We start with one root, the master extended key m. By evaluating CKD(m,i) for several values of i, we get a number of first-degree derivative nodes. As each of these is again an extended key, CKD can be applied to those as well. To shorten notation, we will write CKD(CKD(CKD(m,0x8000003),0x2),0x5) as m/3&#039;/2/5 now.&lt;br /&gt;
&lt;br /&gt;
Each leaf node in the tree corresponds to an actual keypair, while the internal nodes correspond to the collection of keypairs that descends from them. The chain codes of the leaf nodes are ignored, and only their embedded private or public key is used. Because of this construction, knowing an extended private key allows reconstruction of all descendant private keys and public keys, and knowing an extended public keys allows reconstruction of all descendant public keys derived using public derivation.&lt;br /&gt;
&lt;br /&gt;
===Key identifiers===&lt;br /&gt;
&lt;br /&gt;
Extended keys can be identified by the Hash160 (RIPEMD160 after SHA256) of the serialized public key, ignoring the chain code. This corresponds exactly to the data used in traditional Bitcoin addresses. It is not advised to represent this data in base58 format though, as it may be interpreted as an address that way (and wallet software is not required to accept payment to the chain key itself).&lt;br /&gt;
&lt;br /&gt;
The first 32 bits of the identifier are called the fingerprint.&lt;br /&gt;
&lt;br /&gt;
===Serialization format===&lt;br /&gt;
&lt;br /&gt;
Extended public and private keys are serialized as follows:&lt;br /&gt;
* 4 byte: version bytes (mainnet: 0x0488B21E public, 0x0488ADE4 private; testnet: 0x043587CF public, 0x04358394 private)&lt;br /&gt;
* 1 byte: depth: 0x00 for master nodes, 0x01 for level-1 descendants, .... &lt;br /&gt;
* 4 bytes: the fingerprint of the parent&#039;s key (0x00000000 if master key)&lt;br /&gt;
* 4 bytes: child number. This is the number i in x&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; = x&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;/i, with x&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt; the key being serialized. This is encoded in MSB order. (0x00000000 if master key)&lt;br /&gt;
* 32 bytes: the chain code&lt;br /&gt;
* 33 bytes: the public key or private key data (0x02 + X or 0x03 + X for public keys, 0x00 + k for private keys)&lt;br /&gt;
&lt;br /&gt;
This 78 byte structure can be encoded like other Bitcoin data in Base58, by first adding 32 checksum bits (derived from the double SHA-256 checksum), and then converting to the Base58 representation. This results in a Base58-encoded string of up to 112 characters. Because of the choice of the version bytes, the Base58 representation will start with &amp;quot;xprv&amp;quot; or &amp;quot;xpub&amp;quot; on mainnet, &amp;quot;tprv&amp;quot; or &amp;quot;tpub&amp;quot; on testnet.&lt;br /&gt;
&lt;br /&gt;
Note that the fingerprint of the parent only serves as a fast way to detect parent and child nodes in software, and software must be willing to deal with collisions. Internally, the full 160-bit identifier could be used.&lt;br /&gt;
&lt;br /&gt;
When importing a serialized extended public key, implementations must verify whether the X coordinate in the public key data corresponds to a point on the curve. If not, the extended public key is invalid.&lt;br /&gt;
&lt;br /&gt;
===Master key generation===&lt;br /&gt;
&lt;br /&gt;
The total number of possible extended keypairs is almost 2^512, but the produced keys are only 256 bits long, and offer about half of that in terms of security. Therefore, master keys are not generated directly, but instead from a potentially short seed value.&lt;br /&gt;
&lt;br /&gt;
* Generate a seed S of a chosen length (at least 128 bits, but 256 is advised) from a (P)RNG.&lt;br /&gt;
* Calculate I = HMAC-SHA512(key=&amp;quot;Bitcoin seed&amp;quot;, msg=S)&lt;br /&gt;
* Split I into two 32-byte sequences, I&amp;lt;sub&amp;gt;L&amp;lt;/sub&amp;gt; and I&amp;lt;sub&amp;gt;R&amp;lt;/sub&amp;gt;.&lt;br /&gt;
* Use I&amp;lt;sub&amp;gt;L&amp;lt;/sub&amp;gt; as master secret key, and I&amp;lt;sub&amp;gt;R&amp;lt;/sub&amp;gt; as master chain code.&lt;br /&gt;
In case I&amp;lt;sub&amp;gt;L&amp;lt;/sub&amp;gt; is 0 or &amp;gt;=n, the master key is invalid.&lt;br /&gt;
&lt;br /&gt;
[[File:BIP32-derivation.png]]&lt;br /&gt;
&lt;br /&gt;
==Specification: Wallet structure==&lt;br /&gt;
&lt;br /&gt;
The previous sections specified key trees and their nodes. The next step is imposing a wallet structure on this tree. The layout defined in this section is a default only, though clients are encouraged to mimick it for compatibility, even if not all features are supported.&lt;br /&gt;
&lt;br /&gt;
An HDW is organized as several &#039;accounts&#039;. Accounts are numbered, the default account (&amp;quot;&amp;quot;) being number 0. Clients are not required to support more than one account - if not, they only use the default account.&lt;br /&gt;
&lt;br /&gt;
Each account is composed of two keypair chains: an internal and an external one. The external keychain is used to generate new public addresses, while the internal keychain is used for all other operations (change addresses, generation addresses, ..., anything that doesn&#039;t need to be communicated). Clients that do not support separate keychains for these should use the external one for everything.&lt;br /&gt;
&lt;br /&gt;
 * m/i&#039;/0/k corresponds to the k&#039;th keypair of the external chain of account number i of the HDW derived from master m.&lt;br /&gt;
 * m/i&#039;/1/k corresponds to the k&#039;th keypair of the internal chain of account number i of the HDW derived from master m.&lt;br /&gt;
&lt;br /&gt;
===Use cases===&lt;br /&gt;
&lt;br /&gt;
====Full wallet sharing: m====&lt;br /&gt;
&lt;br /&gt;
In cases where two systems need to access a single shared wallet, and both need to be able to perform spendings, one needs to share the master private extended key. Nodes can keep a pool of N look-ahead keys cached for external chains, to watch for incoming payments. The look-ahead for internal chains can be very small, as no gaps are to be expected here. An extra look-ahead could be active for the first unused account&#039;s chains - triggering the creation of a new account when used. Note that the name of the account will still need to be entered manually and cannot be synchronized via the block chain.&lt;br /&gt;
&lt;br /&gt;
====Audits: M====&lt;br /&gt;
&lt;br /&gt;
In case an auditor needs full access to the list of incoming and outgoing payments, one can share the master public extended key. This will allow the auditor to see all transactions from and to the wallet, in all accounts, but not a single secret key.&lt;br /&gt;
&lt;br /&gt;
====Per-office balances: m/i&#039;====&lt;br /&gt;
&lt;br /&gt;
When a business has several independent offices, they can all use wallets derived from a single master. This will allow the headquarters to maintain a super-wallet that sees all incoming and outgoing transactions of all offices, and even permit moving money between the offices.&lt;br /&gt;
&lt;br /&gt;
====Recurrent business-to-business transactions: M/i&#039;/0====&lt;br /&gt;
&lt;br /&gt;
In case two business partners often transfer money, one can use the extended public key for the external chain of a specific account (M/i&#039;/0) as a sort of &amp;quot;super address&amp;quot;, allowing frequent transactions that cannot (easily) be associated, but without needing to request a new address for each payment.&lt;br /&gt;
Such a mechanism could also be used by mining pool operators as variable payout address.&lt;br /&gt;
&lt;br /&gt;
====Unsecure money receiver: M/i&#039;/0====&lt;br /&gt;
&lt;br /&gt;
When an unsecure webserver is used to run an e-commerce site, it needs to know public addresses that be used to receive payments. The webserver only needs to know the public extended key of the external chain of a single account. This means someone illegally obtaining access to the webserver can at most see all incoming payments, but will not (trivially) be able to distinguish outgoing transactions, nor see payments received by other webservers if there are several ones.&lt;br /&gt;
&lt;br /&gt;
==Compatibility==&lt;br /&gt;
&lt;br /&gt;
To comply with this standard, a client must at least be able to import an extended public or private key, to give access to its direct descendants as wallet keys. The wallet structure (master/account/chain/subchain) presented in the second part of the specification is advisory only, but is suggested as a minimal structure for easy compatibility - even when no separate accounts or distinction between internal and external chains is made. However, implementations may deviate from it for specific needs; more complex applications may call for a more complex tree structure.&lt;br /&gt;
&lt;br /&gt;
==Security==&lt;br /&gt;
&lt;br /&gt;
In addition to the expectations from the EC public-key cryptography itself:&lt;br /&gt;
* Given a public key K, an attacker cannot find the corresponding private key more efficiently than by solving the EC discrete logarithm problem (assumed to require 2&amp;lt;sup&amp;gt;128&amp;lt;/sup&amp;gt; group operations).&lt;br /&gt;
the intended security properties of this standard are:&lt;br /&gt;
* Given a child extended private key (k&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt;,c&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt;) and the integer i, an attacker cannot find the parent private key k&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt; more efficiently than a 2&amp;lt;sup&amp;gt;256&amp;lt;/sup&amp;gt; brute force of HMAC-SHA512.&lt;br /&gt;
* Given any number (2 &amp;lt;= N &amp;lt;= 2&amp;lt;sup&amp;gt;32&amp;lt;/sup&amp;gt;-1) of (index, extended private key) tuples (i&amp;lt;sub&amp;gt;j&amp;lt;/sub&amp;gt;,(p&amp;lt;sub&amp;gt;j&amp;lt;/sub&amp;gt;,c&amp;lt;sub&amp;gt;j&amp;lt;/sub&amp;gt;)), with distinct i&amp;lt;sub&amp;gt;j&amp;lt;/sub&amp;gt;&#039;s, determining whether they are derived from a common parent extended private key (i.e., whether there exists a (p&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;,c&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;) such that for each j in [0..N-1] CKD((p&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;,c&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;),i&amp;lt;sub&amp;gt;j&amp;lt;/sub&amp;gt;)=(p&amp;lt;sub&amp;gt;j&amp;lt;/sub&amp;gt;,c&amp;lt;sub&amp;gt;j&amp;lt;/sub&amp;gt;)), cannot be done more efficiently than a 2&amp;lt;sup&amp;gt;256&amp;lt;/sup&amp;gt; brute force of HMAC-SHA512.&lt;br /&gt;
Note however that the following properties does not exist:&lt;br /&gt;
* Given a parent extended public key (K&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;,c&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;) and a child public key (K&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt;), it is hard to find i.&lt;br /&gt;
* Given a parent extended public key (K&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;,c&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;) and a child private key (k&amp;lt;sub&amp;gt;i&amp;lt;/sub&amp;gt;) using public derivation, it is hard to find k&amp;lt;sub&amp;gt;par&amp;lt;/sub&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Private and public keys must be kept safe as usual. Leaking a private key means access to coins - leaking a public key can mean loss of privacy.&lt;br /&gt;
&lt;br /&gt;
Somewhat more care must be taken regarding extended keys, as these correspond to an entire (sub)tree of keys. One weakness that may not be immediately obvious, is that knowledge of the extended public key + a private key descending from it is equivalent to knowing the extended private key (i.e., every private and public key) in case public derivation is used. This means that extended public keys must be treated more carefully than regular public keys. This is the reason why accounts at the first level of the default wallet layout use private derivation, so a leak of account-specific (or below) private key never risks compromising the master.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Test Vectors==&lt;br /&gt;
&lt;br /&gt;
For more detailed information about these (such as intermediate values and other representations), see [[BIP_0032_TestVectors]]&lt;br /&gt;
&lt;br /&gt;
Test vector 1&lt;br /&gt;
&lt;br /&gt;
  Master (hex): 000102030405060708090a0b0c0d0e0f&lt;br /&gt;
  * [Chain m]&lt;br /&gt;
    * ext pub: xpub661MyMwAqRbcFtXgS5sYJABqqG9YLmC4Q1Rdap9gSE8NqtwybGhePY2gZ29ESFjqJoCu1Rupje8YtGqsefD265TMg7usUDFdp6W1EGMcet8&lt;br /&gt;
    * ext prv: xprv9s21ZrQH143K3QTDL4LXw2F7HEK3wJUD2nW2nRk4stbPy6cq3jPPqjiChkVvvNKmPGJxWUtg6LnF5kejMRNNU3TGtRBeJgk33yuGBxrMPHi&lt;br /&gt;
  * [Chain m/0&#039;]&lt;br /&gt;
    * ext pub: xpub68Gmy5EdvgibQVfPdqkBBCHxA5htiqg55crXYuXoQRKfDBFA1WEjWgP6LHhwBZeNK1VTsfTFUHCdrfp1bgwQ9xv5ski8PX9rL2dZXvgGDnw&lt;br /&gt;
    * ext prv: xprv9uHRZZhk6KAJC1avXpDAp4MDc3sQKNxDiPvvkX8Br5ngLNv1TxvUxt4cV1rGL5hj6KCesnDYUhd7oWgT11eZG7XnxHrnYeSvkzY7d2bhkJ7&lt;br /&gt;
  * [Chain m/0&#039;/1]&lt;br /&gt;
    * ext pub: xpub6ASuArnXKPbfEwhqN6e3mwBcDTgzisQN1wXN9BJcM47sSikHjJf3UFHKkNAWbWMiGj7Wf5uMash7SyYq527Hqck2AxYysAA7xmALppuCkwQ&lt;br /&gt;
    * ext prv: xprv9wTYmMFdV23N2TdNG573QoEsfRrWKQgWeibmLntzniatZvR9BmLnvSxqu53Kw1UmYPxLgboyZQaXwTCg8MSY3H2EU4pWcQDnRnrVA1xe8fs&lt;br /&gt;
  * [Chain m/0&#039;/1/2&#039;]&lt;br /&gt;
    * ext pub: xpub6D4BDPcP2GT577Vvch3R8wDkScZWzQzMMUm3PWbmWvVJrZwQY4VUNgqFJPMM3No2dFDFGTsxxpG5uJh7n7epu4trkrX7x7DogT5Uv6fcLW5&lt;br /&gt;
    * ext prv: xprv9z4pot5VBttmtdRTWfWQmoH1taj2axGVzFqSb8C9xaxKymcFzXBDptWmT7FwuEzG3ryjH4ktypQSAewRiNMjANTtpgP4mLTj34bhnZX7UiM&lt;br /&gt;
  * [Chain m/0&#039;/1/2&#039;/2]&lt;br /&gt;
    * ext pub: xpub6FHa3pjLCk84BayeJxFW2SP4XRrFd1JYnxeLeU8EqN3vDfZmbqBqaGJAyiLjTAwm6ZLRQUMv1ZACTj37sR62cfN7fe5JnJ7dh8zL4fiyLHV&lt;br /&gt;
    * ext prv: xprvA2JDeKCSNNZky6uBCviVfJSKyQ1mDYahRjijr5idH2WwLsEd4Hsb2Tyh8RfQMuPh7f7RtyzTtdrbdqqsunu5Mm3wDvUAKRHSC34sJ7in334&lt;br /&gt;
  * [Chain m/0&#039;/1/2&#039;/2/1000000000]&lt;br /&gt;
    * ext pub: xpub6H1LXWLaKsWFhvm6RVpEL9P4KfRZSW7abD2ttkWP3SSQvnyA8FSVqNTEcYFgJS2UaFcxupHiYkro49S8yGasTvXEYBVPamhGW6cFJodrTHy&lt;br /&gt;
    * ext prv: xprvA41z7zogVVwxVSgdKUHDy1SKmdb533PjDz7J6N6mV6uS3ze1ai8FHa8kmHScGpWmj4WggLyQjgPie1rFSruoUihUZREPSL39UNdE3BBDu76&lt;br /&gt;
&lt;br /&gt;
Test vector 2&lt;br /&gt;
&lt;br /&gt;
  Master (hex): fffcf9f6f3f0edeae7e4e1dedbd8d5d2cfccc9c6c3c0bdbab7b4b1aeaba8a5a29f9c999693908d8a8784817e7b7875726f6c696663605d5a5754514e4b484542&lt;br /&gt;
  * [Chain m]&lt;br /&gt;
    * ext pub: xpub661MyMwAqRbcFW31YEwpkMuc5THy2PSt5bDMsktWQcFF8syAmRUapSCGu8ED9W6oDMSgv6Zz8idoc4a6mr8BDzTJY47LJhkJ8UB7WEGuduB&lt;br /&gt;
    * ext prv: xprv9s21ZrQH143K31xYSDQpPDxsXRTUcvj2iNHm5NUtrGiGG5e2DtALGdso3pGz6ssrdK4PFmM8NSpSBHNqPqm55Qn3LqFtT2emdEXVYsCzC2U&lt;br /&gt;
  * [Chain m/0]&lt;br /&gt;
    * ext pub: xpub69H7F5d8KSRgmmdJg2KhpAK8SR3DjMwAdkxj3ZuxV27CprR9LgpeyGmXUbC6wb7ERfvrnKZjXoUmmDznezpbZb7ap6r1D3tgFxHmwMkQTPH&lt;br /&gt;
    * ext prv: xprv9vHkqa6EV4sPZHYqZznhT2NPtPCjKuDKGY38FBWLvgaDx45zo9WQRUT3dKYnjwih2yJD9mkrocEZXo1ex8G81dwSM1fwqWpWkeS3v86pgKt&lt;br /&gt;
  * [Chain m/0/2147483647&#039;]&lt;br /&gt;
    * ext pub: xpub6ASAVgeehLbnwdqV6UKMHVzgqAG8Gr6riv3Fxxpj8ksbH9ebxaEyBLZ85ySDhKiLDBrQSARLq1uNRts8RuJiHjaDMBU4Zn9h8LZNnBC5y4a&lt;br /&gt;
    * ext prv: xprv9wSp6B7kry3Vj9m1zSnLvN3xH8RdsPP1Mh7fAaR7aRLcQMKTR2vidYEeEg2mUCTAwCd6vnxVrcjfy2kRgVsFawNzmjuHc2YmYRmagcEPdU9&lt;br /&gt;
  * [Chain m/0/2147483647&#039;/1]&lt;br /&gt;
    * ext pub: xpub6DF8uhdarytz3FWdA8TvFSvvAh8dP3283MY7p2V4SeE2wyWmG5mg5EwVvmdMVCQcoNJxGoWaU9DCWh89LojfZ537wTfunKau47EL2dhHKon&lt;br /&gt;
    * ext prv: xprv9zFnWC6h2cLgpmSA46vutJzBcfJ8yaJGg8cX1e5StJh45BBciYTRXSd25UEPVuesF9yog62tGAQtHjXajPPdbRCHuWS6T8XA2ECKADdw4Ef&lt;br /&gt;
  * [Chain m/0/2147483647&#039;/1/2147483646&#039;]&lt;br /&gt;
    * ext pub: xpub6ERApfZwUNrhLCkDtcHTcxd75RbzS1ed54G1LkBUHQVHQKqhMkhgbmJbZRkrgZw4koxb5JaHWkY4ALHY2grBGRjaDMzQLcgJvLJuZZvRcEL&lt;br /&gt;
    * ext prv: xprvA1RpRA33e1JQ7ifknakTFpgNXPmW2YvmhqLQYMmrj4xJXXWYpDPS3xz7iAxn8L39njGVyuoseXzU6rcxFLJ8HFsTjSyQbLYnMpCqE2VbFWc&lt;br /&gt;
  * [Chain m/0/2147483647&#039;/1/2147483646&#039;/2]&lt;br /&gt;
    * ext pub: xpub6FnCn6nSzZAw5Tw7cgR9bi15UV96gLZhjDstkXXxvCLsUXBGXPdSnLFbdpq8p9HmGsApME5hQTZ3emM2rnY5agb9rXpVGyy3bdW6EEgAtqt&lt;br /&gt;
    * ext prv: xprvA2nrNbFZABcdryreWet9Ea4LvTJcGsqrMzxHx98MMrotbir7yrKCEXw7nadnHM8Dq38EGfSh6dqA9QWTyefMLEcBYJUuekgW4BYPJcr9E7j&lt;br /&gt;
&lt;br /&gt;
==Acknowledgements==&lt;br /&gt;
&lt;br /&gt;
* Gregory Maxwell for the original idea of type-2 deterministic wallets, and many discussions about it.&lt;br /&gt;
* Alan Reiner for the implementation of this scheme in Armory, and the suggestions that followed from that.&lt;br /&gt;
* Mike Caldwell for the version bytes to obtain human-recognizable Base58 strings.&lt;/div&gt;</summary>
		<author><name>Ahazred8oc</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Deterministic_wallet&amp;diff=38011</id>
		<title>Deterministic wallet</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Deterministic_wallet&amp;diff=38011"/>
		<updated>2013-05-24T17:20:57Z</updated>

		<summary type="html">&lt;p&gt;Ahazred8oc: /* Types of deterministic wallet in use */ twelve word passphrase common format&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A deterministic wallet is a wallet where private and public keys are all derived from a starting seed value. This could be a long passcode/password, or be a random series of letters and numbers. &lt;br /&gt;
&lt;br /&gt;
== Benefits ==&lt;br /&gt;
&lt;br /&gt;
A typical wallet creates private and public keys on demand for the user. This means that the wallet needs to be backed up frequently, otherwise coins may be lost. Also, having multiple machines with wallets on them means it is difficult to manage all of your coins together.&lt;br /&gt;
&lt;br /&gt;
A deterministic wallet can be backed up by simply copying the starting seed value to a secure location, and this only needs to be done once. If the wallet ever gets lost, all private and public keys can be regenerated from the initial seed.&lt;br /&gt;
&lt;br /&gt;
Also, multiple devices could host the same wallet based off of the same seed and automatically stay in sync with eachother. Non-critical information such as address books would need to be stored and copied between wallets.&lt;br /&gt;
&lt;br /&gt;
==Drawbacks==&lt;br /&gt;
&lt;br /&gt;
If the initial seed value was either guessed or taken, the attacker could take all of the coins from the wallet. Also, they could retain that seed value, and wait until some future date to take all of the coins. &lt;br /&gt;
&lt;br /&gt;
==Passwords vs Random Strings==&lt;br /&gt;
&lt;br /&gt;
The passcode/password has the benefit of being memorizable by the user, but at the expense of being either forgotten, or weak enough that the password could be guessed or brute forced. If a user used a password such as abc123, and an attacker might simply go through a list of common passwords, create wallets for them, and see if the public addresses match anything currently in the blockchain.&lt;br /&gt;
&lt;br /&gt;
A long string of letters and numbers would be a way to prevent a brute force attack. This has the drawback of having to be actually stored somewhere. If this code was ever lost, the wallet would be lost forever.&lt;br /&gt;
&lt;br /&gt;
==Types of deterministic wallet in use==&lt;br /&gt;
Each implementer of deterministic wallets should make sure that this article leads to a publicly available reference describing how to reconstitute the deterministic wallet from its seed.&lt;br /&gt;
&lt;br /&gt;
===Type 1 deterministic wallet===&lt;br /&gt;
A Type 1 deterministic wallet is created from a string.  Simply take SHA256(string + n), where n is an ASCII-coded number that starts from 1 and increments as additional keys are needed.  This simple type of wallet can be created by Casascius Bitcoin Address Utility.&lt;br /&gt;
&lt;br /&gt;
===Type 2 deterministic wallet===&lt;br /&gt;
Not sure on the details, but mention was made of a &amp;quot;type-2 deterministic wallet&amp;quot; in [[BIP 0032]] and credited to Gregory Maxwell, so this is a placeholder to describe that implementation. The relevant form topic is [https://bitcointalk.org/index.php?topic=19137.0 here].&lt;br /&gt;
&lt;br /&gt;
===BIP 0032 deterministic wallet===&lt;br /&gt;
Described in [[BIP 0032]] (currently a draft) and described as a &#039;&#039;hierarchical deterministic&#039;&#039; (HD) wallet, a BIP 0032 deterministic wallet allows sharing smaller deterministic wallets that are subportions of a larger one.&lt;br /&gt;
&lt;br /&gt;
===Twelve Word Passphrase deterministic wallet===&lt;br /&gt;
A common format shared by Brainwallet.org, CarbonWallet.org and [[Electrum]]. The same 12-word passphrase gives access to the same bitcoin addresses when used with any of the services.&lt;br /&gt;
&lt;br /&gt;
===Electrum deterministic wallet===&lt;br /&gt;
[[Electrum]] implements a Type-2 deterministic wallet format based on a 128-bit seed.  It uses a word list and converts the seed to a twelve word passphrase as an aid to help the user record the seed.&lt;br /&gt;
&lt;br /&gt;
===CarbonWallet deterministic wallet===&lt;br /&gt;
[[CarbonWallet]] also implements a Type-2 deterministic wallet format based on a 128-bit seed.  It uses the same word list as Electrum and is therefore compatible with Electrum twelve word passphrases.&lt;br /&gt;
&lt;br /&gt;
===Armory deterministic wallet===&lt;br /&gt;
[[Armory]] has its own Type-2 deterministic wallet format based on a &amp;quot;root key&amp;quot; and a &amp;quot;chain code.&amp;quot;  The Armory client has a &amp;quot;Paper Backup&amp;quot; screen that allows the user to print these data or copy it down by hand.  Earlier versions of Armory required backing up both the &amp;quot;root key&amp;quot; and &amp;quot;chaincode,&amp;quot; while newer versions start deriving the chaincode from the private key in a non-reversible way.  These newer Armory wallets (0.89+) only require the single, 256-bit root key.&lt;/div&gt;</summary>
		<author><name>Ahazred8oc</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=User:TecKhan54&amp;diff=37863</id>
		<title>User:TecKhan54</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=User:TecKhan54&amp;diff=37863"/>
		<updated>2013-05-17T16:35:10Z</updated>

		<summary type="html">&lt;p&gt;Ahazred8oc: removed categories&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Bold text&#039;&#039;&#039;TecKhan Wallet for Android&lt;br /&gt;
 BIP: 1&lt;br /&gt;
  Title: BIP Infrastructure and Guidelines&lt;br /&gt;
  Author:Duchess B. Breinstein&amp;lt;a55dayidream@gmail.com&amp;gt;&lt;br /&gt;
  Status: Active&lt;br /&gt;
  Type: Standards Track&lt;br /&gt;
  Created: 01-14-2013&lt;br /&gt;
&lt;br /&gt;
___________&lt;br /&gt;
|           |--(p2p protocol)---ooooooooooooooo&lt;br /&gt;
| Peer/Node |--(p2p protocol)--o  Other Peers  o&lt;br /&gt;
|___________|--(p2p protocol)---ooooooooooooooo&lt;br /&gt;
      |&lt;br /&gt;
(p2p protocol)&lt;br /&gt;
 _____|_____                       _________&lt;br /&gt;
|           |                     |         |&lt;br /&gt;
|   Wallet  |--(wallet protocol)--|  TecKhan54  |&lt;br /&gt;
|___________|                     |_________|&lt;br /&gt;
      |&lt;br /&gt;
(wallet protocol)&lt;br /&gt;
 _____|__________&lt;br /&gt;
|                |&lt;br /&gt;
| User Interface |&lt;br /&gt;
|________________|&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
code_string = &amp;quot;njH4Agfbgcev51clm7fmCUBR2DRRBa9ha&amp;quot;&lt;br /&gt;
   x = convert_bytes_to_big_integer(hash_result)&lt;br /&gt;
   &lt;br /&gt;
   output_string = &amp;quot;&amp;quot;&lt;br /&gt;
   &lt;br /&gt;
   while(x &amp;gt; 0) &lt;br /&gt;
       {&lt;br /&gt;
           (x, remainder) = divide(x, 58)&lt;br /&gt;
           output_string.append(code_string[remainder])&lt;br /&gt;
       }&lt;br /&gt;
   &lt;br /&gt;
   repeat(number_of_leading_zero_bytes_in_hash)&lt;br /&gt;
       {&lt;br /&gt;
       output_string.append(code_string[0]);&lt;br /&gt;
       }&lt;br /&gt;
   &lt;br /&gt;
   output_string.reverse();&lt;br /&gt;
[edit] Version bytesHere are some common version bytes: &lt;br /&gt;
&lt;br /&gt;
Decimal version  Leading symbol  Use  &lt;br /&gt;
0  1  Bitcoin pubkey hash  &lt;br /&gt;
5  3  Bitcoin script hash  &lt;br /&gt;
21  4  Bitcoin (compact) public key (proposed)  &lt;br /&gt;
52  M or N  Namecoin pubkey hash  &lt;br /&gt;
128  5  Private key  &lt;br /&gt;
111  m or n  Bitcoin testnet pubkey hash  &lt;br /&gt;
196  2  Bitcoin testnet script hash  &lt;br /&gt;
&lt;br /&gt;
List of address prefixes is a more complete list. &lt;br /&gt;
&lt;br /&gt;
[edit] Source https://github.com/bitcoin/bitcoin/blob/master/src/base58&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
TecKhan Wallet for Android is a design document infrastructure providing education to the Bitcoin community,or describing Bitcoin virtual environments.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
https://en.bitcoin.it/wiki/Donation-accepting_organizations_and_projects&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
https://en.bitcoin.it/wiki/Stuff_Exists&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
Copyright © 2007 Author:Duchess B.Breinstein&lt;br /&gt;
                                 &lt;br /&gt;
&lt;br /&gt;
                           All rights reserved.&lt;/div&gt;</summary>
		<author><name>Ahazred8oc</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Meetups&amp;diff=37862</id>
		<title>Meetups</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Meetups&amp;diff=37862"/>
		<updated>2013-05-17T16:30:12Z</updated>

		<summary type="html">&lt;p&gt;Ahazred8oc: /* See Also */ added category:Meetups&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Don&#039;t add everyone who&#039;s going in the &amp;quot;Who?&amp;quot; column, just prominent Bitcoin members and organizers. Also see [http://bitcoin.meetup.com bitcoin.meetup.com]. Also see [[Conferences]].&lt;br /&gt;
&lt;br /&gt;
Keep an eye on the [http://bitcointalk.org/index.php?board=86.0 Meetups] forum board on BitcoinTalk for announcements.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Group&lt;br /&gt;
! When?&lt;br /&gt;
! Where?&lt;br /&gt;
! Who?&lt;br /&gt;
! Other Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.meetup.com/bitcoins/ Bitcoin NYC]&lt;br /&gt;
| monthly&lt;br /&gt;
| [http://www.xcubicle.com/ xCubicle Hackerspace - New York, NY]&lt;br /&gt;
| Any and all Bitcoin aficionados. &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [http://hitspace.org/ HIT Space - Hack it Together]&lt;br /&gt;
| monthly&lt;br /&gt;
| [http://hitspace.org/where-we-are/ HIT Space - Porto, Portugal]&lt;br /&gt;
| Hackerspace members and anyone who want to join us&lt;br /&gt;
| send us an email geral[at]hitspace.org&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [http://metalab.at/wiki/Bitcoins Vienna, Austria]&lt;br /&gt;
| monthly - check the [http://metalab.at/wiki/Bitcoins wiki] or subscribe to the [http://lists.keisanki.net/listinfo/bitcoin mailinglist]&lt;br /&gt;
| [http://metalab.at/wiki/Lage Metalab], Vienna hacker space, Rathausstraße 6, 1010 Wien&lt;br /&gt;
| Bitcoin Group Austria &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [http://brmlab.cz brmlab, prague hackerspace]&lt;br /&gt;
| 14th Nov 2011&lt;br /&gt;
28th Nov 2011&lt;br /&gt;
([http://brmlab.cz/event/bitcoin_seminar])&lt;br /&gt;
| [http://brmlab.cz/place Brmlab, Bubenska 1]&lt;br /&gt;
| brmlab crew, slush, genjix&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [http://www.facebook.com/groups/175596065827848/ Bitcoin Boston]&lt;br /&gt;
| Bi-weekly on Saturday or Sunday ([http://www.facebook.com/groups/175596065827848/ See Facebook page])&lt;br /&gt;
| Starbucks, Harvard Square&lt;br /&gt;
| Anyone who wants to come!&lt;br /&gt;
| So far our meetings have been pretty sporadic, but we hope to gain some regularity soon...&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.meetup.com/bitcoin New York Bitcoin Users]&lt;br /&gt;
| 6:00 PM, 3rd Sunday of every month ([http://www.meetup.com/bitcoin/events/past past meetings])&lt;br /&gt;
| OnlyOneTV Studios - 290 Fifth Ave New York, NY&lt;br /&gt;
| Bruce Wagner (Organizer) and others&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.meetup.com/bitcoin New York Bitcoin Users]&lt;br /&gt;
| 6:00 PM, every Wednesday of every month ([http://www.meetup.com/bitcoin/events/past past meetings])&lt;br /&gt;
| Just Sweet Dessert House - 83 Third Ave New York, NY&lt;br /&gt;
| Yifu Guo (Organizer) and crew&lt;br /&gt;
| hosted by Bitsyncom, the people behind [[Bitnavigator]], walk-ins welcome;&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.meetup.com/MichiganBitcoinMeetup Michigan Bitcoin Meetup]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|Kinnard Hockenhull (Organizer)&lt;br /&gt;
|Sponsored by [[BitBox]]&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.meetup.com/PhillyBitcoin Philadelphia Bitcoin User Group]&lt;br /&gt;
| TBD&lt;br /&gt;
| TBD&lt;br /&gt;
| Brian Cohen (Organizer) and others&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.meetup.com/BitcoinDC Washington, DC Bitcoin Users]&lt;br /&gt;
| 7:00 PM, 1st Monday of every month ([http://www.meetup.com/BitcoinDC/#past past meetings])&lt;br /&gt;
| Northside Social, 3211 Wilson Blvd Arlington, VA&lt;br /&gt;
| [[User:Dduane|Darrell Duane]] (Organizer) and others&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.meetup.com/Silicon-Valley-Bitcoin-Users Silicon Valley Bitcoin Users]&lt;br /&gt;
| 7:00 PM, Tuesday, June 14, 2011 ([http://www.meetup.com/Silicon-Valley-Bitcoin-Users/events/past past meetings])&lt;br /&gt;
| 140B S Whisman Road Mountain View, CA &lt;br /&gt;
| Brian Mcqueen and others&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.meetup.com/BitcoinChicago Chicago]&lt;br /&gt;
| No regular schedule yet ([http://www.meetup.com/BitcoinChicago/events/past past meetings])&lt;br /&gt;
| Sunnyvale Art Gallery Cafe, 251 W El Camino Real Sunnyvale, CA&lt;br /&gt;
| Igor&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.meetup.com/denver-bitcoin Denver]&lt;br /&gt;
| First meeting June 4th, 2011 ([http://www.meetup.com/denver-bitcoin/events/past past meetings])&lt;br /&gt;
| Gypsy House Cafe - 1279 Marion St Denver, CO&lt;br /&gt;
| bearbones&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.meetup.com/bitcoinSF Bitcoin SF]&lt;br /&gt;
| Saturday, June 4, 2011 ([http://www.meetup.com/bitcoinSF past meetings])&lt;br /&gt;
| SFSU - 1600 Holloway Ave. San Francisco, CA&lt;br /&gt;
| Brian Mcqueen and others&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.meetup.com/Los-Angeles-Digital-Currency-Innovators-Group Los Angeles Digital Currency Innovators]&lt;br /&gt;
| Thursday July 7th, 2011, 7 PM&lt;br /&gt;
| (mt)/Media Temple, Culver City, CA&lt;br /&gt;
| [[User:sgornick|Stephen Gornick]] (Interim organizer) and others&lt;br /&gt;
| Seeking meetup coordinator&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.meetup.com/Las-Vegas-Bitcoin-Users Las Vegas Bitcoin Users]&lt;br /&gt;
| Monthly, check calendar ([http://www.meetup.com/Las-Vegas-Bitcoin-Users/#upcomming meetings])&lt;br /&gt;
| Putters, 6945 South Rainbow Boulevard, Las Vegas, NV&lt;br /&gt;
| Mark Russell, Julian Tosh&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.facebook.com/groups/195492163844669/ Free State Bitcoin Consortium]&lt;br /&gt;
| Every Saturday, at 6:30 PM&lt;br /&gt;
| Strange Brew Tavern, Manchester, NH&lt;br /&gt;
| ben-abuya (organizer)&lt;br /&gt;
| Weekly&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.facebook.com/groups/195492163844669/ Twin Cities Users]&lt;br /&gt;
| Friday, June 10, 2011, 6:30 PM&lt;br /&gt;
| Joule - 1200 Washington Ave S Minneapolis, MN&lt;br /&gt;
| Mac Manson&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.meetup.com/Portland-Bitcoin-Meetup-Users Portland Bitcoin Users Meetup Group]&lt;br /&gt;
| forming&lt;br /&gt;
| &lt;br /&gt;
| Steven Wagner&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.meetup.com/Bitcoin-Orlando Bitcoin Orlando]&lt;br /&gt;
| ([http://www.meetup.com/Bitcoin-Orlando#past past meetings])&lt;br /&gt;
| Frank &amp;amp; Steins 150 S. Magnolia Ave, Orlando, FL&lt;br /&gt;
| Antonio Gallippi&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.hive13.org/?p=310 Hive13 Hackerspace]&lt;br /&gt;
| Bitcoin Exchange, Every Tuesday, 7:30 PM&lt;br /&gt;
| Hive13 - 2929 Spring Grove Avenue, Cincinnati, OH&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.facebook.com/bitcoinaus Bitcoin Australia]: Melbourne &lt;br /&gt;
| [https://www.facebook.com/events/345430765511234/ Wednesday, 23 May 2012, 18:45]&lt;br /&gt;
| Melbourne CBD(TBA)&lt;br /&gt;
| Facebook, IRC, Bitcointalk Forum...&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin:Tokyo meetup|Tokyo]]&lt;br /&gt;
| Usually first monday of the month&lt;br /&gt;
| Shibuya&lt;br /&gt;
| Roger Ver (Organizer) and others&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [http://meetup.com/Bitcoin-Canada Vancouver Canada]&lt;br /&gt;
| ([http://www.meetup.com/Bitcoin-Canada/#past past meetings])&lt;br /&gt;
| The Brickhouse - 730 Main St.&lt;br /&gt;
| humble (and others)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [https://groups.google.com/d/forum/bitcoin-switzerland Zurich/Geneva Switzerland]&lt;br /&gt;
| Semi-regular, about once a month&lt;br /&gt;
| Oliver Twist Pub, Zurich; Lord Nelson Pub, Geneva&lt;br /&gt;
| Stefan Thomas (WeUseCoins), Mike Hearn (BitcoinJ), bitdragon, Luzius (Wuala), more ... &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Seattle Bitcoin Meetup&lt;br /&gt;
| [http://www.meetup.com/SeattleBitCoin/ Semi-regularly].&lt;br /&gt;
| [http://maps.google.com/maps?q=cafe+solstice&amp;amp;daddr=4116+University+Way,+Seattle,+WA+98105-6214&amp;amp;hl=en&amp;amp;ll=47.657424,-122.31313&amp;amp;spn=0.007328,0.01929&amp;amp;gl=us&amp;amp;view=map&amp;amp;geocode=CRT9Bdg7zX3vFdcx1wIdWqa1-CFcJ9qrr9CcEQ&amp;amp;t=h&amp;amp;z=16 Solstice Cafe, 2pm]&lt;br /&gt;
| [https://bitcointalk.org/index.php?action=profile;u=36217 indolering]&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [https://bitcointalk.org/index.php?topic=42262.0 Munich Germany]&lt;br /&gt;
| Semi-regular, about once a month&lt;br /&gt;
| Optimolwerke&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.meetup.com/bitcoin-il/ Israel Bitcoin Meetup Group]&lt;br /&gt;
| Occasional&lt;br /&gt;
| TBD&lt;br /&gt;
| Meni Rosenfeld&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.meetup.com/Dallas-Bitcoin-User-Meetup/ Dallas Bitcoin Meetup Group]&lt;br /&gt;
| Biweekly on Saturdays, 6:00PM&lt;br /&gt;
| [http://freemandallas.com/ The Free Man Cajun Cafe]&lt;br /&gt;
| Justus Ranvier (organizer)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| [https://en.bitcoin.it/wiki/Cafe Café Bitcoin Sevilla]&lt;br /&gt;
| &lt;br /&gt;
| Seville, Spain&lt;br /&gt;
| Randy Brito (rdymac / btcven), Eduardo (bitcoin.com.es), Jorge and Alfredo&lt;br /&gt;
| http://cafebitcoin.com&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [http://hackerspaces.org/wiki/List_of_Hacker_Spaces List of Hacker Spaces]&lt;br /&gt;
&lt;br /&gt;
[[Category:Local]]&lt;br /&gt;
[[Category:Meetups]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[de:Treffen]]&lt;/div&gt;</summary>
		<author><name>Ahazred8oc</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Vanitygen&amp;diff=37861</id>
		<title>Vanitygen</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Vanitygen&amp;diff=37861"/>
		<updated>2013-05-17T16:18:10Z</updated>

		<summary type="html">&lt;p&gt;Ahazred8oc: added category: Vanity address&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Vanitygen is a command-line vanity bitcoin address generator.&lt;br /&gt;
&lt;br /&gt;
If you&#039;re tired of the random, cryptic addresses generated by regular bitcoin clients, you can use vanitygen to create a more personalized address.  Add unique flair when you tell people to send bitcoins to 1stDownqyMHHqnDPRSfiZ5GXJ8Gk9dbjL.  Alternatively, vanitygen can be used to generate random addresses offline.&lt;br /&gt;
&lt;br /&gt;
Vanitygen accepts as input a pattern, or list of patterns to search for, and produces a list of addresses and private keys.  Vanitygen&#039;s search is probabilistic, and the amount of time required to find a given pattern depends on how complex the pattern is, the speed of your computer, and whether you get lucky.&lt;br /&gt;
&lt;br /&gt;
The example below illustrates a session of vanitygen.  It is typical, and took about 10 sec to finish, using my Core 2 Duo E6600 CPU on x86-64 Linux:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$ ./vanitygen 1Boat&lt;br /&gt;
Difficulty: 4476342&lt;br /&gt;
Pattern: 1Boat                                                                 &lt;br /&gt;
Address: 1BoatSLRHtKNngkdXEeobR76b53LETtpyT&lt;br /&gt;
Privkey: 5J4XJRyLVgzbXEgh8VNi4qovLzxRftzMd8a18KkdXv4EqAwX3tS&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Vanitygen includes components to perform address searching on your CPU (vanitygen) and your OpenCL-compatible GPU (oclvanitygen).  Both can be built from source, and both are included in the Windows binary package.  Also included is oclvanityminer, the vanity address mining client.  Oclvanityminer can be used to automatically claim bounties on sites such as [[User:ThePiachu|ThePiachu]]&#039;s [[Vanity Pool]].&lt;br /&gt;
&lt;br /&gt;
Current version: 0.22&lt;br /&gt;
&lt;br /&gt;
Windows x86+x64 binaries [https://github.com/downloads/samr7/vanitygen/vanitygen-0.20-win.zip here].  PGP signature [http://insight.gotdns.org/~samr7/vanitygen-0.20-win.zip.asc here].&lt;br /&gt;
&lt;br /&gt;
Get the source from [https://github.com/samr7/vanitygen GitHub].  Includes Makefiles for Linux and Mac OS X.&lt;br /&gt;
&lt;br /&gt;
Main discussion at [https://bitcointalk.org/index.php?topic=25804.0 BitCoinTalk]&lt;br /&gt;
&lt;br /&gt;
== Expected keysearch rate ==&lt;br /&gt;
Main article: [[Vanitygen keysearch rate]]&lt;br /&gt;
&lt;br /&gt;
What key search rate can I expect from hardware X?&lt;br /&gt;
&lt;br /&gt;
Detailed list forthcoming.  Some ballpark estimates are listed below.&lt;br /&gt;
&lt;br /&gt;
 Dual-core desktop CPUs, 32-bit mode: 100-250 Kkey/s.&lt;br /&gt;
 Dual-core desktop CPUs, 64-bit mode: 150-450 Kkey/s.&lt;br /&gt;
 Quad-core desktop CPUs, 32-bit mode: 200-400 Kkey/s.&lt;br /&gt;
 Quad-core desktop CPUs, 64-bit mode: 300-750 Kkey/s.&lt;br /&gt;
 NVIDIA GT200 GPUs: up to 6.5 Mkey/s&lt;br /&gt;
 AMD Radeon 58XX, 68XX GPUs: up to 23.5 Mkey/s.&lt;br /&gt;
 AMD Radeon 69XX GPUs: up to 19.5 Mkey/s.&lt;br /&gt;
&lt;br /&gt;
As vanitygen performs a lot of large integer arithmetic, running it in 64-bit mode makes a huge difference in key search rate, easily a 50% improvement over 32-bit mode.  If you are using a 64-bit edition of Windows, and not using a GPU, be sure to use vanitygen64.exe.&lt;br /&gt;
&lt;br /&gt;
Radeon 58XX outperforms Radeon 69XX by a very comfortable margin.  Oclvanitygen is sensitive to integer multiply throughput, and Radeon 58XX can multiply concurrently with other operations.  At similar clocks, a hobbled Radeon 5830 will outperform a Radeon 6970.&lt;br /&gt;
&lt;br /&gt;
In custom builds, CPU performance will be less than expected if the OpenSSL library is an older version (&amp;lt;1.0.0d) or is not built with the appropriate optimizations enabled.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Firstbits]]&lt;br /&gt;
* [[Bitcoin Vanity Generation Website]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Vanity address]]&lt;/div&gt;</summary>
		<author><name>Ahazred8oc</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Cafe&amp;diff=37860</id>
		<title>Cafe</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Cafe&amp;diff=37860"/>
		<updated>2013-05-17T16:04:16Z</updated>

		<summary type="html">&lt;p&gt;Ahazred8oc: /* Café Bitcoin */ English language summary&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Café Bitcoin===&lt;br /&gt;
&lt;br /&gt;
Somos un grupo de usuarios especializados en distintos campos con el objetivo de dar a conocer Bitcoin. Organizamos charlas, reuniones y conferencias en la ciudad de Sevilla y alrededores.&lt;br /&gt;
&lt;br /&gt;
Si estás interesado en organizar una charla introductoria sobre Bitcoin y te gustaría contar con nosotros, estamos a tu disposición.&lt;br /&gt;
&lt;br /&gt;
(We are a specialized group of users in different fields in order to raise awareness of Bitcoin. We organize lectures, meetings and conferences in the city of Seville and surroundings.)&lt;br /&gt;
&lt;br /&gt;
* Twitter https://twitter.com/cafebitcoin&lt;br /&gt;
&lt;br /&gt;
* Website http://cafebitcoin.com&lt;br /&gt;
&lt;br /&gt;
* Email contacto@cafebitcoin.com&lt;br /&gt;
&lt;br /&gt;
* Charlas https://en.bitcoin.it/wiki/Cafe&lt;br /&gt;
&lt;br /&gt;
* Colaborar [bitcoin:1cafeCoDyG9aYpiJeP6S92YFrFPxCZ3V9 &#039;&#039;&#039;1cafe&#039;&#039;&#039;CoDyG9aYpiJeP6S92YFrFPxCZ3V9]&lt;br /&gt;
&lt;br /&gt;
==Próximas charlas==&lt;br /&gt;
====Curso online Primeros pasos con un monedero Bitcoin====&lt;br /&gt;
&lt;br /&gt;
Clase gratuita online para explicar el monedero Electrum. Aprenderás a guardar los bitcoins de una forma segura.&lt;br /&gt;
&lt;br /&gt;
*Lugar: Google Hangout (video-conferencia / online)&lt;br /&gt;
*Fecha: 11 / Mayo / 2013&lt;br /&gt;
*Hora: 11:00&lt;br /&gt;
*Enlace: http://www.floqq.com/course/electrum-un-monedero-bitcoin&lt;br /&gt;
*Precio: Gratuito&lt;br /&gt;
&lt;br /&gt;
==Charlas pasadas==&lt;br /&gt;
&lt;br /&gt;
====Taller Cliente Bitcoin: Electrum====&lt;br /&gt;
&lt;br /&gt;
Taller de iniciación sobre el cliente Bitcoin, Electrum. Introducción a la gestión de carteras, realizar y recibir pagos con Bitcoin.&lt;br /&gt;
&lt;br /&gt;
*Lugar: workINcompany&lt;br /&gt;
*Dirección: Calle Rioja 13, 1ºC. 41001 - Sevilla - [https://maps.google.es/maps?f=q&amp;amp;source=embed&amp;amp;hl=es&amp;amp;geocode=&amp;amp;q=Coworking+Sevilla+::+workincompany&amp;amp;aq=&amp;amp;sll=37.390073,-5.997527&amp;amp;sspn=0.012122,0.019205&amp;amp;ie=UTF8&amp;amp;hq=Coworking+Sevilla+::+workincompany&amp;amp;hnear=&amp;amp;t=m&amp;amp;ll=37.389118,-6.000338&amp;amp;spn=0.013639,0.01708&amp;amp;z=14 ver mapa]&lt;br /&gt;
*Fecha: 15 / Abril / 2013&lt;br /&gt;
*Hora: 16:30 a 21:00&lt;br /&gt;
*Apuntarse&lt;br /&gt;
**Lista: http://d.pr/WO4I&lt;br /&gt;
**Evento de Facebook: http://d.pr/3FXw&lt;br /&gt;
*Precio: Entrada gratuita&lt;br /&gt;
&lt;br /&gt;
Docs: [http://cafebitcoin.com/docs/Cafe_Bitcoin-Taller_Cliente_Bitcoin_Electrum_15-04-2013.html Bitcoin y Electrum]&lt;br /&gt;
&lt;br /&gt;
====Primer Bitcoin Café====&lt;br /&gt;
&lt;br /&gt;
Encuentro para personas interesadas en Bitcoin, Internet, OpenPGP, Diseño, e-commerce, Tor...&lt;br /&gt;
&lt;br /&gt;
Al ser una charla, todos podemos participar y discutir los temas libremente, el objetivo es estudiar los distintos puntos de vista de cada uno para cada tema a tratar. En esta charla conseguiremos resolver dudas que no nos habíamos planteado individualmente y que además nos servirá para conocer personas interesadas en este sector.&lt;br /&gt;
&lt;br /&gt;
¿Qué es Bitcoin? http://youtu.be/PN0oqKUk7kY&lt;br /&gt;
&lt;br /&gt;
*Lugar: VIPS&lt;br /&gt;
*Dirección: Calle Enramadilla s/n, Viapol, 41018 Sevilla&lt;br /&gt;
*Fecha: 22 / Febrero / 2013&lt;br /&gt;
*Hora: a partir de las 18:00&lt;br /&gt;
*Apuntarse:&lt;br /&gt;
**Lista: http://bit.ly/BTCCafe&lt;br /&gt;
**Evento de Facebook: https://www.facebook.com/events/140167789479847&lt;/div&gt;</summary>
		<author><name>Ahazred8oc</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Bitcoin_symbol&amp;diff=37859</id>
		<title>Bitcoin symbol</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Bitcoin_symbol&amp;diff=37859"/>
		<updated>2013-05-17T15:50:24Z</updated>

		<summary type="html">&lt;p&gt;Ahazred8oc: /* Existing Unicode symbol */ identify &amp;quot;IDENTICAL TO&amp;quot; symbol (three bars)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Currency code ==&lt;br /&gt;
The [https://secure.wikimedia.org/wikipedia/en/wiki/ISO_4217 currency code] for Bitcoin is &#039;&#039;&#039;BTC&#039;&#039;&#039;. However, at the moment it is an [https://secure.wikimedia.org/wikipedia/en/wiki/ISO_4217#Without_currency_code unofficial code] according to the ISO 4217 standard but the official code according to the Bitcoin community.&lt;br /&gt;
&lt;br /&gt;
A [https://bitcointalk.org/index.php?topic=7205.msg112577 request] has been made at the [http://www.six-group.com/ organization] maintaining the currency codes in the ISO 4217 standard to support BTC. This has been declined mainly on bases that organizations such as [https://secure.wikimedia.org/wikipedia/en/wiki/Reuters Reuters] and [https://secure.wikimedia.org/wikipedia/en/wiki/Bloomberg Bloomberg] are not reporting on the Bitcoin currency. When this changes, a request can be resubmitted.&lt;br /&gt;
&lt;br /&gt;
== Currency sign ==&lt;br /&gt;
&lt;br /&gt;
B⃦ has been the standard currency sign for BTC for a long time. Some existing Unicode symbols have been proposed but also serious work is being done on creating a custom Bitcoin sign with its own official [https://secure.wikimedia.org/wikipedia/en/wiki/Unicode Unicode] that is recognized by the [https://secure.wikimedia.org/wikipedia/en/wiki/Unicode_Consortium Unicode Consortium]. Note that a currency sign is more complex than creating a logo as will be explained below.&lt;br /&gt;
&lt;br /&gt;
[[File:Example-unicode-reference-currency-signs.png|256px|thumb|right|Examples of Unicode currency sign reference glyphs]]&lt;br /&gt;
&lt;br /&gt;
=== New Unicode symbol ===&lt;br /&gt;
&lt;br /&gt;
In some discussions [https://bitcointalk.org/index.php?topic=41.0 41], [https://bitcointalk.org/index.php?topic=369.0 369] and [https://bitcointalk.org/index.php?topic=7215.0 7215] on the bitcoin forum several designs of an official Bitcoin sign have been proposed. This section on the Wiki is intended to streamline the process of arriving at an official Bitcoin currency sign with its own Unicode character code.&lt;br /&gt;
&lt;br /&gt;
==== Goal ====&lt;br /&gt;
Having a unique Bitcoin currency sign will allow typographers to add their currency sign design in their fonts. This is similar as implementing support for the euro sign. Each font has its own version of the euro sign that fits with the style observed in the characters in the rest of the fonts of their typefaces. Note that the Unicode Consortium does not endorse Bitcoin in any way by assigning a Unicode character code, however, having a Unicode for the Bitcoin sign will also be good for PR and help having Bitcoin be taken more seriously.&lt;br /&gt;
&lt;br /&gt;
==== Requirements and criteria ====&lt;br /&gt;
&lt;br /&gt;
A reference Bitcoin sign could/should/must be:&lt;br /&gt;
* recognizable as a [https://secure.wikimedia.org/wikipedia/en/wiki/Currency_sign currency sign] such as $ € ¥ £ ¢ (e.g. with one or two vertical or horzontal bars)&lt;br /&gt;
* not confusing with existing currency sign such as Thai Baht ฿&lt;br /&gt;
* build from recognizable existing characters found on most [https://secure.wikimedia.org/wikipedia/en/wiki/Keyboard_layout#United_States QWERTY keyboards] such as bar |, minus -, hash # and/or capital B referring to currencies and &#039;&#039;&#039;B&#039;&#039;&#039;itcoin&lt;br /&gt;
* easy to use in handwriting&lt;br /&gt;
* easy to compose with one or more [https://help.ubuntu.com/community/GtkComposeTable#The%20Gtk%20Compose%20Table compose seuquences] that are still free and refer to the elements recognizable in the sign (For example the euro sign can be composed from = and C even though the = and C are not part of how it is pronounced.)&lt;br /&gt;
* &#039;&#039;possible&#039;&#039; to implement in [https://secure.wikimedia.org/wikipedia/en/wiki/Serif serif and sans-serif] (Most of the [http://www.unicode.org/charts/PDF/U20A0.pdf Unicode reference implementations] are made with serifs but sans-serif also exist in sans-serif fonts. So a reference implementation in serif to what is found in the PDF is preferred.)&lt;br /&gt;
* &#039;&#039;possible&#039;&#039; to implement in regular, italic, bold and bold italic (for sans-serif the italic will simply be a slanted version)&lt;br /&gt;
* in [https://secure.wikimedia.org/wikipedia/en/wiki/SVG SVG] and use this [http://pastebin.com/raw.php?i=FVY8W1W3 template] (save as bitcoin-sign-20110719-template.svg) with updated metadata and public domain or similar free/open/libre license&lt;br /&gt;
&lt;br /&gt;
Note that a reference Bitcoin sign will only be used as a reference by the Unicode Consortium and it is up to typographers to implement their version matching the style of their typefaces and fonts.&lt;br /&gt;
&lt;br /&gt;
==== Submissions====&lt;br /&gt;
&lt;br /&gt;
It is possible to submit proposals for a &#039;&#039;&#039;reference implementation&#039;&#039;&#039; below until (community must determine date). They will be judged by (community must form committee for this). If you have problems submitting your design, ask a friend with knowledge on editing wikipedia for help.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Preview !! Handwritten !! Associations !! Compose sequence(s) !! Designer !! Link to SVG file !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Bitcoin-proposal-1.png|128px]]&lt;br /&gt;
|| [[File:Hashbtc.jpg|128px]]&lt;br /&gt;
|| hash (#), numeral three (3)&lt;br /&gt;
|| B#, #B, 3#, #3&lt;br /&gt;
|| Wareen&lt;br /&gt;
|| [http://pastebin.com/raw.php?i=MRfcm0Cn Bitcoin-proposal-1.svg]&lt;br /&gt;
|| proposal based on original design idea from [https://bitcointalk.org/index.php?topic=41.msg348274#msg348274 RylandAlmanza] and [https://bitcointalk.org/index.php?topic=25102.msg325489#msg325489 netrin]&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Bitcoin-sign-20110719.png|128px]]&lt;br /&gt;
|| [[file:Img075.jpg|128px]]&lt;br /&gt;
|| double barred dollar sign ($), capital b (B)&lt;br /&gt;
|| B|, |B, B=, =B&lt;br /&gt;
|| Pander&lt;br /&gt;
|| [http://pastebin.com/raw.php?i=XYsc9DeS bitcoin-sign-20110719.svg]&lt;br /&gt;
|| example submission based on [[File:F33980a445.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Existing Unicode symbol ===&lt;br /&gt;
&lt;br /&gt;
There is a discussion over [https://bitcointalk.org/index.php?topic=369.0 which Unicode symbol might be the best suited] for bitcoin.&lt;br /&gt;
&lt;br /&gt;
To type Unicode characters, refer to:&lt;br /&gt;
&lt;br /&gt;
* [[Microsoft Windows Unicode Input]]&lt;br /&gt;
* [[How to easily type the circled B symbol on a Mac]]&lt;br /&gt;
&lt;br /&gt;
It has led to the following options:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Proposed character !! Description &amp;amp; Pros &amp;amp; Cons !! Unicode name !! Unicode decimal input !! Unicode hex input&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;฿&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt; || &lt;br /&gt;
* Pros: Displayed correctly on all known OSes &lt;br /&gt;
* Cons: It is already used as the Thai Baht (THB) symbol&lt;br /&gt;
|| THAI CURRENCY SYMBOL BAHT ||  || Alt +0E3F&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;Ƀ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;||&lt;br /&gt;
*Pros: Displayed correctly on all known OSes; standard Latin Extended-B character; [http://www.ecogex.com/bitcoin/ See the project Ƀ Another Bitcoin identity]&lt;br /&gt;
|| LATIN CAPITAL LETTER B WITH STROKE || ||Alt +0243&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;ᗸ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| Resembles the striked B while being different from Baht symbol ||CANADIAN SYLLABICS CARRIER KHEE || || Alt +15F8&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;B⃦&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;||&lt;br /&gt;
*Pros: Similar to current bitcoin.org logo&lt;br /&gt;
|| LATIN CAPITAL LETTER B + COMBINING DOUBLE VERTICAL STROKE OVERLAY ||  || U+0042 U+20E6&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;B⃫&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;||&lt;br /&gt;
|| LATIN CAPITAL LETTER B + COMBINING LONG DOUBLE SOLIDUS OVERLAY ||  || U+0042 U+20EB&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;Ⓑ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;||&lt;br /&gt;
*Pros: Similar to current bitcoin.org logo&lt;br /&gt;
|| CIRCLED LATIN CAPITAL LETTER B ||  || Alt +24B7&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;ⓑ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;||&lt;br /&gt;
*Pros: Small b represent the unit bit in computer where capital B is Byte&lt;br /&gt;
* Cons: Small fonts are harder to read&lt;br /&gt;
|| CIRCLED LATIN SMALL LETTER B || ||Alt +24D1&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;ᴃ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| || LATIN LETTER SMALL CAPITAL BARRED B || ||Alt +1D03&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;␢&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| || (Unicode Block:	Control Pictures) BLANK SYMBOL (graphic for space) || || Alt +2422&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;β&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;||&lt;br /&gt;
*Pros: Fluid look and easy to write; Lowercase&amp;lt;br/&amp;gt;&lt;br /&gt;
*Cons: Languages that use this character don&#039;t consider it a B.  in Greek it&#039;s a V, and the German character it resembles is a hard S.&lt;br /&gt;
|| GREEK SMALL LETTER BETA || ||Alt +03B2&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;∆&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| delta for &amp;quot;digital&amp;quot;  || Greek capital Delta. (In Greek it&#039;s pronounced as the &amp;quot;th&amp;quot; in &amp;quot;then&amp;quot; and not like &amp;quot;d&amp;quot; in &amp;quot;digital&amp;quot;. ||  || U+0394&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;ɸ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| contains 0 and I || Greek small Phi || || U+0278 &lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;币&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| pronounced &amp;quot;bi&amp;quot;, combines &amp;quot;b&amp;quot;, turned &amp;quot;c&amp;quot; and &amp;quot;T&amp;quot;, many Chinese users, also 网民币 - Wangminbi, &amp;quot;The Netizen&#039;s Currency&amp;quot; (pun on Renminbi) || Chinese for &amp;quot;Currency&amp;quot;  || || U+5E01&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;¤&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| || CURRENCY SIGN ||Alt 0164 ||Alt +00A4&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;Ƅ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;||  || LATIN CAPITAL LETTER TONE SIX || ||Alt +0184&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;∄&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| || (Unicode Block: Mathematical Operators) THERE DOES NOT EXIST || ||Alt +2204&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;≡&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| three bars like three bits &lt;br /&gt;
* Cons: this resembles the letter ksi (Ξ) in Greek and it sounds like &amp;quot;x&amp;quot; in &amp;quot;axiom&amp;quot;.&lt;br /&gt;
|| (Unicode Block: Mathematical Operators) IDENTICAL TO || || U+2261 &lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;ઘ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| || GUJARATI LETTER GHA (Indo-Aryan language)  || ||Alt +0A98&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;ϭ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| || (Unicode Block: Greek and Coptic) COPTIC SMALL LETTER SHIMA || ||Alt +03ED&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;ⓢ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| Purposed as a smaller unit of bitcoin. E.g. A hundredth of a bitcoin || CIRCLED LATIN SMALL LETTER S  || || Alt +24E2&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;◪&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| || (Unicode Block: Geometric Shapes) SQUARE WITH LOWER RIGHT DIAGONAL HALF BLACK  || || Alt +25EA&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;☺&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| ||WHITE SMILING FACE|| || Alt +263A&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;☻&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| ||BLACK SMILING FACE|| || Alt +263B&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;㋡&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| ||CIRCLED KATAKANA TU&#039; (Japanese)|| || Alt +32E1&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;[[Image:Bat.png|24px|alt=The b&#039;at]]&amp;lt;br&amp;gt;&lt;br /&gt;
the b&#039;at&amp;lt;/center&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
* Pros: Is round like a coin. Contains the B for Bitcoin. Borrows a style widelly associated with the internet. Not used for other meanings.&lt;br /&gt;
* Cons: Does not exist in the Unicode standard&lt;br /&gt;
* Cons: Very similar to the existing trademarked Broad logo [[http://www.broad.com/]]&lt;br /&gt;
|| n/a || || &lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;[[Image:Bitcoin Symbol Suggestion circled struck-through B.png|24px]]&amp;lt;/center&amp;gt;||&lt;br /&gt;
* Cons: Does not exist in the Unicode standard&lt;br /&gt;
|| n/a || || &lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;[[Image:Bitcoin Symbol Suggestion rotated power.png|24px]]&amp;lt;/center&amp;gt;||&lt;br /&gt;
* Cons: Does not exist in the Unicode standard&lt;br /&gt;
|| n/a || || &lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;A &#039;C&#039; with &#039;1&#039; and &#039;0&#039; inside [[http://img829.imageshack.us/img829/8840/bitcoinlogodraft.png]]&amp;lt;/center&amp;gt;||&lt;br /&gt;
* Cons: Does not exist in the Unicode standard &lt;br /&gt;
|| n/a || || &lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;A &#039;C&#039; with a &#039;circle&#039; and &#039;dot&#039; inside [[http://img836.imageshack.us/img836/6006/bitcoinlogodraftii.png]]&amp;lt;/center&amp;gt;||&lt;br /&gt;
* Cons: Does not exist in the Unicode standard&lt;br /&gt;
 || n/a || || &lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;B-T-C monogram [[http://hosting11.imagecross.com/image-hosting-61/2381unicode1s.png]][[http://hosting11.imagecross.com/image-hosting-61/162bitcoin_uni_s.png]]&amp;lt;/center&amp;gt;||&lt;br /&gt;
* Cons: Does not exist in the Unicode standard&lt;br /&gt;
 || n/a || || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Promotional graphics]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Ahazred8oc</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Bitcoin_symbol&amp;diff=37854</id>
		<title>Bitcoin symbol</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Bitcoin_symbol&amp;diff=37854"/>
		<updated>2013-05-16T22:51:27Z</updated>

		<summary type="html">&lt;p&gt;Ahazred8oc: /* Existing Unicode symbol */ make the symbols &amp;lt;big&amp;gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Currency code ==&lt;br /&gt;
The [https://secure.wikimedia.org/wikipedia/en/wiki/ISO_4217 currency code] for Bitcoin is &#039;&#039;&#039;BTC&#039;&#039;&#039;. However, at the moment it is an [https://secure.wikimedia.org/wikipedia/en/wiki/ISO_4217#Without_currency_code unofficial code] according to the ISO 4217 standard but the official code according to the Bitcoin community.&lt;br /&gt;
&lt;br /&gt;
A [https://bitcointalk.org/index.php?topic=7205.msg112577 request] has been made at the [http://www.six-group.com/ organization] maintaining the currency codes in the ISO 4217 standard to support BTC. This has been declined mainly on bases that organizations such as [https://secure.wikimedia.org/wikipedia/en/wiki/Reuters Reuters] and [https://secure.wikimedia.org/wikipedia/en/wiki/Bloomberg Bloomberg] are not reporting on the Bitcoin currency. When this changes, a request can be resubmitted.&lt;br /&gt;
&lt;br /&gt;
== Currency sign ==&lt;br /&gt;
&lt;br /&gt;
B⃦ has been the standard currency sign for BTC for a long time. Some existing Unicode symbols have been proposed but also serious work is being done on creating a custom Bitcoin sign with its own official [https://secure.wikimedia.org/wikipedia/en/wiki/Unicode Unicode] that is recognized by the [https://secure.wikimedia.org/wikipedia/en/wiki/Unicode_Consortium Unicode Consortium]. Note that a currency sign is more complex than creating a logo as will be explained below.&lt;br /&gt;
&lt;br /&gt;
[[File:Example-unicode-reference-currency-signs.png|256px|thumb|right|Examples of Unicode currency sign reference glyphs]]&lt;br /&gt;
&lt;br /&gt;
=== New Unicode symbol ===&lt;br /&gt;
&lt;br /&gt;
In some discussions [https://bitcointalk.org/index.php?topic=41.0 41], [https://bitcointalk.org/index.php?topic=369.0 369] and [https://bitcointalk.org/index.php?topic=7215.0 7215] on the bitcoin forum several designs of an official Bitcoin sign have been proposed. This section on the Wiki is intended to streamline the process of arriving at an official Bitcoin currency sign with its own Unicode character code.&lt;br /&gt;
&lt;br /&gt;
==== Goal ====&lt;br /&gt;
Having a unique Bitcoin currency sign will allow typographers to add their currency sign design in their fonts. This is similar as implementing support for the euro sign. Each font has its own version of the euro sign that fits with the style observed in the characters in the rest of the fonts of their typefaces. Note that the Unicode Consortium does not endorse Bitcoin in any way by assigning a Unicode character code, however, having a Unicode for the Bitcoin sign will also be good for PR and help having Bitcoin be taken more seriously.&lt;br /&gt;
&lt;br /&gt;
==== Requirements and criteria ====&lt;br /&gt;
&lt;br /&gt;
A reference Bitcoin sign could/should/must be:&lt;br /&gt;
* recognizable as a [https://secure.wikimedia.org/wikipedia/en/wiki/Currency_sign currency sign] such as $ € ¥ £ ¢ (e.g. with one or two vertical or horzontal bars)&lt;br /&gt;
* not confusing with existing currency sign such as Thai Baht ฿&lt;br /&gt;
* build from recognizable existing characters found on most [https://secure.wikimedia.org/wikipedia/en/wiki/Keyboard_layout#United_States QWERTY keyboards] such as bar |, minus -, hash # and/or capital B referring to currencies and &#039;&#039;&#039;B&#039;&#039;&#039;itcoin&lt;br /&gt;
* easy to use in handwriting&lt;br /&gt;
* easy to compose with one or more [https://help.ubuntu.com/community/GtkComposeTable#The%20Gtk%20Compose%20Table compose seuquences] that are still free and refer to the elements recognizable in the sign (For example the euro sign can be composed from = and C even though the = and C are not part of how it is pronounced.)&lt;br /&gt;
* &#039;&#039;possible&#039;&#039; to implement in [https://secure.wikimedia.org/wikipedia/en/wiki/Serif serif and sans-serif] (Most of the [http://www.unicode.org/charts/PDF/U20A0.pdf Unicode reference implementations] are made with serifs but sans-serif also exist in sans-serif fonts. So a reference implementation in serif to what is found in the PDF is preferred.)&lt;br /&gt;
* &#039;&#039;possible&#039;&#039; to implement in regular, italic, bold and bold italic (for sans-serif the italic will simply be a slanted version)&lt;br /&gt;
* in [https://secure.wikimedia.org/wikipedia/en/wiki/SVG SVG] and use this [http://pastebin.com/raw.php?i=FVY8W1W3 template] (save as bitcoin-sign-20110719-template.svg) with updated metadata and public domain or similar free/open/libre license&lt;br /&gt;
&lt;br /&gt;
Note that a reference Bitcoin sign will only be used as a reference by the Unicode Consortium and it is up to typographers to implement their version matching the style of their typefaces and fonts.&lt;br /&gt;
&lt;br /&gt;
==== Submissions====&lt;br /&gt;
&lt;br /&gt;
It is possible to submit proposals for a &#039;&#039;&#039;reference implementation&#039;&#039;&#039; below until (community must determine date). They will be judged by (community must form committee for this). If you have problems submitting your design, ask a friend with knowledge on editing wikipedia for help.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Preview !! Handwritten !! Associations !! Compose sequence(s) !! Designer !! Link to SVG file !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Bitcoin-proposal-1.png|128px]]&lt;br /&gt;
|| [[File:Hashbtc.jpg|128px]]&lt;br /&gt;
|| hash (#), numeral three (3)&lt;br /&gt;
|| B#, #B, 3#, #3&lt;br /&gt;
|| Wareen&lt;br /&gt;
|| [http://pastebin.com/raw.php?i=MRfcm0Cn Bitcoin-proposal-1.svg]&lt;br /&gt;
|| proposal based on original design idea from [https://bitcointalk.org/index.php?topic=41.msg348274#msg348274 RylandAlmanza] and [https://bitcointalk.org/index.php?topic=25102.msg325489#msg325489 netrin]&lt;br /&gt;
|-&lt;br /&gt;
| [[File:Bitcoin-sign-20110719.png|128px]]&lt;br /&gt;
|| [[file:Img075.jpg|128px]]&lt;br /&gt;
|| double barred dollar sign ($), capital b (B)&lt;br /&gt;
|| B|, |B, B=, =B&lt;br /&gt;
|| Pander&lt;br /&gt;
|| [http://pastebin.com/raw.php?i=XYsc9DeS bitcoin-sign-20110719.svg]&lt;br /&gt;
|| example submission based on [[File:F33980a445.png]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Existing Unicode symbol ===&lt;br /&gt;
&lt;br /&gt;
There is a discussion over [https://bitcointalk.org/index.php?topic=369.0 which Unicode symbol might be the best suited] for bitcoin.&lt;br /&gt;
&lt;br /&gt;
To type Unicode characters, refer to:&lt;br /&gt;
&lt;br /&gt;
* [[Microsoft Windows Unicode Input]]&lt;br /&gt;
* [[How to easily type the circled B symbol on a Mac]]&lt;br /&gt;
&lt;br /&gt;
It has led to the following options:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Proposed character !! Description &amp;amp; Pros &amp;amp; Cons !! Unicode name !! Unicode decimal input !! Unicode hex input&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;฿&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt; || &lt;br /&gt;
* Pros: Gives a currency-like look (it is the symbol for an existing currency, the Thai Baht, but other currency symbols often get reused, like the $); displayed correctly on all known OSes &lt;br /&gt;
* Cons: It is already used for the Thai currency, and might confuse people&lt;br /&gt;
|| THAI CURRENCY SYMBOL BAHT ||  || Alt +0E3F&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;Ƀ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;||&lt;br /&gt;
*Pros: [http://www.ecogex.com/bitcoin/ See the project Ƀ Another Bitcoin identity]&lt;br /&gt;
|| LATIN CAPITAL LETTER B WITH STROKE || ||Alt +0243&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;Ⓑ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;||&lt;br /&gt;
*Pros: Similar to current bitcoin.org logo&lt;br /&gt;
|| CIRCLED LATIN CAPITAL LETTER B ||  || Alt +24B7&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;ᗸ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| Resembles the striked B while being different from Baht symbol ||CANADIAN SYLLABICS CARRIER KHEE || || Alt +15F8&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;B⃫&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;||&lt;br /&gt;
|| LATIN CAPITAL LETTER B + COMBINING LONG DOUBLE SOLIDUS OVERLAY ||  || U+0042 U+20EB&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;B⃦&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;||&lt;br /&gt;
*Pros: Similar to current bitcoin.org logo&lt;br /&gt;
|| LATIN CAPITAL LETTER B + COMBINING DOUBLE VERTICAL STROKE OVERLAY ||  || U+0042 U+20E6&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;ⓑ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;||&lt;br /&gt;
*Pros: Small b represent the unit bit in computer where capital B is Byte&lt;br /&gt;
* Cons: Small fonts are harder to read&lt;br /&gt;
|| CIRCLED LATIN SMALL LETTER B || ||Alt +24D1&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;ᴃ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| || LATIN LETTER SMALL CAPITAL BARRED B || ||Alt +1D03&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;␢&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| || (Unicode Block:	Control Pictures) BLANK SYMBOL (graphic for space) || || Alt +2422&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;币&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| pronounced &amp;quot;bi&amp;quot;, combines &amp;quot;b&amp;quot;, turned &amp;quot;c&amp;quot; and &amp;quot;T&amp;quot;, many Chinese users, also 网民币 - Wangminbi, &amp;quot;The Netizen&#039;s Currency&amp;quot; (pun on Renminbi) || Chinese for &amp;quot;Currency&amp;quot;  || || U+5E01&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;β&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;||&lt;br /&gt;
*Pros: Fluid look and easy to write; Lowercase&amp;lt;br/&amp;gt;&lt;br /&gt;
*Cons: Languages that use this character don&#039;t consider it a B.  in Greek it&#039;s a V, and the German character it resembles is a hard S.&lt;br /&gt;
|| GREEK SMALL LETTER BETA || ||Alt +03B2&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;¤&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| || CURRENCY SIGN ||Alt 0164 ||Alt +00A4&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;Ƅ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;||  || LATIN CAPITAL LETTER TONE SIX || ||Alt +0184&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;∄&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| || (Unicode Block: Mathematical Operators) THERE DOES NOT EXIST || ||Alt +2204&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;ઘ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| || GUJARATI LETTER GHA (Indo-Aryan language)  || ||Alt +0A98&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;ϭ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| || (Unicode Block: Greek and Coptic) COPTIC SMALL LETTER SHIMA || ||Alt +03ED&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;ɸ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| contains 0 and I || Greek small Phi || || U+0278 &lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;∆&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| delta for &amp;quot;digital&amp;quot;  || Greek capital Delta. (In Greek it&#039;s pronounced as the &amp;quot;th&amp;quot; in &amp;quot;then&amp;quot; and not like &amp;quot;d&amp;quot; in &amp;quot;digital&amp;quot;. ||  || U+0394&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;ⓢ&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| Purposed as a smaller unit of bitcoin. E.g. A hundredth of a bitcoin || CIRCLED LATIN SMALL LETTER S  || || Alt +24E2&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;◪&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| || (Unicode Block: Geometric Shapes) SQUARE WITH LOWER RIGHT DIAGONAL HALF BLACK  || || Alt +25EA&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;☺&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| ||WHITE SMILING FACE|| || Alt +263A&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;☻&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| ||BLACK SMILING FACE|| || Alt +263B&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;㋡&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| ||CIRCLED KATAKANA TU&#039; (Japanese)|| || Alt +32E1&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;B⃦&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| || ? || ||&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;big&amp;gt;≡&amp;lt;/big&amp;gt;&amp;lt;/center&amp;gt;|| three bars like three bits &lt;br /&gt;
* Cons: this resembles the letter ksi (Ξ) in Greek and it sounds like &amp;quot;x&amp;quot; in &amp;quot;axiom&amp;quot;.&lt;br /&gt;
|| ? || || Alt + 240 &lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;[[Image:Bat.png|32x32px|alt=The b&#039;at]]&amp;lt;br&amp;gt;&lt;br /&gt;
the b&#039;at&amp;lt;/center&amp;gt;&lt;br /&gt;
||&lt;br /&gt;
* Pros: Is round like a coin. Contains the B for Bitcoin. Borrows a style widelly associated with the internet. Not used for other meanings.&lt;br /&gt;
* Cons: Does not exist in the Unicode standard&lt;br /&gt;
* Cons: Very similar to the existing trademarked Broad logo [[http://www.broad.com/]]&lt;br /&gt;
|| n/a || || &lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;A &#039;C&#039; with &#039;1&#039; and &#039;0&#039; inside [[http://img829.imageshack.us/img829/8840/bitcoinlogodraft.png]]&amp;lt;/center&amp;gt;||&lt;br /&gt;
* Cons: Does not exist in the Unicode standard &lt;br /&gt;
|| n/a || || &lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;A &#039;C&#039; with a &#039;circle&#039; and &#039;dot&#039; inside [[http://img836.imageshack.us/img836/6006/bitcoinlogodraftii.png]]&amp;lt;/center&amp;gt;||&lt;br /&gt;
* Cons: Does not exist in the Unicode standard&lt;br /&gt;
 || n/a || || &lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;[[Image:Bitcoin Symbol Suggestion circled struck-through B.png|20px]]&amp;lt;/center&amp;gt;||&lt;br /&gt;
* Cons: Does not exist in the Unicode standard&lt;br /&gt;
|| n/a || || &lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;[[Image:Bitcoin Symbol Suggestion rotated power.png|20px]]&amp;lt;/center&amp;gt;||&lt;br /&gt;
* Cons: Does not exist in the Unicode standard&lt;br /&gt;
|| n/a || || &lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;center&amp;gt;[[http://hosting11.imagecross.com/image-hosting-61/2381unicode1s.png]][[http://hosting11.imagecross.com/image-hosting-61/162bitcoin_uni_s.png]]&amp;lt;/center&amp;gt;||&lt;br /&gt;
* Cons: Does not exist in the Unicode standard&lt;br /&gt;
 || n/a || || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Promotional graphics]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Ahazred8oc</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=GetBitcoin&amp;diff=37784</id>
		<title>GetBitcoin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=GetBitcoin&amp;diff=37784"/>
		<updated>2013-05-14T14:15:01Z</updated>

		<summary type="html">&lt;p&gt;Ahazred8oc: GetBitcoin is no longer operating&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GetBitcoin was an [[currency exchange|exchange]] service operating from July 2011 to September 2012.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
The service was launched July 3, 2011&amp;lt;ref&amp;gt;[http://forum.bitcoin.org/index.php?topic=25528.0 GetBitcoin - New Site For Exchanging Bitcoin/USD]&amp;lt;/ref&amp;gt;.  The company GetBitcoin LLC is (?) registered entity in the State of Delaware (File# 4997818). Complaints began in September 2012 and the website has been down since then.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* [http://www.thebitcoinreview.com/site.php?site_id=5 thebitcoinreview thread]&lt;br /&gt;
* [https://www.get-bitcoin.com Get-Bitcoin.com] (web site down since September 2012)&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;References /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Exchanges]]&lt;/div&gt;</summary>
		<author><name>Ahazred8oc</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Payment_methods&amp;diff=37669</id>
		<title>Payment methods</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Payment_methods&amp;diff=37669"/>
		<updated>2013-05-09T22:52:17Z</updated>

		<summary type="html">&lt;p&gt;Ahazred8oc: regroup good methods and bad methods&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;When trading bitcoins for other currencies, one issue that frequently comes up is the mismatch between the hardness (non-reversibility) of bitcoin, and the softness (reversibility) of many of other payment methods. This page lists a number of payment methods, hardness ratings, and more detailed info in the notes field. There is a separate section for virtual currencies at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
Hardness goes from 0 (extremely soft) to 10 (completely non-reversible).&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;border: 1px solid #c6c9ff; border-collapse: collapse;&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;10&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center; background-color: #f0f0ff;&amp;quot;&lt;br /&gt;
! Method !! Currencies !! Hardness || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[Bank wire]] || Various || 10 || Very good match for trading bitcoin.  Quick (but expensive) transfers that are not reversible. (Note: be sure the wire has fully cleared. Also can&#039;t hurt to confirm with your bank that they won&#039;t yank it upon sender request without asking your permission.)&lt;br /&gt;
|-&lt;br /&gt;
| Euro SEPA transfer || EUR || 8 || Usually free wire transfer between European banks. Cleared in one working day after the transaction is done. Unauthorized transfers can be reversed. One trader got his bank account closed and an entry in the database of financially unreliable people after receiving a fraudulent transfer.&lt;br /&gt;
|-&lt;br /&gt;
| [[OKPay]] || USD, EUR, GBP, RUB, CHF, CZK, AUD, CAD, JPY etc || 10 || Simple Bitcoin processing service. Completely non-reversible. Support of 19 world currencies.&lt;br /&gt;
|-&lt;br /&gt;
| [[Perfect Money]] || EUR, USD, XAU || 10 || Very good match for trading bitcoin. Absolutely no chargebacks. Funding of Perfect Money e-currency is possible via Bank Transfer and using other methods via third-party exchangers. There is built-in Credit Exchange inside Perfect Money.&lt;br /&gt;
|-&lt;br /&gt;
| [[Liberty Reserve]] || EUR, USD || 10 || Very good match for trading bitcoin. However, it is difficult to get LR funded - it is only possible through third-party exchangers.&lt;br /&gt;
|-&lt;br /&gt;
| Webmoney || USD, RUB, BYR, EUR, XAU || 10 || Very good match for trading bitcoin. Requires funding by bank wire though, which may be expensive for small amounts.&lt;br /&gt;
|-&lt;br /&gt;
| Western Union Money Transfer || ? || 9 || A money transfer can be stopped but once funds are withdrawn as cash there&#039;s little risk&amp;lt;ref&amp;gt;[http://www.ehow.com/how_8059315_stop-payment-via-western-union.html How to Stop Payment Via Western Union]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
|-&lt;br /&gt;
| [[Redeemable code]] from an exchange || USD, BTC || ? || These are generally bearer instruments so the &amp;quot;hardness&amp;quot; would seem to approach a 10 however each exchange that issues a redeemable code may have its own policy.  As these are a fairly new tool, it is not known if any exchanges will refuse to honor a code of their own (e.g., customer claims that the code had been stolen).&lt;br /&gt;
|-&lt;br /&gt;
| [[PayPal]] - regular || Most world currencies || 0 || Extremely easy to charge back. Also, since trading bitcoin is against their ToS, good luck disputing the chargeback. Do not use.&lt;br /&gt;
|-&lt;br /&gt;
| Paypal - personal || Most world currencies || 1-5 || If funded via bank, requires person to dispute the ACH, which may be more arduous. If funded via credit card, requires person to dispute the CC charge, which is pretty easy. Since there&#039;s no way to tell what the funding source was... it&#039;s a gamble. Also, if paypal account is reported stolen, paypal will probably attempt to claw back the money.&lt;br /&gt;
|- &lt;br /&gt;
| Paypal - masspay || Most world currencies || 7? || Mass pay requires funding from paypal balance. Generally much harder to reverse, but not impossible. Probably your biggest worry here is an actual stolen account.&lt;br /&gt;
|- &lt;br /&gt;
| Cash in mail || Any currency || 10 || No chargebacks, obviously. Just check for counterfeit paper. &lt;br /&gt;
|-&lt;br /&gt;
| Cash at bank || Any currency || n/a || Some exchanges (e.g., [[Virtex]] and OTC traders accept cash deposited to an account at a bank.  &lt;br /&gt;
|-&lt;br /&gt;
| Check at bank || Any currency || n/a || Some exchanges accept a check deposited to an account at a bank.&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin || BTC || 10 || While the bitcoin network has no concept of a bitcoin transaction being reversed, there could be the possibility of an exchange or merchant refusing to accept a bitcoin for various reasons (e.g., funds were stolen).&lt;br /&gt;
|-&lt;br /&gt;
| Intra-bank transfer || Any currency || n/a ||&lt;br /&gt;
|-&lt;br /&gt;
| AliPay || CNY || n/a || Though reports of reversed AliPay payments can be found on the Internet, the operator of [[Bitcoinica]] asserts that AliPay transaction are &amp;quot;non-reversible&amp;quot;&amp;lt;ref&amp;gt;[http://bitcointalk.org/index.php?topic=65003.msg763730#msg763730 Bitcoinica now supports Alipay deposit!]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
|-&lt;br /&gt;
| [[UKash]] || many || n/a || A cash-based voucher system. &lt;br /&gt;
|-&lt;br /&gt;
| [[CashU]] || many || n/a || A cash-based prepaid card / redeemable code.&lt;br /&gt;
|-&lt;br /&gt;
| [[TransferWise]] || GBP to EUR || ? || &lt;br /&gt;
|-&lt;br /&gt;
| Neteller || ? || ? ||&lt;br /&gt;
|-&lt;br /&gt;
| [[MoneyPak]] || USD || 7 || MoneyPaks are reversible if claimed stolen. There have been reports where the party attempting to redeem a MoneyPak number has been asked to provide a copy of the receipt used to purchase the MoneyPak. Ask for a copy of the receipt when accepting MP to protect yourself.&lt;br /&gt;
|- &lt;br /&gt;
| Money Order || Many currencies || 5 || A money order can be lost or stolen and there are procedures for reporting that.  Losses could occur even weeks after the check has cleared&amp;lt;ref&amp;gt;[http://www.ehow.com/how_7319971_stop-payment-money-order.html How to Stop Payment on a Money Order]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
|-&lt;br /&gt;
| Personal check || Any currency || 5 || At least in the USA, once a check clears, it is hard to claw back except when fraud is alleged.&lt;br /&gt;
|-&lt;br /&gt;
| Bank ACH || USD || 5 || Sometimes referred to a type of ACH transaction, a direct deposit. Though not very easily, ACH can actually be clawed back if the transaction was the result of fraud.&lt;br /&gt;
|-&lt;br /&gt;
| [[Popmoney]] ACH || USD || 5 || Since Popmoney transfers occur via ACH, Popmoney will reverse payments if the funds were the result of fraud. &lt;br /&gt;
|-&lt;br /&gt;
| [[ING Person2Person]] || USD || 5 || Since Person2Person transfers occur via ACH, ING will reverse payments if the funds were the result of fraud. &lt;br /&gt;
|-&lt;br /&gt;
| [[Pingit]] || UK || 5 || Barclays will reverse payments if the funds were the result of fraud. &lt;br /&gt;
|-&lt;br /&gt;
| Interac e-Transfer || CAD || 3 || A funds transfer service between personal and business accounts at participating &lt;br /&gt;
Canadian financial institutions.  In cases of identity theft the transfer may be reversed, especially if both parties are with the same financial institution&amp;lt;ref&amp;gt;[http://bitcointalk.org/index.php?topic=118631.0 Is Interac e-transfer a good way of trading bitcoins?]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
|-&lt;br /&gt;
| Chase QuickPay || USD || 3 || Chase has reversed legitimate transactions as the result of anti-fraud measures&amp;lt;ref&amp;gt;[http://forum.bitcoin.org/index.php?topic=11494.0 Chase QuickPay NOT RECOMMENDED]&amp;lt;/ref&amp;gt; requiring the sender to be trusted to re-pay.  The sender can also request a reversal after submitting an affidavit alleging that fraud occurred.&lt;br /&gt;
|-&lt;br /&gt;
| Amazon Gift Card || various || ? || 4.	Fraud.&lt;br /&gt;
	Amazon.com will have the right to close customer accounts and bill alternative forms of payment if a fraudulently obtained Amazon.com Gift Card is redeemed and/or used to make purchases on amazon.com or any of its affiliated websites set forth above. (http://www.amazon.com/gp/gc)&lt;br /&gt;
|-&lt;br /&gt;
| [[Dwolla]] || USD || 3? || Since Dwolla amounts are funded via ACH, Dwolla will now reverse payments if the funds were the result of fraud.  Additionally, Dwolla&#039;s Terms and Conditions now state that peyments received are subject to chargebacks as the result of their internal dispute resolution process&amp;lt;ref&amp;gt;[http://www.bitcoinmoney.com/post/8067352221 Dwolla&#039;s New Terms: &amp;quot;receiving party may be subject to chargebacks&amp;quot;]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
|-&lt;br /&gt;
| [[Serve]]|| USD || 0 || Extremely easy to charge back.&lt;br /&gt;
|-&lt;br /&gt;
| [[AlertPay]]|| Many currencies || 1 || Because payment may be made using a credit card a charge back is easy.  Doing so however will cause the account to be closed.&lt;br /&gt;
|-&lt;br /&gt;
| [[Skrill|Skrill (Moneybookers)]] || ? || 0 || Chargebacks are possible.  Accounts have been terminated when this payment method was used for a Bitcoin trade.&lt;br /&gt;
|-&lt;br /&gt;
| gift cards || various || 0 || Chargebacks are possible. Applies to retail store, VISA, and most other gift cards. Do not use.&lt;br /&gt;
|-&lt;br /&gt;
| Credit / Debit card || Any currency || 0 || Dead easy to charge back&amp;lt;ref&amp;gt;[http://blog.unibulmerchantservices.com/visa-chargeback-reason-codes-and-time-limits Visa Chargeback Reason Codes and Time Limits]&amp;lt;/reF&amp;gt;, &amp;lt;ref&amp;gt;[http://blog.unibulmerchantservices.com/mastercard-chargeback-reason-codes MasterCard Chargeback Reason Codes]&amp;lt;/ref&amp;gt;. Do not use.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Virtual Currencies ===&lt;br /&gt;
{| style=&amp;quot;border: 1px solid #c6c9ff; border-collapse: collapse;&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;10&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center; background-color: #f0f0ff;&amp;quot;&lt;br /&gt;
! Method !! Currencies !! Hardness || Notes&lt;br /&gt;
|-&lt;br /&gt;
| In-game || SLL || 5 || There may or may not be a dispute process if a user claims a transfer was done against the TOS. SLL originally bought from unauthorized sources (stolen CC, hacked PP) may be deducted from a users SLL balance.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Secure Trading]]&lt;br /&gt;
* [[Digital currency]]&lt;br /&gt;
* [[:Category:Money transmitters|Money transmitters]]&lt;br /&gt;
* [http://stakeventures.com/articles/2012/03/07/the-may-scale-of-money-hardness-and-bitcoin The May Scale of Money Hardness and BitCoin]&lt;br /&gt;
* [[Mobile Payment Apps]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Financial]]&lt;/div&gt;</summary>
		<author><name>Ahazred8oc</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=BIP_0039&amp;diff=37506</id>
		<title>BIP 0039</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=BIP_0039&amp;diff=37506"/>
		<updated>2013-05-04T06:01:56Z</updated>

		<summary type="html">&lt;p&gt;Ahazred8oc: wikifying / BIPifying the stub&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{bip}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  BIP: BIP-0039&lt;br /&gt;
  Title: Mnemonic code for deterministic keys&lt;br /&gt;
  Author: Pavol Rusnak &amp;lt;stick@gk2.sk&amp;gt;, Marek Palatinus &amp;lt;info@bitcoin.cz&amp;gt;&lt;br /&gt;
  Status: Draft&lt;br /&gt;
  Type: Standards Track&lt;br /&gt;
  Created: 14-02-2013&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Abstract==&lt;br /&gt;
&lt;br /&gt;
This BIP proposes a scheme for translating binary data (usually master seeds for deterministic keys, but it can be applied to any binary data) into a group of easy to remember words also known as mnemonic code or mnemonic sentence.&lt;br /&gt;
&lt;br /&gt;
==Motivation==&lt;br /&gt;
&lt;br /&gt;
Such mnemonic code or mnemonic sentence is much easier to work with than working with the binary data directly (or its hexadecimal interpretation). The sentence could be writen down on paper (e.g. for storing in a secure location such as safe), told over telephone or other voice communication method, or memorized in ones memory (also called as brainwallet).&lt;br /&gt;
&lt;br /&gt;
Draft and reference implementation is under construction here: https://github.com/prusnak/mnemonic/blob/master/BIP_0039.txt&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer]]&lt;br /&gt;
[[Category:Technical]]&lt;br /&gt;
[[Category:BIP|D]]&lt;/div&gt;</summary>
		<author><name>Ahazred8oc</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:Bit_Gold_proposal&amp;diff=37490</id>
		<title>Talk:Bit Gold proposal</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:Bit_Gold_proposal&amp;diff=37490"/>
		<updated>2013-05-03T05:28:05Z</updated>

		<summary type="html">&lt;p&gt;Ahazred8oc: /* Nick Szabo&amp;#039;s place in the timeline */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;How to transfer and prevent double-spending is described in a linked article [http://szabo.best.vwh.net/securetitle.html secure property titles.]  This describes a Byzantine-replicated chain of transfers.&lt;br /&gt;
&lt;br /&gt;
== Nick Szabo&#039;s place in the timeline ==&lt;br /&gt;
&lt;br /&gt;
Szabo says he worked on the concept &amp;quot;in 1998 (at the same time and on the same private mailing list where Dai was coming up with b-money -- it&#039;s a long story)&amp;quot;, and described it again in December 2005: http://web.archive.org/web/20060329122942/http://unenumerated.blogspot.com/2005/12/bit-gold.html http://unenumerated.blogspot.com/2011/05/bitcoin-what-took-ye-so-long.html - [[User:Ahazred8oc|Ahazred8oc]] ([[User talk:Ahazred8oc|talk]]) 05:28, 3 May 2013 (GMT)&lt;/div&gt;</summary>
		<author><name>Ahazred8oc</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=User:Ahazred8oc&amp;diff=37471</id>
		<title>User:Ahazred8oc</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=User:Ahazred8oc&amp;diff=37471"/>
		<updated>2013-05-02T22:07:56Z</updated>

		<summary type="html">&lt;p&gt;Ahazred8oc: Created page with &amp;quot;helloworld (leave a message)&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;helloworld (leave a message)&lt;/div&gt;</summary>
		<author><name>Ahazred8oc</name></author>
	</entry>
</feed>