Skip to content

Commit e8a9b6e

Browse files
authored
Merge pull request #1406 from crypto-com/dev
Internal Release v1.4.7
2 parents 345bc67 + 587353c commit e8a9b6e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/components/GasCustomize/EVM/GasModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ const ModalBody = (props: {
186186
}}
187187
>
188188
<div style={{ color: '#7B849B' }}>{t('estimate-time')}</div>
189-
<div>{isUsingCustomGas ? `~1~24 ${t('general.hours').toLowerCase()}` : '6s'}</div>
189+
<div>{isUsingCustomGas ? `~1~24 ${t('general.hours').toLowerCase()}` : '30s'}</div>
190190
</div>
191191
<Form.Item
192192
style={{

src/config/StaticConfig.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -257,9 +257,8 @@ export type WalletConfig = {
257257
export const FIXED_DEFAULT_FEE = String(10_000);
258258
export const FIXED_DEFAULT_GAS_LIMIT = String(300_000);
259259
export const DEFAULT_IBC_TRANSFER_TIMEOUT = 3_600_000;
260-
261-
export const EVM_MINIMUM_GAS_PRICE = String(42_000_000_000);
262-
export const EVM_MINIMUM_GAS_LIMIT = String(42_000);
260+
export const EVM_MINIMUM_GAS_PRICE = String(10_000_000_000_000);
261+
export const EVM_MINIMUM_GAS_LIMIT = String(50_000);
263262

264263
export const NFT_IMAGE_DENOM_SCHEMA = {
265264
title: 'Asset Metadata',

0 commit comments

Comments
 (0)