체인의정석

Solidity Bytes vs Bytes32 본문

블록체인/Solidity

Solidity Bytes vs Bytes32

체인의정석 2022. 1. 26. 11:30
728x90
반응형

 

솔리디티 자료형을 다루다 보니 bytes와 bytes32에 대한 혼동이 있어 정리를 하였다.

 

우선 결과만 말하자면

bytes는 byte[]와 같은 의미를 가진다.

bytes32는 고정길이 배열이기 때문에 컨트렉트 안과 밖 사이의 전달이 가능하다는 점이다.

가변 길이의 배열은 interface나 ABI가 지원을 하지 않기 때문에 사용할 수가 없다. 

web3에서 컨트렉트의 전송은 가능하지만 컨트렉트끼리의 전송은 되지 않는다고 보면 된다.

 

또한 고정이 아닌 가변 길이 베열의 경우 memory를 변수 앞에 넣어주어야 에러가 나지 않는다.

 

결론

1. 사이즈가 작아도 되는 경우 bytes32 사용

2. 외부호출에 쓰이는 경우 bytes32 사용

3. 사이즈가 큰 경우 byte 사용

 

https://ethereum.stackexchange.com/questions/11770/what-is-the-difference-between-bytes-and-bytes32/11771

 

What is the difference between bytes and bytes32?

I know bytes32 stores 32 bytes, but what does bytes store? And what is the difference between the two?

ethereum.stackexchange.com

 

728x90
반응형
Comments