Skip to content
Advertisement

How to make Node.JS function that calls solidity withdraw function?

I can’t get JS properly to call my solidity function withdraw funds. I have got solidity:

JavaScript

And it works, but I cant figure out how to properly call it in JS.

So far I have this in JS:

JavaScript

It executes but it currently does not withdraw funds.

Advertisement

Answer

With ethers.js you can do it like this:

JavaScript

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.

Advertisement