diff options
author | Kevin Serrano <kevin.serrano@consensys.net> | 2017-04-26 05:57:07 +0800 |
---|---|---|
committer | Kevin Serrano <kevin.serrano@consensys.net> | 2017-04-26 05:57:07 +0800 |
commit | 09034772d0536b6dd0a2c591986059b3eaba221d (patch) | |
tree | 72326c0d24c0cb31440c6d405885bf7d51f5f1e2 /README.md | |
parent | f2bf7326ccc87fa944307f0b1ffd7ca51621e53c (diff) | |
download | tangerine-wallet-browser-09034772d0536b6dd0a2c591986059b3eaba221d.tar tangerine-wallet-browser-09034772d0536b6dd0a2c591986059b3eaba221d.tar.gz tangerine-wallet-browser-09034772d0536b6dd0a2c591986059b3eaba221d.tar.bz2 tangerine-wallet-browser-09034772d0536b6dd0a2c591986059b3eaba221d.tar.lz tangerine-wallet-browser-09034772d0536b6dd0a2c591986059b3eaba221d.tar.xz tangerine-wallet-browser-09034772d0536b6dd0a2c591986059b3eaba221d.tar.zst tangerine-wallet-browser-09034772d0536b6dd0a2c591986059b3eaba221d.zip |
Add (vague) instructions to adding a new network to the dropdown.
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 |