I can’t get JS properly to call my solidity function withdraw funds. I have got solidity:
JavaScript
x
8
1
function withdrawFunds() public {
2
require(msg.sender == owner, "You are not the owner");
3
(bool success, ) = payable(owner).call {
4
value: address(this).balance
5
}("");
6
require(success);
7
}
8
And it works, but I cant figure out how to properly call it in JS.
So far I have this in JS:
JavaScript
1
9
1
const withdrawFunds = async () => {
2
try {
3
await Contractoftickets.methods.withdrawFunds().call({
4
from: address,
5
})
6
setSuccessMsg(`Funds withdrawn!`)
7
}
8
}
9
It executes but it currently does not withdraw funds.
Advertisement
Answer
With ethers.js you can do it like this:
JavaScript
1
8
1
const withdrawFunds = async () => {
2
try {
3
const Contractoftickets = ethers.getContract(contractAddress, contractInterfaceOrABI)
4
await Contractoftickets.withdrawFunds()
5
setSuccessMsg(`Funds withdrawn!`)
6
}
7
}
8
I’ll recommend you to go through ethers docs for more details. A simple note, you’ve to install ethers and connect your wallet with it before using it like above.