Results 52 comments of Andrew Raffensperger

Can this be disabled or selectively muted from `forge build`? Having to sift through pages of `note[...]` spam to find a useful warning seems silly. --- `warning[incorrect-shift]: the order of...

Probably better to just replace this [with the version](https://github.com/ensdomains/namechain/blob/main/contracts/test/utils/resolutions.ts) in namechain repo which supports all resolver profiles.

hello @Lfada — I should of investigated this further, as I didn't really become aware of this until seeing it on Twitter today. What can I help you with? I've...

The whole experience was pretty slick and simple. Great for teams of all sizes. 8/10 I misjudged the gas necessary to bootstrap the account, so approximate setup fees for the...

I believe this is the same error as this example? ```solidity abstract contract A { function f() internal view virtual returns (uint256); function g() internal view virtual returns (uint256) {...

* `setup_fork_db_config()` ignores `NodeConfig.gas_limit` https://github.com/foundry-rs/foundry/blob/2442e7a5fc165d7d0b022aa8b9f09dcdf675157b/crates/anvil/src/config.rs#L1141 * `setup()` only uses `NodeConfig.gas_limit` but passes `disable_block_gas_limit` to `CfgEnvWithHandlerCfg` https://github.com/foundry-rs/foundry/blob/2442e7a5fc165d7d0b022aa8b9f09dcdf675157b/crates/anvil/src/config.rs#L949-L959 * not clear if `disable_block_gas_limit` prop is used anywhere in `foundry_evm` https://github.com/foundry-rs/foundry/blob/2442e7a5fc165d7d0b022aa8b9f09dcdf675157b/crates/evm/evm/src/executors/builder.rs#L84

For example, Linea does not handle batched `eth_getProof`, even `[{...}]` (a single request in a batch) --- When I control the stack, I agree, I can just use 2 providers...

`namespace` works. I'd be happy to change it to whatever you suggest. IMO, the closest codec is `json` which oddly uses `tag:ipld`. I picked `tag:data` as unlike most codecs, `data-uri`...

@aschmahmann and @0xc0de4c0ffee thanks for the feedback. As for codec numbers, I'd be happy with any assignment. Initially picked lower numbers since these two codecs seem useful beyond ENS. Yes,...

Seems okay in `node` but: ```sh $ bun --version 1.2.4 $ bun repl > require('ethers').getBytes('0x'.padEnd(86014, '0')) > require('ethers').getBytes('0x'.padEnd(86016, '0')) // error: invalid BytesLike value ``` It seems fixed now on...