Skip to content

ROSE Wallet Extension - beta

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 19 Apr 23:17
· 417 commits to master since this release
v2.0.0-beta
6b073c0

To install beta version as a separate extension:

  • open chrome://extensions/
  • click top right to enable Developer mode
  • download rose-wallet-extension-beta.zip (assets below)
  • drag it into chrome://extensions/

To copy saved wallets from old extension (advanced users and devs):

  • extensions and instructions like these could be malicious and steal your tokens - don't blindly trust them
  • open chrome-extension://ppdadbejkmjnefldpcdjhnkpbjkikoip/manifest.json and open console and run:
    if (location.href !== 'chrome-extension://ppdadbejkmjnefldpcdjhnkpbjkikoip/manifest.json') throw 'Is this the new extension instead of old one?';
    copy(`
    if ((await new Promise(resolve => chrome.storage.local.get('keyringData', resolve))).keyringData) throw 'Already has keyringData. Is this old extension instead of new one?';
    const chromeStorageLocal = ${JSON.stringify(await new Promise(resolve => chrome.storage.local.get(null, resolve)))};
    await new Promise(resolve => chrome.storage.local.set(chromeStorageLocal, resolve));
    Object.entries(${JSON.stringify(window.localStorage)}).forEach(([k, v]) => window.localStorage.setItem(k, v));
    chrome.extension.getBackgroundPage().location.reload();
    location.reload();
    `)
  • chrome-extension://jeooipjboldjebnajiegnfpklodgimmf/manifest.json open console and paste.
  • click the new extension