안녕하세요.
Kaia-SDK로 마이그레이션 작업을 하다가 오류가 발생하여 문의드립니다.
import org.web3j.protocol.http.HttpService;
import org.web3j.protocol.kaia.Web3j;
HttpService httpService = new HttpService("https://node-api.klaytnapi.com/v1/klaytn");
// web3j 객체생성
Web3j web3j = Web3j.build(httpService);
위와 같이 활용하려고 했는데 "org. web3j. protocol. kaia. core. KaiaApi에 액세스할 수 없습니다"라는 오류가 발생하였습니다.
pom.xml 부분은
<!-- https://mvnrepository.com/artifact/foundation.klaytn/web3j-ext -->
<dependency>
<groupId>foundation.klaytn</groupId>
<artifactId>web3j-ext</artifactId>
<version>v1.0.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.kaia/web3j-ext (KAIA) -->
<dependency>
<groupId>io.kaia</groupId>
<artifactId>web3j-ext</artifactId>
<version>v1.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.web3j/core -->
<dependency>
<groupId>org.web3j</groupId>
<artifactId>core</artifactId>
<version>4.12.1</version>
</dependency>
<dependency>
<groupId>org.web3j</groupId>
<artifactId>crypto</artifactId>
<version>4.12.1</version>
</dependency>
이렇게 선언한 상황인데 오류가 발생하였습니다.
git의 샘플을 참고해도 오류가 해결아 안되어 문의남깁니다