- Just looking to download? Grab our latest release.
- Looking for the old site? Check out https://legacy.mycrypto.com or the source at MyCryptoHQ/mycrypto.com
- Node 8.9.4*
- Yarn >= 1.7.0**
- Python 2.7.X***
*Higher versions should work fine, but may cause inconsistencies. It's suggested you run 8.9.4 using nvm
.
**npm is NOT supported for package management. MyCrypto uses yarn.lock to ensure sub-dependency versions are pinned, so yarn is required to install node_modules
***Python 3 is not supported, since our dependencies use node-gyp
.
***For users trying to build with WSL, you'll need to have install libpng via sudo apt-get install libpng16-dev
.
After yarn
ing all dependencies you can run various commands depending on what you want to do:
# run app in dev mode in browser, rebuild on file changes
yarn dev
# run app in dev mode in electron, rebuild on file changes
yarn dev:electron
# builds the production server app
yarn build
# builds the downloadable version of the site
yarn build:downloadable
# builds the electron apps
yarn build:electron
# builds only one OS's electron app
yarn build:electron:(osx|linux|windows)
All of these builds are output to a folder in dist/
.
# run unit tests with Jest
yarn test
# run integration tests with Jest
yarn test:int
Some parts of the site, such as the Ledger wallet, require an HTTPS environment to work. To develop on HTTPS, do the following:
- Create your own SSL Certificate (Heroku has a nice guide here)
- Move the
.key
and.crt
files intowebpack_config/server.*
- Run the following command:
yarn dev:https
EthereumJS-Util previously contained a bug that would incorrectly derive addresses from private keys with a 1/128 probability of occurring. A summary of this issue can be found here.
As a reactionary measure, the address derivation checker was created.
To test for correct address derivation, the address derivation checker uses multiple sources of address derivation (EthereumJS and PyEthereum) to ensure that multiple official implementations derive the same address for any given private key.
- Docker installed/available
- dternyak/eth-priv-to-addr pulled from DockerHub
- Install docker (on macOS, Docker for Mac is suggested)
docker pull dternyak/eth-priv-to-addr
The derivation checker utility runs as part of the integration test suite.
yarn test:int
│
├── common
│ ├── api - Services and XHR utils
│ ├── assets - Images, fonts, etc.
│ ├── components - Components according to "Redux philosophy"
│ ├── config - Various config data and hard-coded json
│ ├── containers - Containers according to "Redux philosophy"
| ├── features - State management and async operations, organized per "feature", follows "ducks" philosophy, see: https://github.com/MyCryptoHQ/MyCrypto/issues/1435
│ ├── libs - Framework-agnostic libraries and business logic
| ├── contracts - Takes in a contract interface ABI and returns an object with keys equivalent to the ABI function names that each have `.encodeInput`, `.decodeInput`, `decodeOutput` methods.
| ├── ens - Basic ENS functions for getting a name hash and mapping returned ENS contract values to human-readable strings
| ├── nodes - Configures Shepherd (https://github.com/MyCryptoHQ/shepherd) and exports a singleton provider
| ├── scheduling - Functionality for enabling Ethereum Alarm Clock usage for scheduled transactions. See https://github.com/MyCryptoHQ/MyCrypto/pull/1343
| ├── transaction - Utilities for signing / parsing / validating transactions
| ├── wallet - Wallet implementations for deterministic (hw wallets, mnemonic wallets, etc), and non-deterministic (web3, parity signer, etc.) wallets.
| ├── web-workers - Web-worker implementation of generateKeystore + fromV3 for non-blocking encrypt/decryption
| ├── erc20 - `libs/contracts` instance of erc20 abi
| ├── formatters - Hex string formatters
| ├── signing - Message signing and signature verification
| ├── units - Helper functions for working with Ethereum / Token units in both base and unit form. Use these instead of using bn.js directly
| ├── validators - Validation functions for addresses, hex strings, keys, numbers, derivation paths, EAC values, Ethereum values, etc.
| ├── values - Functions for building EIP681 requests, numberical sanitization, string padding, bn.js conversion
│ ├── sass - SCSS styles, variables, mixins
│ ├── translations - Language JSON dictionaries
│ ├── typescript - Typescript definition files
│ ├── utils - Common use utility functions
│ ├── index.tsx - Entry point for app
│ ├── index.html - Html template file for html-webpack-plugin
│ ├── Root.tsx - Root component for React
├── electron-app - Code for the native electron app
├── jest_config - Jest testing configuration
├── spec - Jest unit tests, mirror's common's structure
├── static - Files that don't get compiled, just moved to build
└── webpack_config - Webpack configuration
More information is available on the Wiki Pages
Cross browser testing and debugging provided by the very lovely team at BrowserStack.