Skip to content

Commit

Permalink
✨ feat: Upgrade MetaMask to version 11.6.3 (#1022)
Browse files Browse the repository at this point in the history
  • Loading branch information
duckception authored Dec 1, 2023
1 parent 96c800d commit 82f9e1f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions packages/core/src/downloadFile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ export async function downloadFile(options: DownloaderOptions) {
return
}

console.log(`[DEBUG] Downloading file from ${url}`)

axios
.get(url, {
responseType: 'stream'
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/prepareExtension.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { downloadFile, ensureCacheDirExists, unzipArchive } from '.'

export const DEFAULT_METAMASK_VERSION = '11.6.0'
export const DEFAULT_METAMASK_VERSION = '11.6.3'
export const EXTENSION_DOWNLOAD_URL = `https://github.com/MetaMask/metamask-extension/releases/download/v${DEFAULT_METAMASK_VERSION}/metamask-chrome-${DEFAULT_METAMASK_VERSION}.zip`

// NOTE: This function is copied from `wallets/metamask/src/prepareExtension.ts` only TEMPORARILY!
Expand Down
2 changes: 1 addition & 1 deletion wallets/metamask/src/prepareExtension.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { downloadFile, ensureCacheDirExists, unzipArchive } from 'core'

export const DEFAULT_METAMASK_VERSION = '11.6.0'
export const DEFAULT_METAMASK_VERSION = '11.6.3'
export const EXTENSION_DOWNLOAD_URL = `https://github.com/MetaMask/metamask-extension/releases/download/v${DEFAULT_METAMASK_VERSION}/metamask-chrome-${DEFAULT_METAMASK_VERSION}.zip`

export async function prepareExtension() {
Expand Down

0 comments on commit 82f9e1f

Please sign in to comment.