Some Musings about Creating Your Own Currency – Interview with Chris Robison, Part 2

In a Discord chat I had with Chris, I try to figure out how to use meTokens, and what are the value dynamics around a personal token. I find that to get the most out of this token, nothing beats having a solid reputation and personal brand. In other words – it is one of many possible funding systems.

(I actually use a different chat handle IRL)

[10:57 PM] chiwbaka: I just added collateral to the tune of 0.1 ETH to my token, but it says the Total Supply is 1000 - same as before. Is this supposed to happen?
[11:00 PM] CBobRobison | meTokens: Yes. If you add collateral, you're only increasing the amount of ETH backing the already existing meTokens. If you want to increase the supply, then you'll need to buy/mint new meTokens
[11:25 PM] chiwbaka: I thought my collateral was supposed to be my time/services? @CBobRobison | meTokens

Continue reading Some Musings about Creating Your Own Currency – Interview with Chris Robison, Part 2

Why You Should Create Your Own Currency, according to meTokens creator Chris Robison


* 1. Introduction
* 2. Personal currencies – plausible?
* 3. Examples
* 3.1. Dance Teacher
* 3.2. Photographer
* 3.3. Software developer
* 3.4. Models
* 3.5. Doctors
* 3.6. Journalists/historians
* 3.7. Film directors
* 4. Final Thoughts

1. Introduction


In this pilot installment of Chiwbaka’s Chainterviews, Chris Robison, the founder of meTokens, discusses a truly out-there concept – making your own personal currency. He also gives several examples of how dancers, teachers, musicians, film directors and artists of all kinds can benefit from this strange new invention.

Fittingly he now has his own token, $CBOB! Each CBOB is worth 0.0038EUR as of the time of publication. I wonder what this means…

Continue reading Why You Should Create Your Own Currency, according to meTokens creator Chris Robison

How does Bitcoin pooled mining work?

Economics Behind Mining

To understand how mining really works, let’s first understand the economics behind it.

The network of computers running the coin software (let’s say Bitcoin) wants history (of transactions) to be recorded in the form of blocks, and it rewards those who do so with 12.5 BTC.

Bitcoin wants history to be recorded in a new block every 10 minutes. Additionally, since anybody could record history in a new block, it has to make sure that those who invested the most (electricity, stake, capacity etc) have a better chance of recording a new block, because those who invested the most are probably more interested in seeing Bitcoin work properly, as opposed to those who are trying to spend their Bitcoin twice.

Since recording a new block has a reward associated with it, and a new block mustn’t appear too often, and those who write history may have nefarious intents, there is a need to make recording a new block artificially difficult. This is mining/Proof of Work.

Continue reading How does Bitcoin pooled mining work?

The Concept of State in Blockchains

While working on the code that makes up an actual cryptocoin, I’d always come across a class or something that would refer to a ‘State’. And I never really knew what that was.

Was that the state of the coin’s network, on the latest block? The state of that node perhaps – but how could the node have a valid state when it’s still busy downloading the blockchain?

It wasn’t until I read Ethereum’s whitepaper that the concept of state was formalized: it’s the state of the coin as your node sees it, with the blockchain data it has on your computer.

Should your node not have the latest blocks, well then your node’s state is out of date, and it needs to download more blocks and recalculate the new state from that.

Bitcoin’s state is very simple. It is simply which addresses have how many coins, or the Unspent Transaction Outputs (UTXOs). The blocks don’t have any information about the state; the Bitcoin client must calculate its own state based on the private keys it has in its wallet, and from what it has downloaded of the blockchain.

Ethereum blocks include the state in them, in that each block header holds a hash of the state tree’s root, as well as hashes of the transaction and storage trees’ roots (you wouldn’t want blocks to always have a full copy of the state. That would be a waste of space. So you store them in a tree structure, where the branches can point to data (leaves) in older blocks). What’s in an Ethereum state? 1. The account’s nonce (each time you send a transaction from this account, the nonce increases by 1. This is to prevent double spending) 2. The account’s balance 3. storageRoot (data and Solidity programs go in here) 4. codeHash (what is this?)

Remember when you had to download that huge Bitcoin blockchain and wait for it to be synced up to the latest block just to know how much Bitcoin you have? In Ethereum, because the state is always stored with the block in this manner, you can just get the latest block, traverse the state tree (which points you to other blocks in the history that are relevant to your account) and you can get your balance much faster.

It seems many people like the idea of storing the state in blocks, since QRL also stores the state. The State in QRL consists of (for each account):

  1. The account’s nonce (this is everywhere. I wonder if Bitcoin accounts also have this) 2. The account’s balance 3. a list of public keys that this account used before, to prevent them from being used again (One Time Signatures are what protects us from quantum computers) 4. a list of staking accounts (this is a PoS coin)