Skip to content

Commit

Permalink
Merge branch 'feat/erc-7579-interfaces' into feat/slither
Browse files Browse the repository at this point in the history
  • Loading branch information
Aboudjem authored Feb 20, 2024
2 parents c2fe10b + dd34a2e commit 2dfe928
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/Account/Storage.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { IStorage } from "../interfaces/IStorage.sol";

contract Storage is IStorage {
/// @custom:storage-location erc7201:biconomy.storage.SmartAccount
/// ERC-7201 namespaced via `keccak256(encode(uint256(keccak256("id")) - 1)) & ~0xff`
/// ERC-7201 namespaced via `keccak256(encode(uint256(keccak256("biconomy.storage.SmartAccount")) - 1)) & ~0xff`
bytes32 private constant _STORAGE_LOCATION = 0x34e06d8d82e2a2cc69c6a8a18181d71c19765c764b52180b715db4be61b27a00;

/**
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/IStorage.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
pragma solidity 0.8.24;

interface IStorage {
/// @custom:storage-location erc7201:openzeppelin.storage.ERC20
/// @custom:storage-location erc7201:biconomy.storage.SmartAccount
struct AccountStorage {
mapping(address => address) modules;
}
Expand Down

0 comments on commit 2dfe928

Please sign in to comment.