xxxxxxxxxx
const Web3 = require("web3");
const web3 = new Web3("https://<provider_address>");
async function run() {
const contract = new web3.eth.Contract(ABI_JSON, ADDRESS);
// calling the `view` function without having to pay for transaction fees
const number = await contract.methods.getNumber().call();
console.log(number);
}
run();