Skip to content

Commit

Permalink
versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipp Makarov authored and Filipp Makarov committed Dec 22, 2023
1 parent 16edb8c commit de7c35b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/smart-account/SmartAccount.sol
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ contract SmartAccount is
using LibAddress for address;

// Storage Version
string public constant override VERSION = "2.0.0";
string public constant override VERSION = "2.1.0";

// Owner storage. Deprecated. Left for storage layout compatibility
address public ownerDeprecated;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ contract EcdsaOwnershipRegistryModule is
using ECDSA for bytes32;

string public constant NAME = "ECDSA Ownership Registry Module";
string public constant VERSION = "0.2.0";
string public constant VERSION = "1.1.0";
mapping(address => address) internal _smartAccountOwners;

/// @inheritdoc IEcdsaOwnershipRegistryModule
Expand Down
2 changes: 1 addition & 1 deletion contracts/smart-account/modules/PasskeyRegistryModule.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ contract PasskeyRegistryModule is
IPasskeyRegistryModule
{
string public constant NAME = "PassKeys Ownership Registry Module";
string public constant VERSION = "0.2.0";
string public constant VERSION = "1.1.0";

mapping(address => PassKeyId) public smartAccountPassKeys;

Expand Down
4 changes: 4 additions & 0 deletions contracts/smart-account/modules/SessionKeyManagerModule.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ contract SessionKeyManager is
BaseAuthorizationModule,
ISessionKeyManagerModule
{

string public constant NAME = "Session Key Manager Module";
string public constant VERSION = "1.1.0";

/**
* @dev mapping of Smart Account to a SessionStorage
* Info about session keys is stored as root of the merkle tree built over the session keys
Expand Down

0 comments on commit de7c35b

Please sign in to comment.