Skip to content

Commit

Permalink
refactor: Re-add fantom #2871
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Sep 4, 2024
1 parent 3c7dc33 commit d4b4ae7
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions lib/wallet/cubit/wallet_cubit.dart
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,12 @@ class WalletCubit extends Cubit<WalletState> {
/// creating accounts at start
final accounts = <BlockchainType, int>{
BlockchainType.polygon: 0,
BlockchainType.binance: 1,
BlockchainType.tezos: 2,
BlockchainType.etherlink: 3,
BlockchainType.ethereum: 4, // default account as it is last
BlockchainType.fantom: 0,
BlockchainType.polygon: 1,
BlockchainType.binance: 2,
BlockchainType.tezos: 3,
BlockchainType.etherlink: 4,
BlockchainType.ethereum: 5, // default account as it is last
};

for (final entry in accounts.entries) {
Expand Down

0 comments on commit d4b4ae7

Please sign in to comment.