Skip to content

Commit

Permalink
T
Browse files Browse the repository at this point in the history
  • Loading branch information
atarpara committed Sep 19, 2024
1 parent 3f94277 commit e77717b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ The Solidity smart contracts are located in the `src` directory.

```ml
accounts
├─ Pod — "Minimal Sub account with manage by mothership"
├─ Receiver — "Receiver mixin for ETH and safe-transferred ERC721 and ERC1155 tokens"
├─ ERC1271 — "ERC1271 mixin with nested EIP-712 approach"
├─ ERC4337 — "Simple ERC4337 account implementation"
Expand Down
1 change: 1 addition & 0 deletions src/Milady.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import "./accounts/ERC4337Factory.sol";
import "./accounts/ERC6551.sol";
import "./accounts/ERC6551Proxy.sol";
import "./accounts/LibERC6551.sol";
import "./accounts/Pod.sol";
import "./accounts/Receiver.sol";
import "./auth/Ownable.sol";
import "./auth/OwnableRoles.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/accounts/Pod.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.4;
import {Receiver} from "./Receiver.sol";

/// @notice Hyper minimal sub account contract that is intended to be controlled by a mothership contract.
/// @author Solady (https://github.com/vectorized/solady/blob/main/src/accounts/LibERC6551.sol)
/// @author Solady (https://github.com/vectorized/solady/blob/main/src/accounts/Pod.sol)
abstract contract Pod is Receiver {
/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/* STRUCTS */
Expand Down

0 comments on commit e77717b

Please sign in to comment.