每周以太坊进展 2022/10/1
* Besu [v22.7.4](https://github.com/hyperledger/besu/releases/tag/22.7.4): 修复内存泄露的问题
* EIP4844 (proto-danksharding) [视频会议](https://www.youtube.com/watch?v=Oc_e7YJQl-I&t=13s), [会议记录](https://docs.google.com/document/d/1KgKZnb5P07rdLBb_nRCaXhzG_4PBoZXtFQNzKO2mrvc/edit) 和 [准备清单](https://github.com/ethereum/pm/blob/master/Breakout-Room/4844-readiness-checklist.md)
## 共识层
* Lighthouse [v3.1.2](https://github.com/sigp/lighthouse/releases/tag/v3.1.2): 降低执行节点超时的负载修剪选项,优化证明和区块处理
* bloXroute 的 ethical MEV-Boost 中继[产生了无效区块](https://twitter.com/blink_labs_xyz/status/1575022763232075778)
* Danny Ryan 关于[EIP4844 是否耦合信标块和blob块](https://notes.ethereum.org/RLOGb1hYQ0aWt3hcVgzhgQ?view)的记录
## EIP
* [EIP5719](https://github.com/ethereum/EIPs/pull/5719/files): 签名替换接口
* [EIP5725](https://github.com/ethereum/EIPs/pull/5725/files): 可转让所有权 NFT
* [EIP5727](https://github.com/ethereum/EIPs/pull/5727/files): 半灵魂绑定代币
* [EIP5732](https://github.com/ethereum/EIPs/pull/5732/files): 简单提交接口
## 开发者资料
* [Solbase](https://github.com/Sol-DAO/solbase#readme) (Solidity 库): 添加 ERC2612 permit 扩展为 ERC20/721/1155
* [Solidity 数组生成器](https://github.com/mds1/solidity-generators#readme): Solidity 函数生成均匀间距数组,线性空间,范围,对数空间,设计用于测试,没有优化
* [Bit Magic](https://saxenism.com/web3/solidity/language-tricks/bit-magic/intermediate/2022/09/06/Bit-Magic-Solidity.html): Solidity 里的位操作指南
* Paul R Berg 的 Solidity 小贴士: [带有命名形参的函数调用](https://docs.soliditylang.org/en/latest/control-structures.html#function-calls-with-named-parameters)
* GitHub Action ,[用 Remix 运行 Solidity 单元测试](https://medium.com/remix-ide/solidity-unit-tests-via-a-github-action-9fd129b89349)
* Vyper [v0.3.7](https://github.com/vyperlang/vyper/releases/tag/v0.3.7): 内置isqrt & epsilon , block.prevrandao, public 常量 , 不可变变量
* [Serpentor](https://github.com/yearn/serpentor#readme): Vyper 链上投票与治理合约
* Huffmate [v1](https://github.com/pentagonxyz/huffmate/releases/tag/v1): Huff 合约库, 未审计
* [evm2](https://github.com/hananbeer/evm2#readme):在EVM内部运行的EVM
* ctc [v0.3.0](https://twitter.com/notnotstorm/status/1574214692834115585): Python 包与历史数据分析CLI
* [WhatsABI](https://github.com/shazow/whatsabi#readme): 通过 4 字节的 JUMPI 指令从地址猜测 ABI; [web app](https://abi.w1nt3r.xyz/)
* Heimdall [v0.1.5](https://github.com/Jon-Becker/heimdall-rs/releases/tag/0.1.5): 增加反编译, 生成ABI函数,事件和错误, beta版本
* Vitalik 的 [Py_plonk](https://github.com/ethereum/research/tree/master/py_plonk#readme): Python 的 SNARK (PLONK) 编译器, 检验器和验证器
* Raul Jordan: [函数式编程入门](https://rauljordan.com/2022/09/25/blog-series-functional-programming-for-blockchain.html)
* Ethernaut DAO CTF [vulnerable NFT 解决方案](https://stermi.xyz/blog/ethernautdao-ctf-vnft-solution)
## 安全
* MEV bot 0xbaD在套利约800个ETH之后 [因漏洞损失 1101 个 ETH ](https://twitter.com/bertcmiller/status/1574852628030361609), 攻击者用闪电贷调用实现设置 WETH 额度
* 不到48小时的时间里,在 16GB 的 Macbook M1 上[重建了 Wintermute 私钥](https://medium.com/amber-group/exploiting-the-profanity-flaw-e986576de7ab)
—
原文链接:https://weekinethereumnews.com/week-in-ethereum-news-october-1-2022/
作者:Evan Van Ness
翻译:[翻译小组](https://learnblockchain.cn/people/412)
(编者注:本翻译不代表登链社区的立场,也不代表我们(有能力并且已经)核实所有的事实并把他的观点分离开来。)
执行层
- Besu v22.7.4: 修复内存泄露的问题
- EIP4844 (proto-danksharding) 视频会议, 会议记录 和 准备清单
共识层
- Lighthouse v3.1.2: 降低执行节点超时的负载修剪选项,优化证明和区块处理
- bloXroute 的 ethical MEV-Boost 中继产生了无效区块
- Danny Ryan 关于EIP4844 是否耦合信标块和blob块的记录
EIP
- EIP5719: 签名替换接口
- EIP5725: 可转让所有权 NFT
- EIP5727: 半灵魂绑定代币
- EIP5732: 简单提交接口
开发者资料
- Solbase (Solidity 库): 添加 ERC2612 permit 扩展为 ERC20/721/1155
- Solidity 数组生成器: Solidity 函数生成均匀间距数组,线性空间,范围,对数空间,设计用于测试,没有优化
- Bit Magic: Solidity 里的位操作指南
- Paul R Berg 的 Solidity 小贴士: 带有命名形参的函数调用
- GitHub Action ,用 Remix 运行 Solidity 单元测试
- Vyper v0.3.7: 内置isqrt & epsilon , block.prevrandao, public 常量 , 不可变变量
- Serpentor: Vyper 链上投票与治理合约
- Huffmate v1: Huff 合约库, 未审计
- evm2:在EVM内部运行的EVM
- ctc v0.3.0: Python 包与历史数据分析CLI
- WhatsABI: 通过 4 字节的 JUMPI 指令从地址猜测 ABI; web app
- Heimdall v0.1.5: 增加反编译, 生成ABI函数,事件和错误, beta版本
- Vitalik 的 Py_plonk: Python 的 SNARK (PLONK) 编译器, 检验器和验证器
- Raul Jordan: 函数式编程入门
- Ethernaut DAO CTF vulnerable NFT 解决方案
安全
- MEV bot 0xbaD在套利约800个ETH之后 因漏洞损失 1101 个 ETH , 攻击者用闪电贷调用实现设置 WETH 额度
- 不到48小时的时间里,在 16GB 的 Macbook M1 上重建了 Wintermute 私钥
原文链接:https://weekinethereumnews.com/week-in-ethereum-news-october-1-2022/ 作者:Evan Van Ness 翻译:翻译小组
(编者注:本翻译不代表登链社区的立场,也不代表我们(有能力并且已经)核实所有的事实并把他的观点分离开来。)
本文参与区块链技术网 ,好文好收益,欢迎正在阅读的你也加入。
- 发表于 2022-10-08 11:42
- 阅读 ( 230 )
- 学分 ( 5 )
- 分类:以太坊