klip-docs 의 js-sdk의 prepare.executeContract를 사용하고 있습니다. request url은 잘 생성되나 위와같이 잘못된 요청이라 표기되는데 무엇이 문제일까요… ?
// prepare.executeContract 부분
const abi = JSON.stringify(ListApprove);
const params = `["${REACT_APP_KLAYTN_MARKET_CONTRACT_ADDRESS}", "${tokenId}"]`;
const tx = {
bappName: 'test NFT',
to: REACT_APP_KLAYTN_MARKET_CONTRACT_ADDRESS,
value: caver.utils.toPeb('0', 'KLAY'),
from: account,
params,
abi,
};
const { request_key } = await prepare.executeContract(tx);
{
// ListApprove ABI
"inputs": [
{ "internalType": "address", "name": "to", "type": "address" },
{ "internalType": "uint256", "name": "tokenId", "type": "uint256" }
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function",
"signature": "0x095ea7b3"
}