Skip to content

Commit

Permalink
feat: Added extension for EVM
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Apr 25, 2024
1 parent b0ea3af commit ab4684d
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -597,10 +597,7 @@ class ConfirmTokenTransactionCubit extends Cubit<ConfirmTokenTransactionState> {
return;
}

if (token.symbol == 'ETH' ||
token.symbol == 'MATIC' ||
token.symbol == 'FTM' ||
token.symbol == 'BNB') {
if (token.symbol.isEVM) {
await _withdrawEthereumBaseTokenByChainId(
tokenAmount: tokenAmount,
selectedAccountSecretKey: selectedAccountSecretKey,
Expand Down

0 comments on commit ab4684d

Please sign in to comment.