Rabby
Rabby copied to clipboard
The game-changing wallet for Ethereum and all EVM chains
Rabby 
Rabby is an open source browser plugin for the DeFi ecosystem, providing users with a better-to-use and more secure multi-chain experience.
Install
You can Download the latest Rabby here.
Contribution
Install dependency
- Install Node.js version 14 or later
- Install Yarn
npm install -g yarn - Run
yarnto install dependency
Development
Run yarn build:dev to develop with file watching and development log(you can see request sent by dapp in website console in this mode and notification will not close when focus lost)
Run yarn build:pro to build a production package, it's in dist folder
Language
- Copy
_raw/_locales/en/messages.jsonto_raw/_locales/${localCode}/messages.json(Find your locale code in https://en.wikipedia.org/wiki/Language_localisation#Language_tags_and_codes) - Replace content in
messageproperty to your locale language
ATTENTION: When you create a new key, make sure the key should without space and not duplicate with exist(case insensitive)
Architecture

Extension's scripts
below 4 scripts all live in different context!
- background.js
for all async request and encrypt things.
user's keyrings, password and wallet personal preference data all stored in chrome local storage.
it has 2 main controllers:
-
walletControllerit expose methods to background window, so other scripts can access these methods with
runtime.getBackgroundPage, e.g.ui.js. -
providerControllerit handles request from pages(dapp request).
- content-script
injected at document_start, share the same dom with dapp, use broadcastChannel to tap pageProvider.
the main purpose is inject pageProvider.js and pass messages between pageProvider.js and background.js.
- pageProvider.js
this script is injected into dapp's context through content-script. it mounts ethereum to window.
when dapp use window.ethereum to request, it will send message to content-script with broadcastChannel and wait for it's response.
then the content-script will send message to background with runtime.connect.
after background receive the message, it will use providerController to handle the request. and keep the message channel in sessionSevice for later communicate.
- ui
it's used by 3 pages which share the same js code, but the template html is different for respective purpose.
-
notification.htmltriggered by dapp to request user's permission.
-
index.htmlopened in browser tab for better user interaction experience.
-
popup.htmluser click the extension icon on the right of address bar, the popup will show.
Thanks
Thanks for contributions from MetaMask team to browser extension wallet community, Rabby use (or fork) them to make Rabby better.