Crowdfunding on Bitcoin

No, not ICO

sCrypt
2 min readMar 17, 2022

We show how to develop a crowdfunding platform on Bitcoin. Similar to Kickstarter, funding is all or nothing. That is, if the fundraising target is not reached, the funds are guaranteed to be returned.

Compared to Kickstarter, our approach is automatically enforced by Bitcoin, does not entrust funds to a trusted third party, and enjoys low fees.

We first introduce a traditional way to achieve this and present an improved version afterwards.

A First Try: Lighthouse

Early Bitcoin developer Mike Hearn built a crowdfunding platform Lighthouse based on assurance contracts. It uses SIGHASH flags ALL | ANYONECANPAY.

ANYONECANPAY inputs can be combined
  • ALL ensures all the the funds go to the desired recipient and the total is exactly a certain target. The recipient and target cannot be altered after signing, preventing donations from being redirected.
  • ANYONECANPAY ensures each contributor can pledge independently. Each signs her own input and hands the partially transaction to the recipient, who combine all inputs in a single transaction and redeem the funds.

Note that before the target is reached, the sum of input values are less than the output value, the transaction is invalid and the recipient cannot claim the funds.

Improvement

The above crowdfunding has several drawbacks:

  1. A contributor can withdraw his pledge fund at any moment
  2. The fundraising cannot be oversubscribed. Even if people want to contribute more than the target, the extra amount will be paid as fees to miners, instead of going to the recipient.

To improve, each contributor locks her fund into the following contract and broadcasts a transaction containing it. This commits her fund, which cannot be withdrawn before a deadline.

Contract Crowdfund

If enough total funds have been raised before the deadline, the beneficiary can collect all pledged funds as in Figure 1, by calling pledge() at Line 13. Otherwise, each contributor can retract her fund after the deadline as in Figure 2, by calling refund() at Line 28.

Figure 1: Campaign success
Figure 2: Campaign failure

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

sCrypt
sCrypt

Written by sCrypt

sCrypt (https://scrypt.io) is a web3 development platform specialized in UTXO-blockchains like Bitcoin

No responses yet

Write a response