Note: PBSS in Geth >=1.13.0 removes the need to prune manually.
Geth (Go-Ethereum) as of July 2022 takes about 650 GiB of space on a fast/snap sync, and then grows by ~ 14 GiB/week with default cache, ~ 8 GiB/week with more cache.
Note: PBSS in Geth >=1.13.0 removes the need to prune manually.
Geth (Go-Ethereum) as of July 2022 takes about 650 GiB of space on a fast/snap sync, and then grows by ~ 14 GiB/week with default cache, ~ 8 GiB/week with more cache.
| // This is universal, works with Infura -- set provider accordingly | |
| const ethers = require('ethers') | |
| //const provider = ethers.getDefaultProvider('rinkeby') | |
| const provider = new ethers.providers.JsonRpcProvider(process.env.WEB3_URL) | |
| function hex_to_ascii(str1) { | |
| var hex = str1.toString(); | |
| var str = ''; | |
| for (var n = 0; n < hex.length; n += 2) { |