- web3j 라이브러리 다운받기
https://web3j.readthedocs.io/en/latest/getting_started.html - 테스트넷 사용하기
- Web3j 설정
@Configuration
public class EthClientConfiguration {
@Value("${ethereum.testnet-url}")
private String testnetUrl;
@Value("${ethereum.testnet-token}")
private String testnetToken;
@Bean
public Web3j web3j() {
Web3j web3j = Web3j.build(new HttpService(testnetUrl + "/" + testnetToken));
return web3j;
}
}
4. Web3j 제대로 연결되었는지 확인
@Service
public class TransferService {
@Autowired
private Web3j web3j;
public String test() throws IOException {
Web3ClientVersion web3ClientVersion = null;
web3ClientVersion = web3j.web3ClientVersion().send();
String clientVersion = web3ClientVersion.getWeb3ClientVersion();
System.out.println(clientVersion);
return clientVersion;
}
}
'블록체인' 카테고리의 다른 글
이더리움이란? ( 기초 ) (0) | 2018.06.24 |
---|---|
초보 개발자가 바라보는 블록체인 (3) | 2018.06.22 |
웹 개발자들이 해보는 이더리움 프로그래밍 (0) | 2018.01.26 |
['17.11.14 이더일기] 재미로 보는 ETH 지지선과 저항선 (0) | 2017.11.14 |
#코인넘버원 5회 - 숫자로 풀어보는 가상화폐 이야기 정리 및 후기 (0) | 2017.09.10 |