Skip to content

BlockchainCloud/Ethereum_Udemy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 

Repository files navigation

Ethereum_Udemy

function getMessage() public view returns(string) {
  return message;
}
  • public - anyone can call this function
  • private - only this contract can call this function
  • view - this function returns data and does not modify the contract's data
  • constant - this function returns data and does not modify the contract data
  • pure - function will not modify or even read the contract's data.
  • payable - when someone call this function they might send ether along

(view and constant mean the same thing)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors