Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 462 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 462 Bytes

Solidity Message App

Truffle + Docker + Mocha + Solidity+ Typescript

Dependencies

Note : Download the Ganache App from the url below

https://www.trufflesuite.com/ganache

Install npx globally

yarn add npx -g

type npx build to view available built options

To Save message.

 function setMessage(string memory _msg) public {
   ...

To Read message.

 function getMessage() public view returns (string memory) {
   ...