Using Typeform to incentivize community education

  • 17 December 2021
  • 10 replies
  • 180 views

Userlevel 1

Hi everyone! I’m Dan, a software engineer at Interlay. I decided to share our Typeform API use case at Nicolas Grenie’s suggestion, in the hope others might find it useful.

 

Background

Interlay’s goal is to allow Bitcoin users to invest, earn and pay with BTC on any blockchain. We’re currently trying to launch a Bitcoin bridge to the Polkadot ecosystem, which entails having our community temporarily lock funds into a “crowdloan”. Due to technical reasons, there is only a limited number of projects that can launch Polkadot. An auction system is used to determine who gets to go live: each available Polkadot slot is won (temporarily leased) by the project that locks the most funds.

Since we’re asking our community to lock funds into our crowdloan for two years, we want to encourage them to first read up on our product. Decentralized Finance, being unregulated, tends to attract lots of scams which we’re trying to protect our users from. To achieve that, we started to focus on creating educational content - and endeavour the community helped us greatly in, having shared lots of beautifully designed infographics and videos on their social media.

 

How Typeform fits in

In trying to incentivize crowdloan contributors to read up on Interlay before contributing, we’ve set up a Typeform Quiz that evaluates essential knowledge. Besides the base rewards our contributors receive, we offer a bonus to those who also successfully answer all quiz questions. Users can retry the quiz as many times as they like until they get it right, the point of it is learning. The quiz is also a starting point for those who are interested in our product but don’t find the motivation to read up on it. Once you open up the documentation to answer questions, it’s much easier to keep browsing through it.

 

Why Typeform?

Besides having a beautifully designed UX, the Responses API allows to check who completed the form in real time. This is crucial to our Crowdloan website UX flow, where users scroll from the quiz to the actual contribution section in a matter of minutes. By the time users actually contribute, the data pertaining to their Typeform entry must be already updated, so users can see that we validated their quiz bonus.

 

The Architecture

Since our time budget was very tight, we wanted the solution that offers the best trade-off between implementation time and data “freshness”. We created a Node.js stateless service that pings the Typeform Responses API every minute to see if new responses were recorded. The data is stored in-memory, so service maintenance and scalability are not a problem. The service fetches all new responses since the last response read (see code here), and only requests the two relevant response columns. This means that memory requirements are low, and once started and “synced”, the service is very fast to respond to queries.

 

Next Steps

The obvious extension is to have the Webhooks API push data to our service, which would update quiz participation data instantly. I stopped at the Responses API because of a lack of time, but since I now have a Typeform setup that works, it will be much easier to extend this skeleton next time.

Most of our code is open source, so feel free to take a look and use it for your own projects. Feedback is appreciated!

 

Looking forward to suggestions or thoughts, thanks!


10 replies

Userlevel 7
Badge +6

@daniel.savu thanks for sharing.. that’s a very interesting use case.. cheers

 

des

Userlevel 7
Badge +5

Thank you @daniel.savu for sharing your usecase and your code 🤩

Keep up the good work 💪

@daniel.savu

 

Thanks for introducing your bitcoin project in detail. They look very interesting. I think that there should be more projects like yours due to the popularization of technologies related to Bitcoin and the blockchain. I think that in some time we will use this technology in a much wider intellectual aspect, not only for mining bitcoins or other cryptocurrencies. 

Regards

Userlevel 1

@daniel.savu

 

Thanks for introducing your bitcoin project in detail. They look very interesting. I think that there should be more projects like yours due to the popularization of technologies related to Bitcoin and the blockchain. I think that in some time we will use this technology in a much wider intellectual aspect, not only for mining bitcoins or other cryptocurrencies. 

 

Regards

Thank you @BITCOINTIDINGS! Blockchain is already used for much more than just finance, you can check out all the projects in the Polkadot ecosystem for a start https://dotmarketcap.com/ecosystem

Userlevel 7
Badge +5

It's really cool how you're using Typeform and nice quiz @daniel.savu ! Have you had a lot of responses? And did you find time to have the Webhooks API to push data to your service?

