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.
 
 
 
 
 
 
nprimo 4fa5c876a7 docs: run prettify and move h1 to h2 12 months ago
..
README.md docs: run prettify and move h1 to h2 12 months ago

README.md

Register

To conveniently check for a given string or document, you will create a register smart contract.

Instructions

Write a solidity smart contract Register that provides the following :

  • a function addDocument() that takes as parameter a hash (bytes32 in solidity)
  • a function getDate() that takes as parameter a hash and returns the corresponding unix timestamp of the document
contract Register {
  function getDate(bytes32 documentHash) public view returns (uint) {
  }
  function addDocument(bytes32 documentHash) public {
  }
}

Hint

You may use block.timestamp to retrieve the current block date and a mapping (see Notions).

Notions