args 不能用 BigInt(256),要用number。
如果你直接输入数字,可以用:
const a = useContractRead({
...Contract,
functionName: 'getOrderInfo',
args: [256],
})
如果 input 是 BigInt 参数:
const bigInt256 = BigInt(参数); // Creating a BigInt with a value of 256
const number = Number(bigInt256.toString()); // Converting BigInt to number
const a = useContractRead({
...Contract,
functionName: 'getOrderInfo',
args: [number],
})