6 Ways to Monetize Your Ethereum DApps (Part 1)

Georgios Konstantopoulos
Loom Network
Published in
5 min readFeb 24, 2018

In our last article, we went over why you should learn to build Blockchain DApps.

In this article, we will talk about how you can monetize them.

Before getting into DApp-specific cases, let’s try answering a popular question:

How do traditional apps make money?

Advertisements

Simply said, advertisers pay content providers and technology companies (you, the developer) to put advertisements in front of consumers (your users). Consumers in turn are influenced by the advertisements (whether they think they are or not), and spend money on the advertiser’s products.

Freemium Services

In the old App Store days, there were the ‘Lite’ or ‘Regular’ and the ‘Pro’ versions of apps. Users would try out what the product offered, and if they liked it would purchase the full version of the App.

Using that business model, companies such as Spotify, Slack or Onedrive generated revenue from their users who would purchase a paid subscription for their service.

Other examples of the freemium model include gaming apps which allow the purchase of in-game items for real currency.

Free-to-play MMORPG’s have utilized the so-called ‘Free to Play Restrictions’. As a free player in World of Warcraft, the maximum allowed level is Level 20. Other games, had limitations on the areas you could explore. The best content of such games is reserved for the “Pay to Play” gamers.

With the above in mind, there is a lot of low hanging fruit a DApp developer can go after when looking to monetize their DApp.

How to Monetize Your DApps

1. Make a Crowdsale and launch a token

As discussed in the previous post, you can always bootstrap your project through a crowdsale backed by a token.

In this case you need to define the need for your token[1]:

  • Core functionality of your DApp (Golem, Aragon, Request)
  • Provides access to your network (BAT, Bloom)
  • Distribute profits of the product to token holders (TenX, Numerai)

Note that in this case you need to be careful with regulations and KYC compliance depending on if your token is considered a security or not.

2. Take a percentage of transaction fees

Cryptokitties charged a 3.75% fee for each successful auction. This proved to be a very profitable revenue model.

Last Week CK usage peaked 800 ETH in transaction fees. Source: DappRadar.com

As a more general example:

  1. A buys something from B using your service
  2. Y% of that amount goes to the service provider (you)
  3. (100-Y)% goes to B

There is a caveat here. If you make a decentralized service that has an “unfair” fee towards the end-user, someone will eventually copy your Smart Contracts and release a version of them with lower fees or no fees at all (given that your contracts are Verified and Open Sourced, which is typically expected of Ethereum DApps).

Finding the right amount to charge your users is the key here; however we will not get into pricing models in this post.

3. Charge an amount for premium functionality

Inspiring ourselves from the freemium model discussed before, and by using the game we’re building in CryptoZombies as an example, think of the following:

Let’s say that your CryptoZombie requires 10 wins in order to level up, and that gets harder as its level increases.

Leveling up from Level 10 to Level 11, will be harder than leveling up from Level 1 to Level 2. Users need to consume a lot more effort in order to level up their Zombie Army.

Law of Diminishing Returns

Here you can implement a function, which allows the Zombie to “skip” the effort and level up directly, and in return the user would need to pay some amount of ether.

That way, players who play for free are still able to achieve end-game results, but the ones who are willing to pay a premium can skip the effort.

The same could apply for resetting the cooldown of a Zombie. Zombies typically need to wait for cooldown seconds before fighting again, but we could make it so users can pay a small fee and skip the cooldown.

There are a lot of different ways you could monetize DApps here, and we will talk about specific code implementations in part 2 of this article.

4. Subscription / Membership

You could add a subscription or membership functionality to your contracts , to make it so that certain functions can only be called by subscribers, or by premium members.

The duration of the subscription could be:

  • Time-Based: The user is allowed to call a function until X time has passed, e.g. they could pay for 1 month of access.
  • Usage-Based: The user is allowed to call a function X times.

You can read more about Subscription models on Wikipedia.

Again, we will look at specific code examples of how to implement this in part 2 of this article.

5. Advertisement

This has been a less-popular method, considering we are talking about advertisements on the DApp itself. The ThousandEtherHomepage does just that. You are able to claim a number of array slots in the Contract, which get represented by pixels in the DApp’s front-end. As seen by the picture below, these pixels have been used by projects (among others) in order to advertise their brand.

6. Take donations

If any of the above sounds like too much a hassle, you can always just add your cryptocurrency address at your service/DApp for any generous donors.

You could also add the eth-button to your webpage for Metamask integration.

eth-button.github.io/eth-button

Stay tuned for Part 2!

Part 1 was a more theoretical approach. Part 2 will include code implementations based on some of the monetization concepts discussed above.

Edit: Part 2 is here! Check it out.

Interested in DApp development? Check out our totally free course for how to get started ⬆

Loom Network is the multichain interop platform for scaling high-performance dapps — already live in production, audited, and battle-tested.

Deploy your dapp to Loom’s Basechain once and reach the widest possible user base across all major blockchains today.

New to Loom? Start here.

Want to stake your LOOM tokens and help secure Basechain? Find out how.

Like what we’re doing here? Stay in the loop by signing up for our private mailing list.

--

--