You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
jrosendo 7a960f7d00 docs(blockchain): add blockchain branch subjects to public 2 years ago
..
README.md docs(blockchain): add blockchain branch subjects to public 2 years ago

README.md

Festival Buy Ticket

A core functionality of your smart contract is the ability to sell tickets. You will sell them for 0.1 Ethers. An Ethereum address could own several tickets.

You learn to take into account the value field of a transaction.

Instructions

  • Create a new Smart Contract BuyTickets.
  • Add a function buyTicket() that takes no parameters and that allows a user to buy one ticket for 0.1 Ethers. If a user pays more than 0.1 the excess is kept.
  • Add a function ticketsOf() that takes as parameter an ethereum address and returns the number of tickets that this address owns.

Notions