Solidity )remix 스마트 컨트랙트 예약 예제
Solidity 예제로 호텔 예약을 스마트 컨트랙트(예제)로 구현해보았다. // SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.6.0; contract HotelBook { enum Status { Vacant,Occupied } Status currentStatus; address payable public owner; //payable 키워드 계약 계정에 이더를 사용 (입금,송금,송신 등) 할 수 있게 해준다. event Occupy(address _occupant, uint _value); constructor() public { owner = msg.sender; //본인 지갑 currentStatus = Status.Vacant; } modifier..
2021.07.14