Skip to content

Commit

Permalink
Merge pull request #1406 from crypto-com/dev
Browse files Browse the repository at this point in the history
Internal Release v1.4.7
  • Loading branch information
crypto-matto authored Jan 18, 2024
2 parents 345bc67 + 587353c commit e8a9b6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/GasCustomize/EVM/GasModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ const ModalBody = (props: {
}}
>
<div style={{ color: '#7B849B' }}>{t('estimate-time')}</div>
<div>{isUsingCustomGas ? `~1~24 ${t('general.hours').toLowerCase()}` : '6s'}</div>
<div>{isUsingCustomGas ? `~1~24 ${t('general.hours').toLowerCase()}` : '30s'}</div>
</div>
<Form.Item
style={{
Expand Down
5 changes: 2 additions & 3 deletions src/config/StaticConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,9 +257,8 @@ export type WalletConfig = {
export const FIXED_DEFAULT_FEE = String(10_000);
export const FIXED_DEFAULT_GAS_LIMIT = String(300_000);
export const DEFAULT_IBC_TRANSFER_TIMEOUT = 3_600_000;

export const EVM_MINIMUM_GAS_PRICE = String(42_000_000_000);
export const EVM_MINIMUM_GAS_LIMIT = String(42_000);
export const EVM_MINIMUM_GAS_PRICE = String(10_000_000_000_000);
export const EVM_MINIMUM_GAS_LIMIT = String(50_000);

export const NFT_IMAGE_DENOM_SCHEMA = {
title: 'Asset Metadata',
Expand Down

0 comments on commit e8a9b6e

Please sign in to comment.