您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314
  1. import Web3 from 'web3';
  2. const web3 = new Web3();
  3. async function MathInterface() {
  4. const contract = new web3.eth.Contract(ABI, "0xc4cce39ae1e0006b811101b619d627448e5a342b");
  5. const uri = await contract.methods.tokenURI(9).call();
  6. console.log(uri);
  7. }