-
Hey! Can someone explain The functions such as |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Ethers.js is a JavaScript library -- designed specifically for Ethereum -- which helps us drastically. How? Because we do not have to do anything ourselves, in your case, we already have the ContractFactory object in the Ethers library, just imagine how hard and waste of time it would be if we were to write the code from scratch for every minor thing. It saves so much time and unnecessary complexity, and this is just one instance. |
Beta Was this translation helpful? Give feedback.
Ethers.js is a JavaScript library -- designed specifically for Ethereum -- which helps us drastically. How? Because we do not have to do anything ourselves, in your case, we already have the ContractFactory object in the Ethers library, just imagine how hard and waste of time it would be if we were to write the code from scratch for every minor thing.
It saves so much time and unnecessary complexity, and this is just one instance.