Traté de llamar a una función abi usando Web3. Obtuve el error "no hay clave para la dirección o el archivo dado".
let web3 = new Web3(new Web3.providers.HttpProvider('https://evm-t3.cronos.org/')); const contract = new web3.eth.Contract(network.abi, network.contractAddress); await contract.methods .accept(id, offer_Index) .send({ from: account, gasLimit: '1000000', }) .on('transactionHash', (txHash) => {}