Skip to content
Draft
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
2 changes: 1 addition & 1 deletion src/libs/account/account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ export function isBasicAccount(account: Account, state: AccountOnchainState): bo
return !account.creation && !state.isSmarterEoa
}

const KEY_TYPES_ABLE_TO_BECOME_SMARTER: Key['type'][] = ['internal', 'lattice']
const KEY_TYPES_ABLE_TO_BECOME_SMARTER: Key['type'][] = ['internal', 'lattice', 'trezor']

// can the account as a whole become smarter (disregarding chain and state)
export function canBecomeSmarter(acc: Account, accKeys: Key[]): boolean {
Expand Down
Loading