You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }