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

Check Document

Instructions

Write a node script that exports the function checkDocument() that :

  • takes as parameter a transaction id and a string
  • connects to a local node (http://localhost:8545)
  • returns the date, as a unix timestamp, that the document was added to the blockchain if the transaction id and the string match and returns 0 otherwise
function checkDocument(text, txID) {
  //...
}
module.exports = checkDocument

Usage

checkDocument(
  'Hello world!',
  '0x49c8803ea126179502d59707dbcd9e9de15f5d441920936e9ec6fd78dd6468d8',
)
// Expected :
//1611104541

Notions