NFT 토큰 발행한 컨트렉주소를 기준으로
발행한 토큰 Supply값을 구하려고하는데요.
Docs에 나와있는 const kip17Instance = new caver.klay.KIP17(‘0x{address in hex}’).totalSupply()
해당 구문이 TypeError: Cannot read properties of undefined (reading ‘totalSupply’) 라는 오류 구문이 계속 발생합니다
caver.js 버전은 1.4.1 버전 이상입니다.
const kip17Instance = new caver.klay.KIP17(‘0x{address in hex}’)
kip17Instance.totalSupply().then(console.log)
이렇게 했을때도 로그 안찍히나여?
비동기 실행이라 바로 출력하려고하면 안나올수 있어요
const kip17Instance = new caver.klay.KIP17(‘0x{address in hex}’)
kip17Instance.totalSupply().then(console.log)
해당 구문을 사용하게되면
Uncaught TypeError: klaytn_caver__WEBPACK_IMPORTED_MODULE_1__.default.klay.KIP17 is not a constructor
위와 같은 오류 문구가 출력됩니다
해당 컨트랙트 코드나 컨트랙트 어드레스 받을수있나요?
서버는 baobab
0x4572f71067bE15A658fE3056E9d38d299a4d2331
입니다
안녕하세요
caver-js를 어떤식으로 사용하고 계신가요?
에러재현이 가능한 간단한 예제를 알려주시면 좋을 것 같습니다.