diff --git a/EIPS/eip-3690.md b/EIPS/eip-3690.md index 40ebc7b8858fe4..deeb8f7edd4896 100644 --- a/EIPS/eip-3690.md +++ b/EIPS/eip-3690.md @@ -68,7 +68,7 @@ This feature is introduced on the very same block [EIP-3540](./eip-3540.md) is e ### Jumpdests section is bounded -The length of the `jumpdests` section is bounded by the EOF maximum section size value 0xffff. Moreover, for deployed code this additionally limited by the max bytecode size 0x6000. Then any valid `jumpdests` section may not be more larger than 0x3000. +The length of the `jumpdests` section is bounded by the EOF maximum section size value 0xffff. Moreover, for deployed code this is additionally limited by the max bytecode size 0x6000. Then any valid `jumpdests` section may not be larger than 0x3000. ### Delta encoding diff --git a/EIPS/eip-7705.md b/EIPS/eip-7705.md index 55607f6b865de2..819fe5f8e113f3 100644 --- a/EIPS/eip-7705.md +++ b/EIPS/eip-7705.md @@ -16,7 +16,7 @@ Add two opcodes, `NONREENTRANT` and `REENTRANT`, which set and clear a contract' ## Motivation -Reentrancy attacks account for a substantial portion of user funds stolen on EVM chains, including the famous "DAO hack". However, due to the cost of preventing against reentrancy attacks in application code, developers often opt-out of reentrancy protection. This cost has come down with the advent of transient storage ([EIP-1153](./eip-1153.md)), but it is still not cheap enough where it is a "no-brainer" to use it by default. This EIP proposes opcodes which make it cheaper to protect against reentrancy in application code. +Reentrancy attacks account for a substantial portion of user funds stolen on EVM chains, including the famous "DAO hack". However, due to the cost of preventing reentrancy attacks in application code, developers often opt-out of reentrancy protection. This cost has come down with the advent of transient storage ([EIP-1153](./eip-1153.md)), but it is still not cheap enough where it is a "no-brainer" to use it by default. This EIP proposes opcodes which make it cheaper to protect against reentrancy in application code. ## Specification