mirror of
https://github.com/autistic-symposium/mev-toolkit.git
synced 2025-06-09 07:22:54 -04:00
Add data for Alchemy
This commit is contained in:
parent
6d7d1dda6f
commit
43146a848c
1 changed files with 18 additions and 12 deletions
|
@ -6,9 +6,14 @@
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
* "smart contract wallets": account abstraction that would avoid the need for consensus-layer protocol changes by enabling arbitrary logic to determine if an account can move funds. this enables wallets to have multi-sigs, social recovery, hardware enclaves, etc.
|
* this change implements censorship-resistant account abstraction without making any changes to the consensus layer of ethereum, by creating a new mempool, a smart contract wallet standard, and a shared entry point contract for managing user operations.
|
||||||
* erc-4337 it implements censorship-resistant aa without making any changes to the consensus layer of ethereum, by creating a new mempool, a smart contract wallet standard, and a shared entry point contract for managing user operations.
|
* this enables wallets to have multi-sigs, social recovery, hardware enclaves, etc.
|
||||||
* bundlers (new actors that are either block builders, or users that can send transactions to block builders through a bundle marketplace) package up a set of objects into a tx making a call to a special contract and sending objects to a separate mempool.
|
* **UserOperations** are pseudo-transactions objects that represent a user's intent.
|
||||||
|
* **Bundlers** are new actors that are either block builders, or users that can send transactions to block builders through a bundle marketplace. they package up a set of objects into a tx making a call to a special contract and sending objects to a separate mempool.
|
||||||
|
* the **EntryPoint** is a smart contract that receives **UserOperations** from **Bundlers**.
|
||||||
|
* Aggregators combines multiple signatures into a single signature, to validate multiple **UserOperatons** in one step.
|
||||||
|
* **Smart contract account** are the target of the **UserOperation** and will validate and execute the **UserOperation**.
|
||||||
|
* **Paymaster** create flexibility for how gas is paid and by whom.
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
|
@ -16,18 +21,19 @@
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
* [erc-4337 contract deployment](https://etherscan.io/address/0x0576a174D229E3cFA37253523E645A78A0C91B57#code)
|
* **[erc-4337 is on mainnet](https://twitter.com/erc4337/status/1631087958949531648)**
|
||||||
* [account abstraction gas benchmakrs, by eth-infinitism](https://github.com/eth-infinitism/account-abstraction/blob/develop/reports/gas-checker.txt)
|
* **[account abstraction, by safe](https://safe.mirror.xyz/9KmZjEbFkmI79s28d9xar6JWYrE50F5AHpa5CR12YGI)**
|
||||||
* [erc-4337: account abstraction using alt mempool](https://eips.ethereum.org/EIPS/eip-4337)
|
* **[erc-4337 contract deployment](https://etherscan.io/address/0x0576a174D229E3cFA37253523E645A78A0C91B57#code)**
|
||||||
* [account abstraction for everyone else, by cami](https://camiinthisthang.substack.com/p/account-abstraction-for-everyone)
|
* **[unpacking erc-4337, by a. chiplunkar](https://frontier.tech/unpacking-erc-4337)**
|
||||||
* [unpacking erc-4337, by a. chiplunkar](https://frontier.tech/unpacking-erc-4337)
|
* **[account abstraction series, by alchemy](https://www.alchemy.com/blog/account-abstraction)**
|
||||||
* [account abstraction, by safe](https://safe.mirror.xyz/9KmZjEbFkmI79s28d9xar6JWYrE50F5AHpa5CR12YGI)
|
* **[erc-4337 bundler implementation in rust](https://github.com/Vid201/aa-bundler)**
|
||||||
* [erc-4337 is on mainnet](https://twitter.com/erc4337/status/1631087958949531648)
|
* **[erc-4337: account abstraction using alt mempool](https://eips.ethereum.org/EIPS/eip-4337)**
|
||||||
* [erc-4337 bundler implementation in rust](https://github.com/Vid201/aa-bundler)
|
* **[account abstraction gas benchmakrs, by eth-infinitism](https://github.com/eth-infinitism/account-abstraction/blob/develop/reports/gas-checker.txt)**
|
||||||
|
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
###### protocols
|
###### protocols that don't use erc-4337
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue