Skip to content

Commit

Permalink
Feat: enable Safe version 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
katspaugh committed Feb 6, 2024
1 parent 91f4418 commit 0b40793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/coreSDK/safeCoreSDK.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const isLegacyVersion = (safeVersion: string): boolean => {
}

export const isValidSafeVersion = (safeVersion?: SafeInfo['version']): safeVersion is SafeVersion => {
const SAFE_VERSIONS: SafeVersion[] = ['1.3.0', '1.2.0', '1.1.1', '1.0.0']
const SAFE_VERSIONS: SafeVersion[] = ['1.4.1', '1.3.0', '1.2.0', '1.1.1', '1.0.0']
return !!safeVersion && SAFE_VERSIONS.some((version) => semverSatisfies(safeVersion, version))
}

Expand Down

0 comments on commit 0b40793

Please sign in to comment.