Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change FTI min gas to 10_000 #299

Open
wants to merge 1 commit into
base: deficake/208-add-fti
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { FuelMessagePortalV4__factory as FuelMessagePortal } from '../../typecha
const ETH_DEPOSIT_LIMIT = MaxUint256;
const FTI_GAS_LIMIT = 2n ** 64n - 1n;
const FTI_MIN_GAS_PRICE = parseUnits('1', 'gwei');
const FTI_MIN_GAS_PER_TX = 1;
const FTI_MIN_GAS_PER_TX = 10_000;

const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
const {
Expand Down
Loading