cfweb3
cfweb3 copied to clipboard
Based on the announcement https://blog.ethereum.org/2022/06/21/testnet-deprecation, Rinkeby is depreciated. Is there a way to use other testnet for this demo?
npm ERR! code ERR_INVALID_ARG_TYPE npm ERR! The "from" argument must be of type string. Received undefined
https://github.com/cloudflare/cfweb3/blob/c4e627627732edfadcaccd90b5656b0b3c54c43c/contract/hardhat.config.js#L22 Its probably very unlikely that the Infura account that is linked to this key is _not_ on the free tier but on the small chance that it is, someone...
In README, it asks us to use https://faucet.rinkeby.io/ for getting test ETH. However, the site keeps showing "faucet offline" I use https://faucets.chain.link/rinkeby instead and it works fine
- cleanup readme ```js await wallet1.sendTransaction({ to: addressToFund, value: ethers.utils.parseEther("10.0") // }) ``` - `ethers.utils.parseEther("10.0")` will return undefined, the correct way is `hre.ethers.utils.parseEther("10.0")`
Updating Semgrep.yml file - Semgrep is a tool that will be used to scan Cloudflare's public repos for Supply chain, code and secrets. This work is part of Application &...