Solidity - Data Locations
Data Locations - Storage, Memory and Calldata Variables are declared as either storage, memory or calldata to explicitly specify the location of the data. storage - variable is a state variable (store on blockchain) memory - variable is in memory and it exists while a function is being called calldata - special data location that contains function arguments 데이터 위치 - 스토리지, 메모리 및 통화 데이터 변수는 데이터의 위..
Programming Language/Solidity
2022. 12. 25. 10:58