How to Stay Safe Online: Tips for Personal Security
How I learned to "start worrying" and love the illusion of feeling safe.
How I learned to "start worrying" and love the illusion of feeling safe.
How to deploy a contract using `CREATE2` which is introduced in EIP-1014 to provide more flexible address generation.
If you can, try to use calldata as data location because it will avoid copies, reduce gas usage, and also make sure that the data cannot be modified.
Whenever the library is changed, hardhat-deploy will deploy a new implementation and upgrade the proxy.
To achieve high availability and better performance, we could build a HAProxy load balancer in front of multiple Ethereum RPC providers, and also automatically adjust traffic weights based on the latency and block timestamp of each RPC endpoints. ref: https://www.haproxy.org/ Configurations In haproxy.cfg, we have a backend named rpc-backend, and two RPC endpoints: quicknode and… Read More