Skip to content

Instantly share code, notes, and snippets.

@tariqul000
Created June 12, 2023 13:19
Show Gist options
  • Save tariqul000/115b78acde0b142f65b70ac51b0f98a2 to your computer and use it in GitHub Desktop.
Save tariqul000/115b78acde0b142f65b70ac51b0f98a2 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.15+commit.e14f2714.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
contract TheBlockchainMessenger{
uint public changeCounter;
address public owner = msg.sender;
string public theMessage;
// constructor(){
// owner = msg.sender;
// }
function updateTheMessage(string memory _newMessage) public {
if (msg.sender == owner){
theMessage = _newMessage;
changeCounter++;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment