Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- web3
- ethers
- Python
- ERC165
- Docker
- github
- 트랜잭션
- 솔리디티
- 블록체인
- 이더리움
- erc721
- server
- erc
- 제어의역전
- MySQL
- git
- NFT
- 네트워크
- blockchain
- web3.js
- JavaScript
- geth
- web
- truffle
- solidity
- 스마트 컨트랙트
- Programming
- tcp
- Ethereum
- ERC20
Archives
- Today
- Total
목록문자열 (1)
멍개의 연구소
[ethereum] solidity에서 bytes32에서 string으로 변환
function bytes32ToString(bytes32 x) constant returns (string) { bytes memory bytesString = new bytes(32); uint charCount = 0; for (uint j = 0; j < 32; j++) { byte char = byte(bytes32(uint(x) * 2 ** (8 * j))); if (char != 0) { bytesString[charCount] = char; charCount++; } } bytes memory bytesStringTrimmed = new bytes(charCount); for (j = 0; j < charCount; j++) { bytesStringTrimmed[j] = bytesStrin..
블록체인
2022. 8. 27. 15:51