Week 2 with ethereum

I’ve been significantly distracted this week but have had some time to work through some of the problems that Catallax needs to overcome to run on top of ethereum.  It has mostly been a series of ideas and discoveries of how those ideas aren’t going to work.  I’ll outline them here in case anyone has a readymade solution sitting in a private git repo that they’d like to share.

The Random Draw

The first idea was an outgrowth of a side project I’m working on.  The concepts of hypercatallaxy are not intuitive.  I’ve written and run a number of computer models and it is still hard for me to do the nth order thinking that one needs to do to ‘think in catallaxy.’  As a solution I’m trying to build a board game to help people get acquainted with the concept.  This idea sprang from playing Ticket To Ride with a friend’s teenager and seeing them grok the concept of delayed gratification.

The board game operates on a slightly different principle than hypercatallaxy, but I think it gets the point across. It also happens to be more ‘fun.’  In standard hypercatallaxy, for every dollar you pay out you get a pref in the receiving account’s pref pool.  When their cash pool decays the decay fee is paid out to the owners of the pref pool in proportion to their ownership in the pool.  Digital currency makes this possible because we have lots of decimal places available due to the concept of divisibility.  Lots of decimal places don't translate to a board game well where your smallest unit is probably $1.

To get around this I’ve created a pretty cool game concept where each player has their own ‘blockchain bag’ that is basically like a color coded crown royal bag.  Every time you pay another player some cash, you put an equal number of poker chips in their bag that match ‘your’ color.  Whenever they have to pay a decay fee, instead of doing a bunch of math, they break down their decaying cash into a few small but equal piles of cash.  They then draw a poker chip out of their bag for each stack of cash and give it to the player who’s chip is drawn.  It follows that if you have paid more to a player than the other players in the game that you will have a higher chance of claiming a stack of cash.  This adds the same line of thinking that one would need in a hypercatallax economy.

Last week I talked about how it was going to be too expensive to distribute out the cash from a catch-up process on chain because one catch up may have to update the balance of 10,000 accounts.  It occurred to me that I could use this random draw method to solve this problem.  If you are catching up 5 days worth of decay, we could do 5 random draws and send the cash to the winners.

It wouldn’t be pure hypercatallaxy, but it would be enough to do a decent POC on the ethereum chain.  All we would need was 1. A quick way to figure out who owned the winning number that was drawn and 2. A way to draw a winning number.

Search Trees

To solve our first problem of who owns a number we need to iterate over every transaction that has come into an account until we find out who has pad the nth dollar where n is the winning number.

Here we run into another problem with ethereum calculation costs.  Each lookup of a variable costs gas.  We could probably get away with this for accounts that have done a small number of transactions, but once we get into big numbers we are going to blow past the gas limit before we find our winning number(sometimes).

This problem is much less expensive than writing updated balances to the blockchain for all accounts, but it is still not realistic.

One possible solution is to use a form of data structure called a binary search tree.  There are all kinds of binary search trees, but I could find very few that were actually available in ethereum.  I did find this but had trouble getting it to compile.  If you have a self-balancing search tree algo sitting around in solidity that you’d like to share, please point me in the right direction.

The idea would be that upon each transaction we would push a node onto the tree that was something like:

struct Node {

       mapping (bool => uint) children;

       uint parent;

        uint maxValue;

        uint minValue;

        address winner

}

The magic comes in when trying to keep the top node as much in the center of your possible values.  I’m not sure if the fact that our new nodes would always have a maxValue higher than all existing nodes would simplify the code or not.

Solving this problem would get the search down to a much more restricted set operations and make the search for the winner much cheaper.  We’d pass the winning number into the top of the tree and it would cascade down the tree until it found a node where it was between min and max value. That is the winner.

Unfortunately, this wouldn’t solve our other problem.

Randomness with Ethereum

Randomness with ethereum is apparently really complicated.  One of the best solutions seems to be this proposal called the randao:  https://github.com/randao/randao

Reading this pretty much makes my head spin.  The big problem is that if a miner doesn’t like the result of your random number generator, they can just not file the block and try again.

This just seems to be a problem with deterministic computing.  It is deterministic.  Randomness that you can’t cheat is really hard.

