Skip to content

Instantly share code, notes, and snippets.

@joseabraham
Last active February 28, 2022 03:56
Show Gist options
  • Save joseabraham/7806852aa06cb15cf833015017dfe856 to your computer and use it in GitHub Desktop.
Save joseabraham/7806852aa06cb15cf833015017dfe856 to your computer and use it in GitHub Desktop.
const downloadMetamaskLocally = async (): Promise<string> => {
try {
let metamaskPath = await download({
metamaskVersion: "v10.1.1",
metamaskLocation: './home/browserless'
});
return metamaskPath;
} catch (e) {
console.log("ERROR DOWNLOADING METAMASK", e);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment