We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6faadd commit e002b4eCopy full SHA for e002b4e
1 file changed
src/libs/account/Safe.ts
@@ -76,7 +76,11 @@ export class Safe extends BaseAccount {
76
feePaymentOptions: FeePaymentOption[]
77
): FeePaymentOption[] {
78
const hasPaymaster =
79
- estimation.bundlerEstimation && estimation.bundlerEstimation.paymaster.isUsable()
+ estimation.bundlerEstimation &&
80
+ estimation.bundlerEstimation.paymaster.isUsable() &&
81
+ // disable the Safe gas tank for megaeth for now as we need a special
82
+ // estimation implementation for it to make it work
83
+ this.network.chainId !== 4326n
84
85
return feePaymentOptions.filter(
86
(opt) => isNative(opt.token) || (hasPaymaster && opt.token.flags.onGasTank)
0 commit comments