Skip to content

Commit

Permalink
fix dart analyze issues
Browse files Browse the repository at this point in the history
  • Loading branch information
code-z2 committed Jun 2, 2024
1 parent 3848956 commit 800942f
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion lib/src/4337/factory.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
part of '../../variance_dart.dart';

/// A factory class for creating various types of Ethereum smart wallets.
/// {@inheritDoc SmartWalletFactoryBase}
class SmartWalletFactory implements SmartWalletFactoryBase {
final Chain _chain;
final MSI _signer;
Expand Down
2 changes: 1 addition & 1 deletion lib/src/interfaces/account_factories.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ abstract class SafeProxyFactoryBase {
Future<Uint8List> proxyCreationCode({BlockNum? atBlock});

Future<String> createProxyWithNonce(
EthereumAddress _singleton,
EthereumAddress singleton,
Uint8List initializer,
BigInt saltNonce, {
required Credentials credentials,
Expand Down
1 change: 1 addition & 0 deletions lib/src/interfaces/safe_module.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
part of 'interfaces.dart';

abstract class Safe4337ModuleBase {
// ignore: non_constant_identifier_names
Future<EthereumAddress> SUPPORTED_ENTRYPOINT({BlockNum? atBlock});

Future<String> executeUserOpWithErrorString(
Expand Down
1 change: 0 additions & 1 deletion lib/variance_dart.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import 'package:web3dart/json_rpc.dart';
import 'package:web3dart/web3dart.dart';

import 'src/abis/abis.dart';
import 'src/common/logger.dart';
import 'src/interfaces/interfaces.dart';

export 'src/abis/abis.dart' show ContractAbis;
Expand Down

0 comments on commit 800942f

Please sign in to comment.