diff options
author | Thomas Huang <tmashuang@users.noreply.github.com> | 2017-04-28 06:08:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-28 06:08:13 +0800 |
commit | d8a5e6a8e43f04a9f123167326fe46dfb8fc2ae6 (patch) | |
tree | 9143b42107d8aeb75fa58f8de45c5730bb8621dd /README.md | |
parent | a90b010de891f7936bc17c09c5fd27c61fc0610d (diff) | |
parent | d1a10691802fc7eef65f13126c684b6cdf13d461 (diff) | |
download | tangerine-wallet-browser-d8a5e6a8e43f04a9f123167326fe46dfb8fc2ae6.tar tangerine-wallet-browser-d8a5e6a8e43f04a9f123167326fe46dfb8fc2ae6.tar.gz tangerine-wallet-browser-d8a5e6a8e43f04a9f123167326fe46dfb8fc2ae6.tar.bz2 tangerine-wallet-browser-d8a5e6a8e43f04a9f123167326fe46dfb8fc2ae6.tar.lz tangerine-wallet-browser-d8a5e6a8e43f04a9f123167326fe46dfb8fc2ae6.tar.xz tangerine-wallet-browser-d8a5e6a8e43f04a9f123167326fe46dfb8fc2ae6.tar.zst tangerine-wallet-browser-d8a5e6a8e43f04a9f123167326fe46dfb8fc2ae6.zip |
Merge pull request #1352 from MetaMask/rinkeby
Rinkeby
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -168,3 +168,28 @@ To delete a notice: npm run deleteNotice ``` A list of active notices will pop up. Enter the corresponding id in the command line prompt and add and commit the new changes afterwards. + +## Adding Custom Networks + +To add another network to our dropdown menu, make sure the following files are adjusted properly: + +``` +app/scripts/config.js +app/scripts/lib/buy-eth-url.js +app/scripts/lib/config-manager.js +ui/app/app.js +ui/app/components/buy-button-subview.js +ui/app/components/drop-menu-item.js +ui/app/components/network.js +ui/app/components/transaction-list-item.js +ui/app/config.js +ui/app/css/lib.css +ui/lib/account-link.js +ui/lib/explorer-link.js +``` + +You will need: ++ The network ID ++ An RPC Endpoint url ++ An explorer link ++ CSS for the display icon |