aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/controllers/network.js
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'uat' into uat-master-011618Alexander Tseung2018-01-171-6/+34
|\
| * Track usage of old and new UI (#2794)Alexander Tseung2017-12-231-6/+34
| | | | | | [NewUI] Track usage of old and new UI
* | provider - infura - use infura REST apikumavis2018-01-091-2/+5
|/
* Change console.log for opts in _configureInfuraProviderThomas Huang2017-12-161-1/+1
|
* Revert "Revert "network - for infura networks use the infura block tracker ↵kumavis2017-12-141-7/+50
| | | | | | provider"" This reverts commit 5df7dcd758c5a16b503a5ee237970c05c7e990c9.
* Revert "network - for infura networks use the infura block tracker provider"Frankie2017-12-141-50/+7
|
* network - for infura networks use the infura block tracker providerkumavis2017-12-141-7/+50
|
* Pass polling interval to zero client providerDan Finlay2017-12-101-1/+5
|
* Merge pull request #2441 from MetaMask/kumavis-patch-3Dan Finlay2017-11-281-1/+1
|\ | | | | NetworkController - add warning when aborting lookupNetwork
| * network controller - warn via log.warnkumavis2017-11-281-1/+1
| |
| * Update network.jskumavis2017-10-241-1/+1
| |
* | Merge pull request #2422 from watilde/fixes-lintKevin Serrano2017-10-251-1/+1
|\ \ | |/ |/| Fixes lint warnings
| * Fix lint warningsDaijiro Wachi2017-10-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed warnings: ```md app/scripts/controllers/computed-balances.js + 35:27 warning Missing space before function parentheses space-before-function-paren + 41:14 warning 'address' is never reassigned. Use 'const' instead prefer-const + 61:9 warning 'updater' is never reassigned. Use 'const' instead prefer-const + 68:11 warning 'newState' is never reassigned. Use 'const' instead prefer-const app/scripts/controllers/network.js + 104:29 warning Missing space before function parentheses space-before-function-paren app/scripts/lib/createLoggerMiddleware.js + 4:32 warning Missing space before function parentheses space-before-function-paren + 15:2 warning Newline required at end of file but not found eol-last app/scripts/lib/createOriginMiddleware.js + 4:32 warning Missing space before function parentheses space-before-function-paren + 9:2 warning Newline required at end of file but not found eol-last app/scripts/lib/createProviderMiddleware.js + 5:34 warning Missing space before function parentheses space-before-function-paren + 13:2 warning Newline required at end of file but not found eol-last app/scripts/lib/events-proxy.js + 1:50 warning Missing space before function parentheses space-before-function-paren + 31:2 warning Newline required at end of file but not found eol-last app/scripts/lib/nodeify.js + 2:22 warning Missing space before function parentheses space-before-function-paren + 2:24 warning Missing space before opening brace space-before-blocks + 5:18 warning Missing space before function parentheses space-before-function-paren + 5:20 warning Missing space before opening brace space-before-blocks app/scripts/lib/pending-balance-calculator.js + 16:19 warning Missing space before function parentheses space-before-function-paren app/scripts/lib/pending-tx-tracker.js + 85:11 warning '||' should be placed at the end of the line operator-linebreak + 87:11 warning '||' should be placed at the end of the line operator-linebreak + 88:11 warning '||' should be placed at the end of the line operator-linebreak + 90:11 warning '||' should be placed at the end of the line operator-linebreak + 91:11 warning '||' should be placed at the end of the line operator-linebreak app/scripts/lib/port-stream.js + 3:22 warning Missing space before function parentheses space-before-function-paren + 3:24 warning Missing space before opening brace space-before-blocks app/scripts/lib/tx-gas-utils.js + 84:2 warning Newline required at end of file but not found eol-last app/scripts/lib/tx-state-history-helper.js + 12:37 warning Missing space before function parentheses space-before-function-paren + 23:30 warning Missing space before function parentheses space-before-function-paren + 30:23 warning Missing space before function parentheses space-before-function-paren + 35:28 warning Missing space before function parentheses space-before-function-paren + 41:2 warning Newline required at end of file but not found eol-last app/scripts/lib/tx-state-manager.js + 94:13 warning 'value' is never reassigned. Use 'const' instead prefer-const ui/app/reducers.js + 45:7 warning 'state' is never reassigned. Use 'const' instead prefer-const + 53:7 warning 'stateString' is never reassigned. Use 'const' instead prefer-const ui/lib/tx-helper.js + 27:2 warning Newline required at end of file but not found eol-last ui/app/components/account-dropdowns.js + 163:1 warning More than 2 blank lines not allowed no-multiple-empty-lines ui/app/components/menu-droppo.js + 22:7 warning 'style' is never reassigned. Use 'const' instead prefer-const ui/app/components/shapeshift-form.js + 135:11 warning '&&' should be placed at the end of the line operator-linebreak ui/app/components/typed-message-renderer.js + 35:25 warning Missing space before function parentheses space-before-function-paren + 42:2 warning Newline required at end of file but not found eol-last mascara/server/index.js + 11:42 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 12:36 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 13:33 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 14:40 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 20:29 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 21:29 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat + 26:40 warning Use path.join() or path.resolve() instead of + to create paths no-path-concat ```
* | Try to fix intermittent test failure in NonceTracker testsDan Finlay2017-10-231-0/+4
|/
* Revert "NetworkController refactor for new EthClient interface"kumavis2017-10-191-27/+27
|
* network-controller - use obj-proxy for providerProxykumavis2017-10-111-3/+4
|
* lint fixeskumavis2017-10-111-7/+2
|
* network controller - refactor to use eth-rpc-clientkumavis2017-10-111-26/+30
|
* network - make network controller internal network switching explicitkumavis2017-09-301-2/+3
|
* network - convert localhost from custom rpc to network typekumavis2017-09-301-0/+1
|
* network controller - small refactorkumavis2017-09-301-18/+29
|
* network controller - move _setProvider to bottomkumavis2017-09-281-18/+18
|
* network controller - refactor to use _setProviderkumavis2017-09-281-17/+28
|
* network - remove getter/setterkumavis2017-09-281-23/+14
|
* network contoller - clean up unused codefrankiebee2017-09-271-6/+0
|
* listen for the blocke event on the block tracker instead of rawBlock on the ↵frankiebee2017-09-271-1/+0
| | | | provider
* wrap block tracker in events proxyfrankiebee2017-09-271-14/+8
|
* tx cont - add argument for provider constructorkumavis2017-07-261-2/+3
|
* stop polling when switching networksfrankiebee2017-05-241-0/+1
|
* Fix for testsfrankiebee2017-05-241-49/+35
|
* Wrap the provider in a proxyfrankiebee2017-05-231-60/+50
|
* Create a network controller to manage switcing networks an updating the providerfrankiebee2017-05-191-0/+152