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
- Programming
- Docker
- web
- Ethereum
- ERC165
- 제어의역전
- solidity
- erc721
- tcp
- geth
- 블록체인
- 이더리움
- erc
- server
- blockchain
- ethers
- Python
- github
- 네트워크
- JavaScript
- ERC20
- MySQL
- 트랜잭션
- git
- 스마트 컨트랙트
- web3
- 솔리디티
- web3.js
- NFT
- truffle
Archives
- Today
- Total
멍개의 연구소
[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] = bytesString[j];
}
return string(bytesStringTrimmed);
}
pragma solidity ^0.4.20;
contract ApiAbstract {
function a(bytes32[] b) constant returns(bytes32, string) {
return (b[0], bytes32ToString(b[0]));
}
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] = bytesString[j];
}
return string(bytesStringTrimmed);
}
}
'블록체인' 카테고리의 다른 글
[gpg] gpg를 이용하여 RSA(공개키 암호화)방식 이해 (0) | 2022.08.27 |
---|---|
[ethereum] 노드에서 생성된 block에 대해서 이벤트 받기 (0) | 2022.08.27 |
[ethereum] node.js에서 web3.js를 이용하여 이더리움 네트워크 연결 (0) | 2022.08.27 |
[ethereum] docker를 활용한 이더리움 네트워크 구축 - 3편 (0) | 2022.08.27 |
[ethereum] docker를 활용한 이더리움 네트워크 구축 - 2편 (0) | 2022.08.27 |
Comments