Shawn

Results 50 comments of Shawn

So these value `GasPrice: GasFeeCap:+2000000007 GasTipCap:+1000000000 GasLimit:3000000` are from the golang client we use, and those parameters allow txes to successfully be included in a block. w.r.t the default eip...

w.r.t gas params on our chain, we don't do anything out of the ordinary. Full geth params available here: https://github.com/ethereum/go-ethereum/blob/master/cmd/utils/flags.go Summary of our config: * We use the default geth...

Update: geth's `miner.gasprice` flag is akin to a minimum priority fee enforced by nodes, default is indeed 1 gwei. For spam prevention purposes we would like to keep this param...

Valuable info! Rn our team is focused on getting a working bridge up for our chain, so I've been building a temporary solution. Happy to circle back and make a...

Note the most common create3 implementation hashes msg.sender into the salt https://github.com/ZeframLou/create3-factory, so we'll opt for using something like [this](https://github.com/transmissions11/solmate/blob/main/src/utils/CREATE3.sol) directly

> We should also evaluate how this affects gas costs for the transactions. Need to check gas used from the actual transactions before and after the change. Gas cost for...

> how do we know all of these events will work as intended? Is there a way to test that the event will be triggered successfully with the intended output...

Sounds like a great idea, we'll likely want to setup our docs frontend to have a dropdown where you can toggle between docs relevant to each release

Could you provide some more context on this issue? Openzeppelin's `PausableUpgradeable` may be the right solution