Solidity - Payable
Payable 지불할 수 있는? Functions and addresses declared payable can receive ether into the contract. payable으로 선언된 함수와 주소는 계약을 통해 이더를 받을 수 있다. // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; contract Payable { // Payable address can receive Ether // Payable로 선언된 주소는 이더를 받을 수 있다. address payable public owner; // Payable constructor can receive Ether // Payable로 선언된 constructor는 이더를 받을 수 있다. c..
카테고리 없음
2023. 1. 11. 23:02