/ data / archives / questions.js
questions.js
 1  const Questions = [
 2    { id: 'smart_contract', text: 'How do you handle smart contract verification and security?' },
 3    { id: 'bounties', text: 'Other bounties?' },
 4    { id: 'who_what', text: 'Who are you and what are you working on?' },
 5    { id: 'tooling', text: 'What are the tools/libraries/frameworks you use?' },
 6    { id: 'frustrations', text: 'What are your biggest frustrations?' },
 7    { id: 'testing', text: 'How do you handle testing?' },
 8    { id: 'missing_tools', text: 'What tools don’t exist at the moment?' },
 9    { id: 'domain', text: 'Other domain specific questions?' },
10    { id: 'ethereum', text: 'What was the hardest part about learning to develop with Ethereum?' },
11    { id: 'short_term', text: 'What are you most excited about in the short term?' },
12    { id: 'ease', text: 'Was anything easier than expected?' },
13    { id: 'other_people', text: 'Who are the other people you think we should talk to?' },
14    { id: 'resources', text: 'What are the best educational resources?' },
15    { id: 'other_questions', text: 'Are there any other questions we should be asking?' },
16  ];
17  
18  module.exports = {
19    Questions,
20  };