Transparent Computing

This leads me back to square one and where I was last week looking at TrueBit[https://truebit.io/] and the possibility of doing a bulk of the calculations and data storage off chain.  I spent some time this week reading their white paper and I just kept coming back to the question of ‘does it really need to be this complicated?’

I mean, I get that it does and that crypto isn’t simple.  If you want things to really be trustless you have to jump through a ton of hoops.  But I got to thinking..

What if you didn’t need to be trustless but just needed to be trusted?  Part of what is cool about TrueBit is that anyone can run a calc and if there is some dispute you run some pieces of the code on the main chain for validation.  This makes a ton of sense in a trustless environment, but what if I just want to establish trust?

If I publish a beginning state, a set of code, and a result and sign this set as an authority, it should be pretty easy for people to trust me.  In effect this a subset of what ethereum itself does.  These inputs + this code + this call = this result.

I think I can accomplish this by doing a kind of half-TrueBit.  I haven’t gotten very deep down the rabbit hole yet but I think I may spend some more time thinking about this last option this week.

What if the on chain stuff was a pointer to a publicly available start state, a publicly available contract, a function call, and a signed final state.  In this scenario we could run all of our calcs against a test rpc ethereum virtual machine and just ignore the gas limit.  As long as we can’t overwrite the code and or state used in each transaction anyone with a evm could reverify that we hadn’t lied about our current state(which itself is just a pointer to a publicly available state).


Let me know what holes you see in this and if you have any insight into loading states into evms and persisting the results, let me know too.

Donations always accepted at:

BTC: 1AAfkhg1NEQwGmwW36dwDZjSAvNLtKECas

ETH and Tokens: 0x148311c647ec8a584d896c04f6492b5d9cb3a9b0

A week with Ethereum

The past week has been a fun one as I’ve started trying to actually write some ethereum code and figure out if the eco-system is ready for me to try to build on top of yet.  My very high-level priorities are currently:

  1. Figure out if I can build a decaying currency as prescribed by hypercatallaxy on ethereum.

  2. Figure out how to integrate this system with existing payment networks in a way that gives the Catallax card an unfair advantage over other kinds of payment networks.

  3. Figure out how to build the governance model as described in my book “Immortality” on the ethereum blockchain.

  4. Figure out how to transition from a “benevolent dictator” model to the created governance model in a trustless way that makes sense for system stability.

This week was all about #1.  I don’t have any code to post yet, but I did make some significant discoveries that I think will be productive:

Ethereum transactions are expensive.  

They are not as expensive as bitcoin transactions, but still expensive enough that building out all the infrastructure in blockchain storage is just not really an option at this point.  Writing a piece of data (address-> unit) looks like it can cost about $0.008. This is not that bad unless you are catching up and trying to send a couple dollars of demurrage to the 10,000 accounts that in your pref table.  Then all of a sudden you are updating 10,000 address -> uint pairs and this is going to cost you $80 to distribute $2 in decay.  This obviously won’t work right now.  Moore’s law says this probably won’t work for 12 years if gas costs track computing power.

Storing Data Off Chain

The solution looks like it may be storing data off chain.  Your pref map and even your balance may end up needing to be off chain in some trustless data structure.  TrueBit looks like the leader in the clubhouse here.  Because of the way hypercatallaxy works we should be able to structure code in such a way that current balances are deterministic given a set of transaction operators.  TrueBit lets any number of solvers run our code for us and update the blockchain.  If they try to lie, verifiers can force them to prove their calculations and take a large reward if they catch a cheater.  There are a bunch of things to work through here, but my current thoughts are that the Ethereum based part of the problem may end up just being a linked list of structs that track:

transactionType: uint (these will be coded in solidity based code so EVMs can run the transactions)

transactionHash: byte32 (this is a signature proving that the msg.sender created the transaction)

transactionLocation: byte32 (this is an ipfs hash pointing to a location where the json of the transaction detail can be publicly retrieved and verified with the has

I’ve just started thinking through this so there may be some more variable needed, but this kind of structure should get recording transaction down to a few cents and that is way more manageable.

If you have any insight or sample projects that have done this kind of structure where most of the data is kept off chain, let me know where to look.  Source code is a super bonus.

Next Steps:

I think I’m going to be learning a lot about Merkle Trees and roots and how those can be recorded once and then used as verification.


I’m also meeting with a card processing company that may have some insight on how I can set up goal #2. If nothing else I’ll have some expectation of the costs involved and be able to do some of the math necessary to figure out if the 0 transaction fee is going to be feasible or not.

Donations always accepted at:

BTC: 1AAfkhg1NEQwGmwW36dwDZjSAvNLtKECas

ETH and Tokens: 0x148311c647ec8a584d896c04f6492b5d9cb3a9b0

Rice's Business of the Blockchain Conference

This week I had the pleasure of attending the Rice “Business and the Blockchain” conference in Houston, TX.  It isn’t every day that we get a blockchain conference in Houston and it was really nice to get to see my kids and go to a conference in the same week for once.

I had two main agenda items at this conference:

Promote my new blockchain book “Immortality:  A moral and economic framework toward immortality” (more: http://catallax.info/news/2017/4/23/my-new-book-is-out-and-it-is-called-immortality).
Get caught up on the advances that ethereum has made in the couple of years that I’ve been distracted with my day job.

The first item went pretty well. I handed out a lot of cards.  I can now say that I won’t get skunked on my book sales.  I don’t think I’ll be on the New York Times bestseller list anytime soon, but what can you expect from a book on moral philosophy, economics, and a pie in the sky proposal for new money. I’m looking forward to getting feedback from those of you that bought a copy.

The second item was a success as well.  Of particular promise were the concepts of state channels and the many tools that ConsenSys are building to address real problems with the Ethereum blockchain.  Specifically, Infura and Uport look like they may have some specific applications to what I want to do with Catallax immediately.  Infura provides a number of support functions in the way that Gem does for BTC and Uport looks like it may be a great tool for collecting KYC data for banks that may operate on the Catallax system.

Overall the conference was run really well.  Everyone was well fed and the breakout session system for Q&A worked really well except when they would cluster 4 really great speakers together where I wanted to go to all 4 Q&As and then follow it up with 4 speakers that had less relevance for me.

A few action items came out of the meeting that have specific relevance for the next steps of Catallax and, specifically, the Catallax Card:

Start writing some contracts.  They don’t have to be perfect, but until the something is on paper I’m not going to be able to just learn by osmosis.
Research payment options.  Apparently, there are some new players in the payment space that may make issuing a card much more of a feasibility than it was before.
Review Contract Patterns.  The concept of an ERC20 token was thrown around quite a bit and I now know what that is.  Many folks are publishing their contracts (Augur has a set of 37 of them in their latest offering) and there is a lot to learn about the patterns being used.  If I have any insights I’ll publish them here.

I was less interested in many of the enterprise level integrations and my feeling is still that a good old database is sufficient for all but the most nefarious of consortia.  Blockchain is a great buzz word and if you can use it to sell some software to fortune 500 companies then more power to you.  Perhaps as I dig a little deeper I’ll see more relevance to the enterprise world.

If they run it again next year I’ll be back.  Hopefully next year we will be presenting Catallax as the next significant blockchain innovation.


 

My new book is out and it is called: Immortality

In 2014 Lawrence Lessig asked the Mayday PAC to help him fix ‘money in politics.’  At one point during the crowdfunded campaign, when it looked like it would not meet its goal, I asked myself the following question:

‘If we can’t fix money in politics, can we fix money?’

The exploration of this question led to my formulation of the democratic hypercapitalism framework, this site, and a speculative manuscript that I called ‘Art and Democratic Hypercapitalism.’  The initial feedback that I received led to a couple of issues:

  1. Someone suggested that what I was really talking about was catallaxy and not capitalism so the name changed from hypercapitalism to hypercatallaxy.

  2. People kept asking why I wanted to do something like this.  What was the deep why that the what of hypercatallaxy answered.  This led me to go back to the drawing board and answer this question.

The result of the second question put the entire venture into dormancy while I pursued some other business opportunities and spent my spare time trying to answer the question of ‘Why?’

I finally have my answer and it is available today in my book Immortality.  The subtitle of the book is ‘An Economics and Moral Framework Toward Immortality.’  It is a study of the intersection of the moral quandary that our postmodern world finds itself in and the vast potential of the results of current scientific inquiry.

It turns out that the answer to why we need to change the kind of money we use is because it is good and right to do so.  By doing so now, we can speed the oncoming reality of much longer lives.  It may be too late for us to participate in this reality, but it may not be too late for our grandchildren.  I try to pitch a vision of the future that is highly anti-fragile to the volatility that we face as a human race and propose a moral framework, a form of money, and a political structure to support this vision.  The book mixes and extrapolates a number of ideas from Robert Pirsig (Zen and the Art of Motorcycle Maintenence), Christopher Alexander(A Pattern Language and The Nature of Order), Nassim Taleb (Anti-Fragile and Fooled by Randomness), and Eliezer Yudkowsky(Harry Potter and the Methods of Rationality and Rationality: AI to Zombies).  

The book can be purchased in physical form on Amazon here.

On kindle here(free for Kindle Unlimited Users).

And on the web here.

You can comment and ask questions on github here.

And you can view the source and history of the book on github here.

If you find something interesting and would like to help further the research please consider supporting my Patreon here.

My hope is to build out a set of smart contracts that implement the ideas in the book, publish a set of ongoing blog posts, and a podcast series where I explore these ideas with others in the community.

I take pull requests, so if you have some suggestions or corrections, please fork and submit pull requests.

 

Hacking Paul Graham’s Vision of the Future with Hypercatallaxian Economics

A published model of hypercatallaxy

tldr: Prove hypercatallaxy to yourself with a simulated economy here.

This article assumes you are familiar with the basics of hypercatallaxy, most of which are presented at http://catallax.info and discussed in depth in my book Immortality.

The main thing we will focus on today are the ideas of demurrage or the decay fee and the idea of the preferred stock that is exchanged with each and every cash transaction in a hypercatallaxian economy.

Intro

As a short review, if I buy a bottle of wine for $10, I get the wine and 10 ‘shares’ in the wine merchants account.  If that $10 sits in his account for 1 year at a 12% decay rate, I will receive back $1.20.  If he spends the money, he gets 10 shares in someone else's account and I only get 12% of his $1.20.  This is recursive and cumulative so eventually I will see most of my cash back.

Many stop here and either don’t believe me or think I’m doing some funny math.  I’ll be the first to admit that I’m not great at the maths.  I’m trying to get better and I’m specifically looking for someone interested in mentoring me through the relevant bits.  What I am decent at is computer programming and building models, so in this article I’m going to publish a very basic model that will hopefully be intriguing enough to get some people to PAY ATTENTION and help me move the ball toward the goal.

The argument against capitalism that I put forward is that while it does a great job of rewarding capitalistic investment, and to an extent capitalistic banking, it does a poor job of leveraging the general economic buying and selling that goes on in the economy.  Investors seek value creation, but consumers are just interested in the ‘best deal’ irrespective of the producers potential future value creation.

For example, take two apples priced at $1.00 and $1.01.  Apple 1 is made on a farm that abuses laborers, abuses its soil, and is generally poorly run.  Apple 2 is made on a farm that uses sustainable methods and is just in general a ‘better’ apple farm.  It is clear that apple farm 1 will likely be out of business within the year, but the consumer doesn’t care.  They buy apple 1 because it is cheaper for the same commodity.  It would be better for everyone if you bought 2, but you aren’t going to.  You have no incentive too.

This is a problem and now I have the model to prove that it is a problem.  And it is a potentially huge problem.  If we can fix this problem we can drastically increase our GDP.

The Model

Here are the assumptions of this model:

  1. Some nodes are better than other nodes at extracting rent for a good.
  2. Some nodes are better than other nodes and noticing the potential for cash transferred to another node.  In other words, I’m better than you at investing in wine makers because I was one for 10 years and you just buy wine at the store.
  3. Standard capitalism just refreshes capital at nodes that succeed in #1, and nodes that use #2 to invest.  Hypercatallaxy uses all economic activity when refreshing nodes in #2.

My theory is that is that the more you refresh the nodes that are good at producing value and the nodes that are good at seeking value, you will have a more robust economy with much higher growth.

Nodes in #1 are refreshed by people buying and selling goods that they value.  If a node attracts revenue then it will have more resources to create value.

Nodes in #2 are refreshed in hypercatallaxy by charging the decay fee in an account and passing it back to those that paid into the account in proportion to how much they paid into the account.

Therefore I take a set of node N1...9 and assign each node an Economic Rent production value and a p(Reason) value.

The pER is the rate at which that node produces Economic Rent on top of a sale.  So if someone is going to buy my good worth $1 and and my pER is 0.94, I will sell it for $1.94 (1 + pER) * amount.  In this way the rich get richer.  If you are good at producing economic rent you are going to make a lot of money.  I am not making a judgment about whether the economic rent is good economic rent or bad economic rent, just that it is charged.  I set these up in a natural distribution centered around n5.

The pReason value is the probability that a node will spend its money with a worthwhile node.  This is a nodes ‘investment sense.’  Some of us are better than others at looking at who has made something and being able to make some predictions about their future earning potential.  Some of us are Warren Buffet and some of us are Mr. Magoo.  In this model the reason is a straight line increasing as we increment n.  This is what we end up with:

Node, pER, pReason
n0, 0.01, 0.00
n1, 0.05, 0.10
n2, 0.19, 0.20
n3, 0.47, 0.30
n4, 0.80, 0.40
n5, 0.96, 0.50
n6, 0.80, 0.60
n7, 0.47, 0.70
n8, 0.19, 0.80
n9, 0.05, 0.90

n0 is dismal.  It can produce barely any rent and has no reason.  It will spend without prejudice.  n5 is a rockstar capitalist.  It can produce massive rents and it has reasonable reason.  n9 can’t produce much rent but almost always makes good decisions.  You are free to fork the code and change these up and/or hotwire them.  I felt like this gave me a good base to work with.

We are going to let our nodes participate in an economy for 300 months(25 years).  Each node will have to spend $50 a month on necessities or it will suffer a ‘poverty month’.  Poverty months are not fun.  In addition to the $50, nodes will spend some ‘disposableCash’.  To get disposable cash I subtract a years worth of expenses from a nodes balance, and then divide the result by 12.  In other words, after expenses, they can spend about 1/12 of their cash.  In reality we pick a random percent between 25-75 to pick how much they spend.

Which node they spend their cash at is determined by their reason.  They have pReason probability of picking the node that produces the most value(Economic Rent).  If they fail, they move down a rung and test again.  If they get all the way to the end they just pick a random node.  As a result, a node with great pReason will spend most of their cash over the 25 years with firms that are great at producing Economic rent.

After each month we do the demurrage or decay calculation and pass cash back to the nodes that seeded the cash in a node according to the ideas in hypercatallaxy. Now the interesting thing about capitalism is that it is just hypercatallaxy with a 0% demurrage rate and a 0% tax rate(We are ignoring taxes in this model).  So for capitalism we just set the demurrage rate to 0.  

We are giving all capitalist consumers the benefit of the doubt that they make decisions based on reason.  I’ve run the simulation without reason and when I do I end up with a 16% decrease in GDP when consumers are not incentivised to use reason.  Poverty actually went down because the disbursement of cash was more random.  I wasn’t expecting to discover this as it really gives us a reason to debate if we want to use reason or not because it may lead to short term poverty when the really, really unproductive nodes begin to be ignored by the market.  I’m not totally convinced this is a  bad thing though.

In the end I contend that ‘reason’ is amplified by the decay fee and pref dividends.  We certainly have some incentive to use reason in our consumption(although currently it is mostly guilt), but having the hypercapital system will amplify this.  This model may not accurately represent the exact flows of this kind of reason, but I think it does a good job of simulating the outer bounds and we can use these to reason within.

This is not supposed to be a ‘realistic’ model of the economy.  That being said, it is AN economy and I think it is reasonable to say that it is a decent representative economy.  I can and must keep building more detailed models with more nodes, taxes, money supply growth, innovation, etc, but I have to start somewhere.

I give each node $1000 to start out with.  Let’s take a look at the results.

Poverty

The first result to take a look at is poverty.  Some of these nodes are going to run out of cash and not be able to buy necessities.  Now I’m all for free markets but I’m also generally against hunger.  I’d love a system that just intrinsically takes care of this and I’ve tried to put that into hypercatallaxy.  I wasn’t sure that it would reduce poverty, but the results seem to bear it out.

We see in this chart that the amount of poverty is significantly reduced as we redistribute wealth in a manner that sends it back to those that spent the cash with the wealth generators.

Our model only has 3,000 months in it. The fact that over ⅓ of them end up being poverty months under standard capitalism makes this a pretty sorry economy. As you can see here, the increase in decay fee has a profound effect of poverty.  I don’t know if politics and good sense could endure a 60% decay rate, but with it we cut the poverty rate by over 50%.

Increasing GDP

This is a nice result but it doesn’t speak to my initial prediction that the economy will grow.  After all, we could just do some redistribution via taxes and get a similar result.  So let’s look at GDP

Increasing the amount we redistribute to optimized value seeking nodes increase the GDP of our economy.

We can see here a clear increase in GDP as we increase the decay fee.  This is the result that I expected when I proposed the model.  How can this be?  When you remove cash from those that have it and give it to anyone you may not see this increase, but when you take it and give it to people that are good at spending it with value creators you increase GDP.

We can see how much below:

Our model shows some increase at each step in the increase in decay fee.

The total increase in GDP when we go to 60% is 8.2% in GDP over 25 years.  This is an increase of an average of 0.3% per year.  This does not seem like much until you consider that since the 90s we’ve been averaging around 2.5% this is a 12% increase in GDP which ends up being huge.

At this point I hope it is clear that using this type of redistribution is worth exploring further and potentially interesting enough to implement. I wish I could use this kind of money today.  

Control Group

We’ve missed one key consideration of science.  It is one thing to compare a 0% decay fee to a 20% decay fee in a hypercatallaxy context.  We haven’t yet compared a different form of redistribution to the hypercatallaxy form of redistribution.  The form of redistribution I chose to compare it to was even distribution.  I implemented a wealth tax equal to the demurrage rate but instead of distributing based on hypercatallaxy, I did an even redistribution.  When I first ran this in the model I was floored because it basically negated my theory.  It looked like this:

If we used reason in picking where we spend our money, we would not need hypercatallaxy.  The market does not use reason and instead seeks the best immediate value without regard to the future value of production.

It took me a while to realize that this scenario still relied on our consumers using reason, but by removing hypercatallaxy I’m removed the driver of reason.  If your redistribution is going to be even, why would you focus your spending with firms that promise future value?  I added some code to apply the even redistribution without the driver of reason and received the following:

An increase in taxation when there is no reason to the market leads nowhere.

The first thing we notice is that GDP starts about 16% below where it started when we used reason.  This makes sense.  If people are not spending their cash with value creators then the value creators won’t be making enough money.  We see here the redistribution has little to no reliable effect on the GDP.

Conclusion

After reviewing this model I think it is clear that the the adding a driver to use reason is a reliable way to increase GDP.  If you agree I’d encourage you to read up on more of my ideas at hypercapital.info and help me out with the kickstarter.  The worst that can happen is you end up with a cool shirt.

I have published this model at http://runnable.com/VTBkszswv6lIdEFR/hypercapitalism-sample-economy-for-node-js-and-hello-world

This model is currently in ‘monte carlo’ mode where it will generate random numbers and create wacky economies.  The goal is to show that most economies benefit from hypercatallaxy.  If you find one that doesn’t let me know.  The ones that don’t seem to benefit are the ones where everyone has a pretty much even ability to generate economic rent.  This makes sense as this is negating our assumption that some people are better value producers than others.  As a bonus, in these scenarios, poverty is usually eliminated even as GDP stays fairly flat.

If you want to run the standard test from above, you will need to follow the comments in the top of the server.js file.

Have fun and let me know how your testing goes.

Hypercapitalism: What you think about money is wrong*

*And by wrong I mean biased.  Which is ok because everyone is biased.  But we need to fix it anyway.

There are a lot of hurdles to getting a functioning version of hypercapitalism working in the wild.  One of the first of these is very, very human. Cognitive biases are scientifically proven error in the way that we human beings think.  We’ve developed a number of these biases through evolution to help us survive, but when we try to think really critically about something and solve hard problems, they tend to get in the way.

When I say any of the following:

  1. Our money will be very different in 50 years.

  2. Money should decay.

  3. A new form of money can make us more productive by a couple orders of magnitude.

...alarm bells start going off in your brain and you tend to dismiss me and not listen to anything else I say.  Most of you all are courteous, and I especially have to commend my love ones for not making me feel crazy, but I can see the disbelief in your faces as soon as the conversation starts.

This article is an attempt to try to convince you to ignore your biases and at least consider that 1.  Money can work differently, 2. Money will work differently in the future, and 3. Together we can actually make it happen.

The first bias is the Availability Bias or Availability heuristic. This says that you use mental shortcuts to think about things and the short cuts you take are the things that are around you and that you know.

You know money.  You know cash, you know banking, you know how loans work, and you know credit cards.  On top of this you probably spend a lot of time thinking about money and feel that you understand it.  Since money is so available you are highly biased to think that it is going to work the way it has always worked. Or further, that it is supposed to work the way it currently does work.

How can we overcome this bias?  Simply look at history. To make this more real, lets think in units of yous.  Most people have in the back of their head that they’ll live to near 100.  Some of you will.  I hope most of you do.  So when we look at history, lets think in terms of how many yous ago did x happen.

The reality is that our money was radically different 0.44 yous ago.  In 1971, Nixon took the US off of the gold standard.  Before this day you could buy an ounce of gold for $35. After this date you could not.  Things were supposed to get ‘fixed’ once things settled down, but they never were.  Now our money is 100% based on trust. Money fundamentally changed 44 years ago.  

To add even more volatility, in 1944, 0.71 yous ago, this system that Nixon abolished was founded at Bretton Woods.  Before that money was even less defined and this helped lead to 2 World Wars and massive depressions.

So in the last 100 years, or one yous, Money has fundamentally changed twice.  Does this change your biases at all about whether money will change fundamentally sometime in the next yous (100 years)?

The US has been around in some form for 2.4 yous.  Kind of crazy to think about isn’t it?  That isn’t much time. In that time we’ve had:

  • Antebellum Banking

  • Bank of North America System

  • First Bank of the US System

  • No Bank of the US

  • Second Bank of the US System

  • Bimetallism

  • Free Silver

  • Gold Standard

  • Bretton Woods

  • Federal Reserve System

 

That is 9 changes in 2.4 yous.  Or 1 change almost every 27 years.  It has been 44 years since we went off the Gold standard.  One could make an argument that the era of QE that the Fed is currently in is another fundamental change in our money.

If we go even further back we find hundreds of different monetary systems from seashells, to large stones, to grain, to gold coins, to other metal coins, to pig skins, to cattle, and on and on.

So I’ll ask, what do you think is more likely now?  That we will be on the same monetary system in 2065 or a very different one?  Can you put your bias aside?  There is a almost 100% probability that our current monetary system is breaking and a near 100% probability that we will replace it with something.  I don’t know if hypercapitalism is the answer, but I think it is asking a very important question that we all need to consider.

The next bias is the absurdity bias.  This is similar to the availability bias, but has a few differences.  In this one we discount the probability that something will happen because we’ve never seen it happen.  One of the best examples is living in a flood plane and being surprised when the 500 year flood happens twice in a decade.

In hindsight a number of things that we have today would have seemed absurd hundreds of years ago.  Having access to the entire corpus of human knowledge in our pockets.  Absurd.  Someone voluntarily swiping a plastic card and signing up for 25% interest rates to buy a coke.  Absurd. Flying. In the Air? At 500 mph? Ha HA!

You get the picture. When I tell you that people are going to be compelled to sign up for a system where their money decays, it seems absurd to you.  When I tell you that corporations are going to love the risk reduction that this new money brings them, it makes no sense.  Whether you understand how it works, why it works, or if it works really isn’t the issue for you.  You haven’t even looked at the math underneath or the computer models.  It is just so absurd that you dismiss it.  Don’t dismiss it.  Hypercapitalism isn’t trying to violate the rules of thermodynamics.  It is trying to leverage built in biases and human motivations to optimise our economy and help us find a higher velocity growth rate.  These things will likely happen whether it is hypercapitalism that solves them or not.

The third bias is the conjunction fallacy. This is a stupid thing our brains do when we think that the probability of one thing happening is less than the probability of that thing plus something else happening.  That is impossible.  For example. Is it more probably that Hillary Clinton will win the presidency or that Hillary Clinton will win the presidency and raise taxes on the rich?

If you ask people this question you will get some odd answers from some smart people.  It is impossible for the second conjecture to be more probable than the first.  Our issue is that we have such strong ideas about how Hillary Clinton feels about taxes that we overvalue the probability that that will happen without considering if the first ever happened.

Hypercapitalism probably suffers most from this kind of bias.  I’ll be the first to admit that I want the idea of an optimized and fair economy so much that it probably colors my perception of how correct and how likely some of the other conjunctions are.  We must be committed and held accountable to take each conjunction separately and evaluate it on its own merits.

How does this affect your thinking when I present you with ideas of Hypercapitalism?  If you are business owner you probably have very concrete feelings about costs, fees and taxes.  So when I say, ‘Our money will decay and you will pay a carrying cost’, you have those feelings in the way.  You don’t consider that business already pay a ton of fees and are already subject to inflation and that these ideas may replace some of those for the better.  It is too easy to think, ‘I’d never take on another fee’.

I get it.  If we don’t leave you in a better place you are not going to use the system.  But do you even understand the idea of what a ‘better place’ is? Or what direction it can take in the future.  If I had told a wealthy individual in 1970 that I was going to remove their right to exchange their dollars for gold and that this would leave them in a better position, how do you think they would feel.  There are number of these folks around.  Maybe we should ask them.

In 1971 the US GDP was $1.1 trillion.  In 2013 it was over an order of magnitude higher at $16.3 trillion.  Was this growth all due to the change in the kind of money we had available?  Doubtful, but what is certain is that the new kind of money was involved in every single transaction that led to the growth.

What kind of money do we need to get to a $200 trillion GDP by 2057?  We need one that flows faster, rewards value creation better, redistributes and refreshes potential more often and creates a more sustainable economic driver.

I understand that the statement ‘A new form of money will emerge that helps us get to a $200 trillion GDP by 2057’ is much higher than the statement ‘A new form of money will emerge that helps us get to a $200 trillion GDP by 2057 and that money system will be democratic hypercapitalism’.  But if the first one is high, and you haven’t been asking the question of what will fulfill that potential, I’m here to poke you with a stick.

Fourth is the planning fallacy.  This one says you are terrible at planning.  And you are.  You will chronically underestimate how long it will take you to finish a task.  I’m guilty of this too.  When I say we can implement hypercapitalism in the next decade, I’m probably underestimating it. The solution to this is taking the ‘outside view’ and observing how long this kind of thing took in the past.  If I take my own data I should probably say that it can be done in the next 27 years.

Fifth is the hindsight bias.  This is a fun one where we tend to rewire our brains after we know the answers.  If I told you in 1965 that removing implicit gold value in our dollars would help grow the US economy 10x in 40 years, your estimation of that likelihood would be lower than if I asked you the same thing in 2016 after it had already happened. Probably much, much lower.

There are other biases that can be discussed, but these were on my mind.  Much of this was pulled from ideas presented at lesswrong.com by Elizer Yudikowski.  Much the content has been condensed into Rationality: From AI to Zombies.    It is worth a look.

So now that we’ve worked through these biases, what do you anticipate?  Will we be under the current Fed/QE monetary system for the next 100 years?  Or do you think it will change?  If it changes, are you prepared to have a conversation about what that should look like?  That is what I’m proposing we do.  I understand that even if a change in our monetary system is highly likely, that hypercapitalism being that new system is much, much less probable, but if we don’t have the conversations, do the experiments, and get the data we won’t be ready with the best answer when the opportunity presents itself.

Give our kickstarter a consideration.  The worst that can happen is that you get a cool overpriced t-shirt.  The best that could happen?  That is the future and who knows?

Read more: http://hypercapital.info