[BlockChain] solidity 컴파일
·
개발/BlockChain
1. solc solc 설치 npm i solc 컴파일 명령어 // npx solc --bin --abi (파일경로) npx solc --bin --abi test.sol 작성한 test.sol 파일 /* 솔리디티 버전 */ pragma solidity ^0.8.15; // HelloWorld 컨트랙트 contract HelloWorld { string text; constructor(){ text = "Hellooooo World~~~~~"; } function getText() public view returns(string memory){ return text; } function setText(string memory value) public{ text = value; } } 2. abi,bin ..
[Solidity Error] Member "push" is not available in string[] memory outside of storage
·
개인프로젝트/ethFruitShop
function getFruitList() public returns(string[] memory){ string[] memory temp; for(uint i=0; i