or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing
xxxxxxxxxx
EIP 7702 - proposed changes breakout session
Current 7702 spec
Before 7702 EIP ethereum had 2 types of accounts
SCAs are preferred option over EOAs because they have 3 great UX properties.
The current 7702 spec defines a third type of account:
Note, the 7702 spec remains in active development. The change from ephemeral to persistant was merged 2 weeks ago and our conversations with wallet teams showed half of them were not aware of these changes.
It is important to make sure the 7702 proposal is mindful of the needs of the stakeholders it aims to serve.
Short falls of the current EIP-7702:
Proposed changes
The core of the suggested changes is to remove the ability of EOAs to make transactions when the account has code. So instead of creating a new type of account, have a mechanism to cleanly switch between EOA and SCA account types.
The following changes would be made to the EIP:
Wallet teams who support the above proposal are: Argent, Chainsafe, Fireblocks, Metamask, OneBalance, Rabby, Safe, Trustwallet, Walletconnect, Zerion, 4337 team. Note, many wallet teams are suffering from 7702 fatigue. Whilst they support these proposed changes, the most important is not to delay 7702 from its inclusion in Pectra.
Benefits of the suggested changes
In defense of enabling 3607 (disable EOA txn origination)
There are 2 main arguments against enabling 3607:
ERECOVER
There are 3 points against this issue:
In-protocol revocation
This is a valid argument, and at the root of the debate. Who should have the root power. Is is the private key or the smart contract code? There are good arguments on both the sides. We hope to come to some conclusion at this breakout.
In defense of CODERESET
The Codereset OPCODE can be called from inside the smart contract to delete code and not its storage. There are 2 main arguments against this:
New OPCODE
We propose to reuse the SELFDESTRUCT OPCODE in context of a migrated EOA, such that it can only delete the code pointer and not storage. This means that this is not a new opcode but reusing of an old one.
Storage slot collisions
Storage slot collisions exist in all smart contract upgrades. Any smart contract wallet implementations have to deal with this issue. Two mitigation paths have been proposed for this, which need to be implemented regardless of 7702.
In defense of optional calldata
Main reason for opposing optional calldata is that it increases complexity of the EIP.
Increases complexity
Wallet teams will have to manage two different versions of wallet code one which is 7702 compatible and one which is not.