mirror of
https://github.com/th30d4y/OpenLearnX.git
synced 2026-05-26 11:25:49 +00:00
df420e8331
Signed-off-by: 5t4l1n <stalin78830@gmail.com>
13 lines
305 B
Solidity
13 lines
305 B
Solidity
// 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);
|
|
}
|
|
|
|
}
|