Do you recommend any readings to someone (yes, me! hehehe) who doesn't know a lot about bitcoins and want to learn a bit more about it? Thank you! :wink:

Hi,

 

I am very impressed with the use of blockchain, I have never known so many products before. Sam has been interested in the use of this technology for storing data from smart home installations for a long time. I want this data to be anonymous and safe.

I congratulate you on many ideas and wish you continued success.

 

I used to think that blockchain would only apply to Bitcoin technology, but I was wrong

Userlevel 1

It's really cool how you're using Typeform and nice quiz @daniel.savu ! Have you had a lot of responses? And did you find time to have the Webhooks API to push data to your service?

Do you recommend any readings to someone (yes, me! hehehe) who doesn't know a lot about bitcoins and want to learn a bit more about it? Thank you! :wink:

Thank you @Gabi Amaral!

Over 1000 responses so far with more than a month left :grin:

The Webhooks API is probably going to be added later in the year for other quizzes, I’ll share feedback (and the code) for that integration too.

This reading list is great if you’d like to read more about the field: https://github.com/JumpCrypto/crypto-reading-list

Userlevel 1

I appreciate it @MahimumHorrors! :pray:

Userlevel 7
Badge +5

Ah I understand, @daniel.savu! Yes, don't forget to share! Thanks for the link, very helpful. Will bookmark this one and read it. If I have more questions, I'll come back here to ask! Hehehehe. Have a nice day! :wink:

Hi everyone! I’m Dan, a software engineer at Interlay. I decided to share our Typeform API use case at Nicolas Grenie’s suggestion, in the hope others might find it useful.

 

Background

Interlay’s goal is to allow Bitcoin users to invest, earn and pay with BTC on any blockchain. We’re currently trying to launch a Bitcoin bridge to the Polkadot ecosystem, which entails having our community temporarily lock funds into a “crowdloan”. Due to technical reasons, there is only a limited number of projects that can launch Polkadot. An auction system is used to determine who gets to go live: each available Polkadot slot is won (temporarily leased) by the project that locks the most funds.

Since we’re asking our community to lock funds into our crowdloan for two years, we want to encourage them to first read up on our product. Decentralized Finance, being unregulated, tends to attract lots of scams which we’re trying to protect our users from. To achieve that, we started to focus on creating educational  result in content - and endeavour the community helped us greatly in, having shared lots of beautifully designed infographics and videos on their social media.

 

How Typeform fits in

In trying to incentivize crowdloan contributors to read up on Interlay before contributing, we’ve set up a Typeform Quiz that evaluates essential knowledge. Besides the base rewards our contributors receive, we offer a bonus to those who also successfully answer all quiz questions. Users can retry the quiz as many times as they like until they get it right, the point of it is learning. The quiz is also a starting point for those who are interested in our product but don’t find the motivation to read up on it. Once you open up the documentation to answer questions, it’s much easier to keep browsing through it.

 

Why Typeform?

Besides having a beautifully designed UX, the Responses API allows to check who completed the form in real time. This is crucial to our Crowdloan website UX flow, where users scroll from the quiz to the actual contribution section in a matter of minutes. By the time users actually contribute, the data pertaining to their Typeform entry must be already updated, so users can see that we validated their quiz bonus.

 

The Architecture

Since our time budget was very tight, we wanted the solution that offers the best trade-off between implementation time and data “freshness”. We created a Node.js stateless service that pings the Typeform Responses API every minute to see if new responses were recorded. The data is stored in-memory, so service maintenance and scalability are not a problem. The service fetches all new responses since the last response read (see code here), and only requests the two relevant response columns. This means that memory requirements are low, and once started and “synced”, the service is very fast to respond to queries.

 

Next Steps

The obvious extension is to have the Webhooks API push data to our service, which would update quiz participation data instantly. I stopped at the Responses API because of a lack of time, but since I now have a Typeform setup that works, it will be much easier to extend this skeleton next time.

Most of our code is open source, so feel free to take a look and use it for your own projects. Feedback is appreciated!

 

Looking forward to suggestions or thoughts, thanks!

Informative info you shared .thanks

Reply