토큰 이미지 생성을 하려합니다

const tokenAddress = ‘0xd00981105e61274c8a5cd5a88fe7e037d935b513’
const tokenSymbol = ‘TUT’
const tokenDecimals = 18
const tokenImage = ‘http://placekitten.com/200/300

klaytn.sendAsync(
{
method: ‘wallet_watchAsset’,
params: {
type: ‘ERC20’, // Initially only supports ERC20, but eventually more!
options: {
address: tokenAddress, // The address that the token is at.
symbol: tokenSymbol, // A ticker symbol or shorthand, up to 5 chars.
decimals: tokenDecimals, // The number of decimals in the token
image: tokenImage // A string url of the token logo
}
},
id: Math.round(Math.random() * 100000)
},
(err, added) => {
if (added) {
console.log(‘Thanks for your interest!’)
} else {
console.log(‘Your loss!’)
}
}
)

tokenaddress 에서 자꾸 에러가 나는데 어떻게하나요

안녕하세요~! 올려주신 토큰 주소를 확인해보니 (바오밥, 사이프레스 모두 다) 컨트랙트 주소가 아니라고 나오네요! 혹시 토큰 컨트랙트 주소가 저 주소 맞는지요?