call set function from smart contract
}
async function updateAppName() {
let upName = "Updated"
test.current.methods.setAppName(upName).send({ from: accounts[0] }).on('transactionHash', (hash) => {
alert('updated')
})
}