Skip to content

Commit

Permalink
fix build: via-ir and mark contract non abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
livingrockrises committed Mar 22, 2024
1 parent b4c7374 commit 4f7596e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/sponsorship/SponsorshipPaymasterWithPremium.sol
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import { IBiconomySponsorshipPaymaster } from "../interfaces/IBiconomySponsorshi

// @Todo: Add more methods in interface

abstract contract BiconomySponsorshipPaymaster is BasePaymaster, ReentrancyGuard, BiconomySponsorshipPaymasterErrors, IBiconomySponsorshipPaymaster {
contract BiconomySponsorshipPaymaster is BasePaymaster, ReentrancyGuard, BiconomySponsorshipPaymasterErrors, IBiconomySponsorshipPaymaster {
using UserOperationLib for PackedUserOperation;
using SignatureCheckerLib for address;

Expand Down
1 change: 1 addition & 0 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
cache_path = "cache_forge"
libs = ["node_modules", "lib"]
gas_reports_ignore = ["LockTest"]
via_ir = true

[profile.ci]
fuzz = { runs = 10_000 }
Expand Down
1 change: 1 addition & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const config: HardhatUserConfig = {
yul: true,
},
},
viaIR: true,
},
},
docgen: {
Expand Down

0 comments on commit 4f7596e

Please sign in to comment.