Signed-off-by: 5t4l1n <stalin78830@gmail.com>
This commit is contained in:
2025-09-14 16:41:18 +05:30
parent 93c2f1c014
commit df420e8331
5 changed files with 1147 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;
contract Payment{
event message(address indexed from ,string message ,address to,string timestamp);
function sendMessage(address _to,string memory _message,string memory time) public {
emit message(msg.sender,_message,_to,time);
}
}