Skip to content

Commit

Permalink
yarn lint runs successfully
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivaanshK committed Jul 3, 2024
1 parent b4276e4 commit 9e72f5c
Show file tree
Hide file tree
Showing 9 changed files with 890 additions and 677 deletions.
22 changes: 10 additions & 12 deletions contracts/interfaces/IBiconomySponsorshipPaymaster.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,16 @@
pragma solidity ^0.8.26;

interface IBiconomySponsorshipPaymaster {
event PostopCostChanged(uint256 indexed _oldValue, uint256 indexed _newValue);
event FixedPriceMarkupChanged(uint32 indexed _oldValue, uint32 indexed _newValue);
event PostopCostChanged(uint256 indexed oldValue, uint256 indexed newValue);
event FixedPriceMarkupChanged(uint32 indexed oldValue, uint32 indexed newValue);

event VerifyingSignerChanged(address indexed _oldSigner, address indexed _newSigner, address indexed _actor);
event VerifyingSignerChanged(address indexed oldSigner, address indexed newSigner, address indexed actor);

event FeeCollectorChanged(
address indexed _oldFeeCollector, address indexed _newFeeCollector, address indexed _actor
);
event GasDeposited(address indexed _paymasterId, uint256 indexed _value);
event GasWithdrawn(address indexed _paymasterId, address indexed _to, uint256 indexed _value);
event GasBalanceDeducted(address indexed _paymasterId, uint256 indexed _charge, bytes32 indexed userOpHash);
event PremiumCollected(address indexed _paymasterId, uint256 indexed _premium);
event FeeCollectorChanged(address indexed oldFeeCollector, address indexed newFeeCollector, address indexed actor);
event GasDeposited(address indexed paymasterId, uint256 indexed value);
event GasWithdrawn(address indexed paymasterId, address indexed to, uint256 indexed value);
event GasBalanceDeducted(address indexed paymasterId, uint256 indexed charge, bytes32 indexed userOpHash);
event PremiumCollected(address indexed paymasterId, uint256 indexed premium);
event Received(address indexed sender, uint256 value);
event TokensWithdrawn(address indexed _token, address indexed _to, uint256 indexed _amount, address actor);
}
event TokensWithdrawn(address indexed token, address indexed to, uint256 indexed amount, address actor);
}
1 change: 0 additions & 1 deletion contracts/mocks/Imports.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ import "account-abstraction/contracts/core/EntryPointSimulations.sol";

import "@biconomy-devx/erc7579-msa/contracts/SmartAccount.sol";
import "@biconomy-devx/erc7579-msa/contracts/factory/AccountFactory.sol";

2 changes: 1 addition & 1 deletion contracts/mocks/MockValidator.sol
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pragma solidity ^0.8.26;

import "@biconomy-devx/erc7579-msa/test/foundry/mocks/MockValidator.sol";
import "@biconomy-devx/erc7579-msa/test/foundry/mocks/MockValidator.sol";
4 changes: 2 additions & 2 deletions contracts/utils/SoladyOwnable.sol
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;

import {Ownable} from "solady/src/auth/Ownable.sol";
import { Ownable } from "solady/src/auth/Ownable.sol";

contract SoladyOwnable is Ownable {
constructor(address _owner) Ownable() {
_initializeOwner(_owner);
}
}
}
Loading

0 comments on commit 9e72f5c

Please sign in to comment.