Skip to content

Commit

Permalink
feat(sepolia): add min priority per bid (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xfourzerofour committed Nov 6, 2023
1 parent 124be68 commit 075503e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/core/src/provider/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
type Transaction,
type Transport,
} from "viem";
import { arbitrum, arbitrumGoerli } from "viem/chains";
import { arbitrum, arbitrumGoerli, arbitrumSepolia } from "viem/chains";
import type {
ISmartContractAccount,
SignTypedDataParams,
Expand Down Expand Up @@ -61,6 +61,7 @@ export const noOpMiddleware: AccountMiddlewareFn = async (
const minPriorityFeePerBidDefaults = new Map<number, bigint>([
[arbitrum.id, 10_000_000n],
[arbitrumGoerli.id, 10_000_000n],
[arbitrumSepolia.id, 10_000_000n],
]);

export class SmartAccountProvider<
Expand Down

0 comments on commit 075503e

Please sign in to comment.