Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/accounts/erc7579/ERC7579Factory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import {
import { ERC7579Precompiles } from "../../deployment/precompiles/ERC7579Precompiles.sol";

contract ERC7579Factory is IAccountFactory, ERC7579Precompiles {
IERC7579Account internal implementation;
IERC7579Bootstrap internal bootstrapDefault;
IERC7579Account public implementation;
IERC7579Bootstrap public bootstrapDefault;

function init() public override {
implementation = deployERC7579Account();
Expand Down
4 changes: 2 additions & 2 deletions src/accounts/kernel/KernelFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ struct ModuleBootstrapConfig {
}

contract KernelFactory is IAccountFactory, KernelPrecompiles {
IKernelAccountFactory internal factory;
IKernel internal kernelImpl;
IKernelAccountFactory public factory;
IKernel public kernelImpl;
MockHookMultiPlexer public hookMultiPlexer;

function init() public override {
Expand Down
6 changes: 3 additions & 3 deletions src/accounts/nexus/NexusFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import { REGISTRY_ADDR } from "../../deployment/predeploy/Registry.sol";
import { NexusPrecompiles } from "../../deployment/precompiles/NexusPrecompiles.sol";

contract NexusFactory is IAccountFactory, NexusPrecompiles {
INexusAccountFactory internal factory;
INexusBootstrap internal bootstrapDefault;
address internal nexusImpl;
INexusAccountFactory public factory;
INexusBootstrap public bootstrapDefault;
address public nexusImpl;

function init() public override {
// Deploy precompiled contracts
Expand Down
8 changes: 4 additions & 4 deletions src/accounts/safe/SafeFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ import { Safe7579Precompiles } from "../../deployment/precompiles/Safe7579Precom

contract SafeFactory is IAccountFactory, Safe7579Precompiles {
// singletons
ISafe7579 internal safe7579;
ISafe7579Launchpad internal launchpad;
address internal safeSingleton;
ISafeProxyFactory internal safeProxyFactory;
ISafe7579 public safe7579;
ISafe7579Launchpad public launchpad;
address public safeSingleton;
ISafeProxyFactory public safeProxyFactory;

function init() public override {
safe7579 = deploySafe7579();
Expand Down
Loading