Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix locale codes contains underscore will never be preferred (#6116) | S.C. Chen | 2019-02-09 | 1 | -4/+11 |
| | |||||
* | Update design of phishing warning screen | Whymarrh Whitby | 2019-02-06 | 1 | -17/+5 |
| | |||||
* | Add announcement for users migrated to the new UI | Whymarrh Whitby | 2019-02-05 | 2 | -1/+2 |
| | |||||
* | Remove betaUI preference state, replace with completedUiMigration | Whymarrh Whitby | 2019-02-05 | 2 | -4/+39 |
| | |||||
* | Default to the new UI for all users | Whymarrh Whitby | 2019-02-05 | 1 | -20/+2 |
| | |||||
* | Privacy mode fixes (#6087) | Bruno Barbieri | 2019-02-02 | 1 | -13/+15 |
| | | | | | | | | | | * Version 5.3.4 RC1 * fix old ui approval screen * fix error caused by meshtesting iframe * fix linter errors | ||||
* | fix - migration 30 undefinds (#6079) | Frankie | 2019-02-01 | 1 | -16/+18 |
| | |||||
* | EIP-1102 updates (#6006) | Paul Bouchon | 2019-01-31 | 2 | -24/+28 |
| | | | | | | * Update privacy notice * Respond to 1102 messages using tab ID | ||||
* | I#5956 fix2 dont overwrite existing rpc settings (#6044) | Frankie | 2019-01-30 | 2 | -2/+51 |
| | | | | | | | | | | | | | | * mm-controller - dont overwrite existing rpc settings * ui-networkDropdown - dont pass old network as chainId * add methods preferencesController.updateRpc and metamaskController.updateAndSetCustomRpc * use updateAndSetCustomRpc in settings to allow rpcs to be updated * use new rpc as nickname if no nick name has been supplied * fix update rpc method | ||||
* | add source for header in create infura client (#6023) | Jenny Pollack | 2019-01-25 | 1 | -1/+1 |
| | | | | | | * add source for header in create infura client * bump eth-json-rpc-infura | ||||
* | Refactor first time flow, remove seed phrase from state (#5994) | Alexander Tseung | 2019-01-23 | 5 | -2/+52 |
| | | | | | | | | | | | | | | | | | | | | * Refactor and fix styling for first time flow. Remove seed phrase from persisted metamask state * Fix linting and tests * Fix translations, initialization notice routing * Fix drizzle tests * Fix e2e tests * Fix integration tests * Fix styling * Fix migration naming from 030 to 031 * Open extension in browser when user has not completed onboarding | ||||
* | fix asset detection (#6049) | Bruno Barbieri | 2019-01-23 | 1 | -2/+18 |
| | |||||
* | Use Parity on-chain registry only when is needed (#6052) | Esteban Miño | 2019-01-23 | 2 | -0/+15 |
| | | | | | | * add and use knownMethodData to avoid infura requests * dataMethod to methodData and check empty response | ||||
* | I#5956 fix 1 (#6026) | Frankie | 2019-01-18 | 3 | -1/+53 |
| | | | | | * prevent invalid chainId's when adding cusstom rpcs * migration 30 removes invalid chaids from preferences and networkController for custom rpcs | ||||
* | Set auto conversion off for token/eth conversion (#6005) | Thomas Huang | 2019-01-11 | 1 | -1/+1 |
| | |||||
* | fix extension link | brunobar79 | 2019-01-03 | 1 | -1/+1 |
| | |||||
* | Fix etherscan links on notifications | Bruno Barbieri | 2018-12-29 | 1 | -1/+1 |
| | |||||
* | Disallow loading as metamaskNetworkId (#5924) | Frankie | 2018-12-14 | 1 | -1/+3 |
| | | | | | | * transactions - throw an error if a transaction is generated while the network is loading * add tests for failing when netId is loading | ||||
* | Show Failed transaction in the browser notification for on-chain failures ↵ | Alexander Tseung | 2018-12-11 | 1 | -4/+7 |
| | | | | (#5904) | ||||
* | Group transactions by nonce (#5886) | Alexander Tseung | 2018-12-10 | 3 | -7/+15 |
| | |||||
* | Fix race condition in network controller lookup() method. | Dan Miller | 2018-12-07 | 1 | -4/+10 |
| | |||||
* | Adds createSpeedUpTransaction to txController | Dan Miller | 2018-12-04 | 2 | -0/+30 |
| | |||||
* | Hide link for phishing-detect page (#5864) | Michael - Blurpesec | 2018-12-02 | 1 | -1/+1 |
| | | | | | | * Soften language on phishing-detect page * remove quotes | ||||
* | fix visibility | Bruno Barbieri | 2018-12-01 | 1 | -1/+0 |
| | |||||
* | Save recent network balances in local storage (#5843) | Dan J Miller | 2018-12-01 | 2 | -0/+92 |
| | | | | | | | | | | | | * Use selector for state.metamask.accounts in all cases. * Default to cached balance when selecting metamask accounts * Adds the cached-balances controller * Documentation and small codes fixes for #5843 Co-Authored-By: danjm <danjm.com@gmail.com> | ||||
* | bugfix: normalize contract addresss when fetching exchange rates (#5863) | Paul Bouchon | 2018-12-01 | 1 | -1/+3 |
| | |||||
* | Fixed Vivek's bug (#5860) | Dan Finlay | 2018-11-30 | 1 | -2/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixed Vivek's bug Fixes #5850 What was happening: It seems that his MetaMask had crashed while some new transactions had been loading defaults. He probably had a network connectivity issue to Infura (which we are working with Infura to address). As a result of this network cutout, his three unapproved transactions were not marked failed, and were not marked as `loadingDefaults = false`, as their gas prices had not yet been estimated. Normally this behavior is supposed to clean itself up when the transaction controller starts up, via the `TransactionController._onBootCleanUp()` function, but in this case, during unlock, that function was unable to do its job because when it requested the transaction list, the current network was in the `loading` state, making it proceed as if there were no pending transactions. To fix this, I am doing two things: - Setting transactions to loadingDefaults = false in more catch blocks. - Calling `onBootCleanUp()` when the network store's status changes, so that it will re-trigger when loading completes. * Fixed reference * Fixed infinite loop bug Was refreshing the tx list on every tx state change instead of just network changes, creating an infinite loop. * Add notes to tx updates to clarify logs | ||||
* | transactions/tx-gas-utils - add the acctual response for eth_getCode for ↵ | Frankie | 2018-11-30 | 1 | -0/+9 |
| | | | | NO_CONTRACT_ERROR's && add a debug object to simulationFailed (#5840) | ||||
* | Merge pull request #5848 from MetaMask/Less-Certain-Language | Whymarrh Whitby | 2018-11-29 | 1 | -1/+1 |
|\ | | | | | Soften accusatory language on phishing warning | ||||
| * | Soften accusatory language on phishing warning | Dan Finlay | 2018-11-29 | 1 | -1/+1 |
| | | | | | | | | | | | | We don't always know for sure that sites marked as phishers are defiitely scams, and so we should avoid language that makes concrete accusations. | ||||
* | | Open full-screen UI on install | Whymarrh Whitby | 2018-11-27 | 1 | -5/+4 |
| | | |||||
* | | Revert "Don't open MetaMask website after install" | Whymarrh Whitby | 2018-11-27 | 1 | -0/+9 |
|/ | |||||
* | Autofill gasPrice for retry attempts with either the recommended gasprice or ↵ | Frankie | 2018-11-27 | 1 | -0/+9 |
| | | | | | | | | a %10 bump (#5786) * transactions - autofill gasPrice for retry attempts with either the recomened gasprice or a %10 bump * lint | ||||
* | transactions - ensure err is defined when setting tx failed (#5801) | Frankie | 2018-11-27 | 1 | -4/+6 |
| | |||||
* | Merge pull request #5792 from MetaMask/signed-type-data-error-hw-wallet | Bruno Barbieri | 2018-11-27 | 1 | -9/+16 |
|\ | | | | | Consider HW Wallets for signTypedMessage | ||||
| * | Use Array.includes | Bruno Barbieri | 2018-11-27 | 1 | -4/+4 |
| | | |||||
| * | remove extra semicolon | brunobar79 | 2018-11-21 | 1 | -1/+1 |
| | | |||||
| * | consider hw wallets | brunobar79 | 2018-11-21 | 1 | -9/+16 |
| | | |||||
* | | Show Connect Requests count in extension badge | Whymarrh Whitby | 2018-11-26 | 1 | -1/+3 |
| | | |||||
* | | Use initState to avoid type-checking providerRequests in state | Whymarrh Whitby | 2018-11-26 | 1 | -3/+5 |
| | | |||||
* | | Merge pull request #5797 from MetaMask/trezor-v6 | Bruno Barbieri | 2018-11-22 | 1 | -0/+8 |
|\ \ | | | | | | | Add Firefox and Brave support for Trezor | ||||
| * | | fix merge conflicts | brunobar79 | 2018-11-21 | 14 | -23/+96 |
| |\| | |||||
| * | | Merge branch 'develop' of github.com:MetaMask/metamask-extension into trezor-v5 | brunobar79 | 2018-11-15 | 3 | -2/+22 |
| |\ \ | |||||
| * \ \ | Merge branch 'develop' of github.com:MetaMask/metamask-extension into trezor-v5 | brunobar79 | 2018-11-15 | 1 | -0/+5 |
| |\ \ \ | |||||
| * \ \ \ | Merge branch 'develop' into trezor-v5 | brunobar79 | 2018-11-14 | 6 | -87/+80 |
| |\ \ \ \ | |||||
| * \ \ \ \ | fix merge conflicts | brunobar79 | 2018-11-07 | 24 | -291/+886 |
| |\ \ \ \ \ | |||||
| * \ \ \ \ \ | fix merge conflicts | brunobar79 | 2018-10-21 | 5 | -30/+105 |
| |\ \ \ \ \ \ | |||||
| * \ \ \ \ \ \ | fix conflicts | brunobar79 | 2018-10-17 | 23 | -436/+478 |
| |\ \ \ \ \ \ \ | |||||
| * \ \ \ \ \ \ \ | Merge branch 'develop' of github.com:MetaMask/metamask-extension into trezor-v5 | brunobar79 | 2018-09-06 | 5 | -24/+202 |
| |\ \ \ \ \ \ \ \ | |||||
| * | | | | | | | | | add port names blacklist | brunobar79 | 2018-08-23 | 1 | -0/+8 |
| | | | | | | | | | | |||||
* | | | | | | | | | | Don't announce new UI to users switching back | Whymarrh Whitby | 2018-11-21 | 1 | -0/+1 |
| | | | | | | | | | | |||||
* | | | | | | | | | | Default to the new UI for first time users | Whymarrh Whitby | 2018-11-21 | 2 | -14/+7 |
| |_|_|_|_|_|_|_|/ |/| | | | | | | | | |||||
* | | | | | | | | | 1102: Push publicConfigStore to next turn to avoid race conditiono (#5777) | Paul Bouchon | 2018-11-18 | 1 | -2/+6 |
| | | | | | | | | | |||||
* | | | | | | | | | Auto fail transactions that have been approved for over 12 hours (#5765) | Dan Finlay | 2018-11-17 | 3 | -0/+69 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Auto fail transactions that have been approved for over 12 hours Converts txs using a migration. This migration uses a new helper function that generates tx-failing migrations, and only requires a version, error message, and condition to run on each transaction. * Linted * Only migrate approved txs to failed * Cleanup * Cleanup * Small lint fixes | ||||
* | | | | | | | | | ESLint fixes (#5775) | Whymarrh Whitby | 2018-11-17 | 9 | -18/+18 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * eslint . --fix * Upgrade all ESLint warnings to errors | ||||
* | | | | | | | | | Tx controller now uses safe event emitter (#5769) | Frankie | 2018-11-17 | 3 | -3/+3 |
| |_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * transactions - use safe-event-emitter over events * tests - pass a platform object on init with a noop showTransactionNotification * test - fix for tx-state-history-helper trying to reduce an empty array * deps - safe-event-emitter * lint | ||||
* | | | | | | | | Resubmit approved transactions on new block (#5752) | Dan Finlay | 2018-11-15 | 3 | -2/+22 |
| |_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add beginning of test * Resubmit approved transactions on new block May fix #4343 and related issues, where an error could leave transactions stranded in the approved state. * Remove unused test * Re-approve transactions when retrying approved * Add retry approved test * Include approved in pending tx count * Fix getPendingTxs() * Linted * Only throw hash error in submitted state * Only check submitted txs for block inclusion * Fix test expectations | ||||
* | | | | | | | 1102: use meta title if it exists before title | Paul Bouchon | 2018-11-15 | 1 | -0/+5 |
| |_|_|_|_|/ |/| | | | | | |||||
* | | | | | | Update Balanc3 API (#5744) | Paul Bouchon | 2018-11-14 | 2 | -23/+16 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Update balanc3 API used in TokenRatesController * Remove demo URL and use nativeCurrency when fetching token rates | ||||
* | | | | | | Fixes #3425: Better support for batch transactions (#5437) | PaddyMc | 2018-11-14 | 1 | -0/+1 |
| | | | | | | |||||
* | | | | | | EIP-1102: Update publicConfig store concurrently with approval | Paul Bouchon | 2018-11-10 | 3 | -33/+29 |
| | | | | | | |||||
* | | | | | | 1102: Fix inpage listener syntax (#5708) (#5709) | Noah I | 2018-11-09 | 1 | -2/+2 |
| | | | | | | |||||
* | | | | | | Cleanup | bitpshr | 2018-11-08 | 1 | -18/+10 |
| | | | | | | |||||
* | | | | | | 1102: use postMessage instead of injected scripts to bypass CSP | bitpshr | 2018-11-08 | 1 | -17/+13 |
| | | | | | | |||||
* | | | | | | wip | bitpshr | 2018-11-08 | 2 | -24/+39 |
| |_|_|_|/ |/| | | | | |||||
* | | | | | Fix lint errors | bitpshr | 2018-11-07 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | Remove injected script tags after use | bitpshr | 2018-11-07 | 1 | -0/+2 |
| | | | | | |||||
* | | | | | Clear cached approval after rejection | bitpshr | 2018-11-07 | 2 | -8/+11 |
| | | | | | |||||
* | | | | | Move experimental provider augmentation | bitpshr | 2018-11-06 | 1 | -13/+13 |
| | | | | | |||||
* | | | | | Add experimental RPC method support | bitpshr | 2018-11-06 | 3 | -6/+20 |
| | | | | | |||||
* | | | | | Update Connect Request screen design (#5644) | Whymarrh Whitby | 2018-11-06 | 2 | -18/+52 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Parameterize NetworkDisplay background colour * Update design for login request screen * Pass siteTitle, siteImage through for calls to ethereum.enable() * Bring the site images closer together | ||||
* | | | | | Do not modify isApproved when locked | bitpshr | 2018-11-06 | 1 | -2/+1 |
| | | | | | |||||
* | | | | | Mark origins as unapproved if user explicitly locks MetaMask | bitpshr | 2018-11-06 | 2 | -3/+5 |
| | | | | | |||||
* | | | | | Enable caching | Paul Bouchon | 2018-11-06 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | isApproved should return false | bitpshr | 2018-11-06 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | Remove internal listeners | bitpshr | 2018-11-06 | 1 | -6/+15 |
| | | | | | |||||
* | | | | | rebase | bitpshr | 2018-11-06 | 1 | -3/+3 |
| | | | | | |||||
* | | | | | Disable approval caching | bitpshr | 2018-11-06 | 4 | -6/+34 |
| | | | | | |||||
* | | | | | Differentiate locked and enabled | bitpshr | 2018-11-06 | 4 | -27/+10 |
| | | | | | |||||
* | | | | | Code bath | bitpshr | 2018-11-06 | 4 | -33/+49 |
| | | | | | |||||
* | | | | | Handle logout gracefully | bitpshr | 2018-11-06 | 4 | -25/+42 |
| | | | | | |||||
* | | | | | Fix lint issues | bitpshr | 2018-11-06 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | Only filter selectedAddress from publicConfig store | bitpshr | 2018-11-06 | 1 | -6/+10 |
| | | | | | |||||
* | | | | | Fix race condition with publicConfigStore | bitpshr | 2018-11-06 | 1 | -5/+24 |
| | | | | | |||||
* | | | | | Move convenience methods to _metamask namespace | bitpshr | 2018-11-06 | 1 | -28/+55 |
| | | | | | |||||
* | | | | | Fix lint issues | bitpshr | 2018-11-06 | 1 | -1/+3 |
| | | | | | |||||
* | | | | | Add isUnlocked provider hook | bitpshr | 2018-11-06 | 4 | -3/+29 |
| | | | | | |||||
* | | | | | Differentiate isEnabled and isApproved hook | bitpshr | 2018-11-06 | 1 | -3/+12 |
| | | | | | |||||
* | | | | | Update isEnabled check | bitpshr | 2018-11-06 | 1 | -1/+3 |
| | | | | | |||||
* | | | | | EIP-1102: add user privacy option | bitpshr | 2018-11-06 | 4 | -44/+32 |
| | | | | | |||||
* | | | | | EIP-1102: add isEnabled convenience method to provider | bitpshr | 2018-11-06 | 3 | -9/+53 |
| | | | | | |||||
* | | | | | EIP-1102: Add option to force-enable provider | bitpshr | 2018-11-06 | 4 | -6/+44 |
| | | | | | |||||
* | | | | | EIP-1102: updated implementation | bitpshr | 2018-11-06 | 7 | -28/+182 |
| | | | | | |||||
* | | | | | network - infura - hardcode net_version and eth_chainId (#5670) | kumavis | 2018-11-06 | 1 | -0/+33 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * network - infura - hardcode net_version and eth_chainId * network - infura - add rinkeby handling * lint fix | ||||
* | | | | | Update watchAsset ERC20 validation (#5653) | Esteban Miño | 2018-11-06 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * update ERC20 token valodation for watchAsset * update ERC20 validation test descriptions | ||||
* | | | | | Merge pull request #5659 from MetaMask/token-rates-bugfix | kumavis | 2018-11-04 | 1 | -4/+7 |
|\ \ \ \ \ | | | | | | | | | | | | | token-rates - protect against bad token data | ||||
| * | | | | | token-rates - protect against bad token data | kumavis | 2018-11-03 | 1 | -4/+7 |
| | | | | | | |||||
* | | | | | | Revert "support eth_chainId" | Thomas Huang | 2018-11-04 | 1 | -14/+4 |
|/ / / / / | |||||
* | | | | | Merge pull request #5560 from MetaMask/sentry-enhancements2 | kumavis | 2018-10-30 | 7 | -60/+112 |
|\ \ \ \ \ | | | | | | | | | | | | | Sentry - various enhancements to help debugging (alternate) | ||||
| * \ \ \ \ | Merge branch 'sentry-enhancements2' of ↵ | kumavis | 2018-10-30 | 1 | -2/+3 |
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | github.com:MetaMask/metamask-extension into sentry-enhancements2 | ||||
| | * \ \ \ \ | Merge branch 'develop' into sentry-enhancements2 | kumavis | 2018-10-30 | 11 | -161/+265 |
| | |\ \ \ \ \ | |||||
| * | \ \ \ \ \ | Merge branch 'develop' of github.com:MetaMask/metamask-extension into ↵ | kumavis | 2018-10-30 | 12 | -187/+275 |
| |\ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | | | | | | | | | | | sentry-enhancements2 | ||||
| * | | | | | | | Merge branch 'develop' of github.com:MetaMask/metamask-extension into ↵ | kumavis | 2018-10-21 | 2 | -28/+27 |
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | sentry-enhancements2 | ||||
| * | | | | | | | | sentry - include app state in ui errors | kumavis | 2018-10-20 | 2 | -2/+18 |
| | | | | | | | | | |||||
| * | | | | | | | | sentry - replace raven-js with sentry/browser | kumavis | 2018-10-20 | 4 | -49/+39 |
| | | | | | | | | | |||||
| * | | | | | | | | blacklist + currency - report error via log instead of throw | kumavis | 2018-10-19 | 2 | -5/+12 |
| | | | | | | | | | |||||
| * | | | | | | | | lint fix | kumavis | 2018-10-19 | 2 | -3/+1 |
| | | | | | | | | | |||||
| * | | | | | | | | fetch debugger - only append source stack if no stack is present | kumavis | 2018-10-19 | 1 | -4/+6 |
| | | | | | | | | | |||||
| * | | | | | | | | sentry - failed txs - namespace txMeta for better readability | kumavis | 2018-10-19 | 1 | -1/+1 |
| | | | | | | | | | |||||
| * | | | | | | | | currency - throw errors on failure | kumavis | 2018-10-19 | 1 | -3/+17 |
| | | | | | | | | | |||||
| * | | | | | | | | blacklist - throw errors on request/parse failure | kumavis | 2018-10-19 | 1 | -4/+19 |
| | | | | | | | | | |||||
| * | | | | | | | | sentry - move isBrave decoration to insides of try-catch | kumavis | 2018-10-19 | 1 | -1/+2 |
| | | | | | | | | | |||||
* | | | | | | | | | Merge pull request #5567 from MetaMask/HowardBraham-develop | kumavis | 2018-10-30 | 1 | -9/+26 |
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | | Feature: Warn when attempting to send tx with data to non-contract | ||||
| * | | | | | | | | Merge branch 'develop' of github.com:MetaMask/metamask-extension into ↵ | kumavis | 2018-10-26 | 8 | -125/+121 |
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | HowardBraham-develop | ||||
| * | | | | | | | | | tx-gas-util - set error message when invalidating tx based on tx data but no ↵ | kumavis | 2018-10-21 | 1 | -4/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | contract code | ||||
| * | | | | | | | | | Merge branch 'develop' into develop | kumavis | 2018-10-21 | 9 | -38/+160 |
| |\ \ \ \ \ \ \ \ \ | | | |_|/ / / / / / | | |/| | | | | | | | |||||
| * | | | | | | | | | tx-gas-utils - improve format + comments | kumavis | 2018-10-10 | 1 | -12/+18 |
| | | | | | | | | | | |||||
| * | | | | | | | | | ganache-core merged my PR, so I changed some comments to clarify that ↵ | Howard Braham | 2018-10-10 | 1 | -5/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ganache-core v2.2.1 and below will return the non-standard '0x0' | ||||
| * | | | | | | | | | Bug Fix: #1789 and #4525 eth.getCode() with no contract | Howard Braham | 2018-10-10 | 1 | -7/+16 |
| | | | | | | | | | | |||||
* | | | | | | | | | | Merge pull request #5596 from MetaMask/validateSignTypedData | kumavis | 2018-10-30 | 2 | -27/+6 |
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / |/| | | | | | | | | | Validate signTypedData signer/address in eth-json-rpc-middleware | ||||
| * | | | | | | | | | Add version to unapprovedMessage | Thomas | 2018-10-25 | 1 | -2/+2 |
| | | | | | | | | | | |||||
| * | | | | | | | | | Remove commented out/unused methods | Thomas | 2018-10-25 | 1 | -27/+2 |
| | | | | | | | | | | |||||
| * | | | | | | | | | Validate signTypedData in eth-json-rpc-middleware | Thomas | 2018-10-25 | 2 | -28/+32 |
| | |_|/ / / / / / | |/| | | | | | | | |||||
* | | | | | | | | | Merge pull request #5552 from EthersocialNetwork/eth_chainid | kumavis | 2018-10-30 | 1 | -4/+14 |
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | network - check eth_chainId and fallback to net_version | ||||
| * \ \ \ \ \ \ \ \ | Merge branch 'develop' into eth_chainid | hackyminer | 2018-10-26 | 11 | -179/+269 |
| |\ \ \ \ \ \ \ \ \ | |||||
| * | | | | | | | | | | Update network.js | kumavis | 2018-10-21 | 1 | -0/+1 |
| | | | | | | | | | | | |||||
| * | | | | | | | | | | network - improve logging and type conversion | kumavis | 2018-10-21 | 1 | -4/+6 |
| | | | | | | | | | | | |||||
| * | | | | | | | | | | support both eth_chainId and net_version | hackyminer | 2018-10-20 | 1 | -4/+11 |
| | |_|_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | get the real chainId using eth_chainId and use net_version as a fallback | ||||
* | | | | | | | | | | preferences - fix typo | kumavis | 2018-10-30 | 1 | -1/+1 |
| |/ / / / / / / / |/| | | | | | | | | |||||
* | | | | | | | | | Add support for RPC endpoints with custom chain IDs (#5134) | HackyMiner | 2018-10-26 | 4 | -33/+128 |
| |/ / / / / / / |/| | | | | | | | |||||
* | | | | | | | | ens-ipfs - refactor for readability (#5568) | kumavis | 2018-10-21 | 7 | -124/+120 |
| |_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ens-ipfs - refactor for readability * ens-ipfs - use official ipfs gateway for better performance * lint - remove unused code * ens-ipfs - support path and search * lint - gotta love that linter * ens-ipfs - improve loading page formatting * ens-ipfs - loading - redirect to 404 after 1 min timeout * ens-ipfs - destructure for cleaner code | ||||
* | | | | | | | Merge pull request #5555 from MetaMask/support-wallet-watch-asset | kumavis | 2018-10-21 | 1 | -1/+1 |
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | | Support for prefix wallet_watchAsset | ||||
| * | | | | | | add support for wallet_watchAsset | Esteban MIno | 2018-10-20 | 1 | -1/+1 |
| |/ / / / / | |||||
* / / / / / | specific add and remove methods for frequentRpcList (#5554) | Esteban Miño | 2018-10-20 | 2 | -28/+27 |
|/ / / / / | |||||
* | | | | | inpage - increase provider max listeners to avoid warnings | kumavis | 2018-10-18 | 1 | -0/+2 |
| | | | | | |||||
* | | | | | Merge pull request #5127 from MetaMask/account-tracker-network-change | kumavis | 2018-10-18 | 1 | -1/+7 |
|\ \ \ \ \ | | | | | | | | | | | | | Bug Fix: Force AccountTracker to update balances on network change | ||||
| * \ \ \ \ | Merge branch 'develop' into account-tracker-network-change | kumavis | 2018-09-28 | 17 | -419/+480 |
| |\ \ \ \ \ | |||||
| * | | | | | | metamask controller - force account tracker to update balances on network change | kumavis | 2018-08-23 | 1 | -0/+4 |
| | |_|/ / / | |/| | | | | |||||
* | | | | | | Merge pull request #5522 from MetaMask/fetch-debugging | Whymarrh Whitby | 2018-10-18 | 2 | -0/+37 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | debugging - enable fetch debugging | ||||
| * | | | | | | enable fetch debugging | kumavis | 2018-10-15 | 2 | -0/+37 |
| | | | | | | | |||||
* | | | | | | | Adds toggle for primary currency (#5421) | Alexander Tseung | 2018-10-17 | 2 | -0/+31 |
| |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add UnitInput component * Add CurrencyInput component * Add UserPreferencedCurrencyInput component * Add UserPreferencedCurrencyDisplay component * Add updatePreferences action * Add styles for CurrencyInput, CurrencyDisplay, and UnitInput * Update SettingsTab page with Primary Currency toggle * Refactor currency displays and inputs to use UserPreferenced displays and inputs * Add TokenInput component * Add UserPreferencedTokenInput component * Use TokenInput in the send screen * Fix unit tests * Fix e2e and integration tests * Remove send/CurrencyDisplay component * Replace diamond unicode character with Eth logo. Fix typos | ||||
* | | | | | | Fix document extension check when injecting web3 | Whymarrh Whitby | 2018-10-16 | 1 | -7/+12 |
| | | | | | | |||||
* | | | | | | Add txReceipt data to transaction details (#5513) | Alexander Tseung | 2018-10-16 | 2 | -1/+39 |
|/ / / / / | |||||
* | | | | | Ensure that new transactions added are using the selected address | Whymarrh Whitby | 2018-10-11 | 1 | -0/+4 |
| | | | | | |||||
* | | | | | Revert "transactions - add txReceipt to the txMeta body for confirmed txs ↵ | Whymarrh Whitby | 2018-10-11 | 1 | -23/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (#5375)" This reverts commit ff67293a8ef61308d602d09f26b163b9b9ec90d3. | ||||
* | | | | | transactions - add txReceipt to the txMeta body for confirmed txs (#5375) | Frankie | 2018-10-10 | 1 | -1/+23 |
| | | | | | |||||
* | | | | | tests - integration - Add Drizzle tests (#5467) | Bruno Barbieri | 2018-10-10 | 1 | -1/+1 |
| |_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * added drizzle app for testing * working * clean up * clean up script * make build step required * add drizzle-tests to .eslintignore * clean up drizzle run script * lint * use truffle unbox * undo eslintignore changes * revert change * dont use global * dont need this steps * use the new account flow * restore package-lock.json | ||||
* | | | | Merge pull request #5458 from MetaMask/provider-subs | Bruno Barbieri | 2018-10-10 | 5 | -15/+36 |
|\ \ \ \ | | | | | | | | | | | Feature: Subscription support | ||||
| * | | | | workaround - fix for drizzle | kumavis | 2018-10-09 | 1 | -2/+11 |
| | | | | | |||||
| * | | | | provider - network - restore block-ref-rewrite middleware references | kumavis | 2018-10-09 | 2 | -4/+4 |
| | | | | | |||||
| * | | | | provider - enable subscription support (newHeads, logs) | kumavis | 2018-10-08 | 2 | -9/+21 |
| | | | | | |||||
* | | | | | Refactor buffer constructor (#5468) | Noel Yoo | 2018-10-09 | 2 | -2/+2 |
| | | | | | |||||
* | | | | | Added webRequest.RequestFilter to filter main_frame .eth requests | Eduardo Antuña Díez | 2018-10-09 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | Merge branch 'develop' into update-balance-on-unlock | Dan Finlay | 2018-10-06 | 2 | -0/+2 |
|\ \ \ \ \ | |||||
| * | | | | | Fix updating of pending transactions | Dan Finlay | 2018-10-06 | 2 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Transaction statuses were not being properly updated when: - MetaMask was unlocked - The network was changed This PR fixes both of those. Fixes #5174 | ||||
* | | | | | | Update all balances on password unlock | Dan Finlay | 2018-10-06 | 1 | -0/+1 |
|/ / / / / | |||||
* | | | | | Increase suggested gas percentile to 65 (#5359) | Dan Finlay | 2018-10-05 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Increase suggested gas percentile to 65 I keep submitting transactions then waiting a long time. Apparently 50th percentile isn't enough. * Update test for getGasPrice | ||||
* | | | | | Merge pull request #5412 from whymarrh/after-install-steps | Whymarrh Whitby | 2018-10-04 | 1 | -9/+0 |
|\ \ \ \ \ | |/ / / / |/| | | | | Don't open MetaMask website after install | ||||
| * | | | | Don't open metamask.io after install anymore | Whymarrh Whitby | 2018-10-02 | 1 | -9/+0 |
| | | | | | |||||
* | | | | | Hook MetaMaskController up with phishing detection page | Whymarrh Whitby | 2018-10-02 | 2 | -2/+60 |
| | | | | | |||||
* | | | | | Add domain whitelist method to MetaMaskController | Whymarrh Whitby | 2018-10-02 | 1 | -0/+11 |
| | | | | | |||||
* | | | | | Add ability to whitelist a blacklisted domain at runtime | Whymarrh Whitby | 2018-10-02 | 1 | -0/+22 |
|/ / / / | |||||
* | / / | support editable customRPC (#5267) | HackyMiner | 2018-09-29 | 2 | -7/+15 |
| |/ / |/| | | | | | | | | | | | | | | * support editable customRPC #5246 * remove rpcList size restriction | ||||
* | | | Update extension badge with correct signTypedData count | Whymarrh Whitby | 2018-09-27 | 1 | -0/+1 |
| | | | |||||
* | | | fix tld bug (#5250) | Phyrex Tsai | 2018-09-27 | 1 | -0/+2 |
| | | | |||||
* | | | Merge pull request #5053 from hahnmichaelf/esdb-support | Thomas Huang | 2018-09-27 | 2 | -1/+6 |
|\ \ \ | | | | | | | | | Link to ESDB in local phishing.html | ||||
| * | | | additional lint-test fix | hahnmichaelf | 2018-08-14 | 1 | -1/+1 |
| | | | | |||||
| * | | | fix for lint-test | hahnmichaelf | 2018-08-14 | 2 | -3/+3 |
| | | | | |||||
| * | | | change name | hahnmichaelf | 2018-08-14 | 1 | -0/+0 |
| | | | | |||||
| * | | | base - working. fixes #4774 | hahnmichaelf | 2018-08-13 | 2 | -1/+6 |
| | | | | |||||
* | | | | EIP-1102: Add deprecation message (#5353) | Paul Bouchon | 2018-09-26 | 2 | -6/+6 |
| | | | | |||||
* | | | | bugfix: update eth_signTypedData_v3 parameter order | bitpshr | 2018-09-26 | 1 | -4/+4 |
| | | | | |||||
* | | | | Fix MetaMask web3 version (#5352) | Esteban Miño | 2018-09-26 | 1 | -0/+1 |
| | | | | |||||
* | | | | Merge pull request #5282 from MetaMask/tx-cancel-ui | Alexander Tseung | 2018-09-25 | 1 | -2/+3 |
|\ \ \ \ | | | | | | | | | | | Add Cancel Transaction feature. Refactor modals. Add Transaction Details modal. | ||||
| * | | | | Switch existing modals from using Notification to Modal. Remove Notification ↵ | Alexander Tseung | 2018-09-20 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | | | | | | component. Add CancelTransaction modal | ||||
* | | | | | Adds getPendingNonce method to provider initialization options in ↵ | Dan Miller | 2018-09-22 | 2 | -1/+15 |
|/ / / / | | | | | | | | | | | | | metamask-controller. | ||||
* | | | | Merge branch 'develop' into eip-712 | Paul Bouchon | 2018-09-18 | 1 | -0/+19 |
|\ \ \ \ | |||||
| * | | | | EIP-1102: Transitionary API (#5256) | Paul Bouchon | 2018-09-15 | 1 | -0/+19 |
| | | | | | |||||
* | | | | | Update new method namespace from v2 to v3 | bitpshr | 2018-09-14 | 2 | -3/+3 |
| | | | | | |||||
* | | | | | Update error message for chainId mis-match | bitpshr | 2018-09-14 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | Implement latest EIP-712 protocol | bitpshr | 2018-09-14 | 2 | -39/+112 |
|/ / / / | |||||
* | | | | Merge pull request #5240 from MetaMask/i5238-account-balance-update | Dan Finlay | 2018-09-12 | 1 | -0/+3 |
|\ \ \ \ | | | | | | | | | | | Ensure account-tracker currentBlockNumber is set on first block update. | ||||
| * | | | | Ensure account-tracker currentBlockNumber is set on first block update. | Dan Miller | 2018-09-11 | 1 | -0/+3 |
| | | | | | |||||
* | | | | | Default NoticeController ctor opts to empty obj | Whymarrh Whitby | 2018-09-12 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | Delete ConfigManager, replacing its usages with PreferencesController | Whymarrh Whitby | 2018-09-12 | 4 | -341/+27 |
|/ / / / | |||||
* | | | | Merge pull request #5216 from MetaMask/tx-cancel | Frankie | 2018-09-11 | 3 | -2/+73 |
|\ \ \ \ | | | | | | | | | | | Add createCancelTransaction method | ||||
| * | | | | Add createCancelTransaction method | Alexander Tseung | 2018-09-11 | 3 | -2/+73 |
| | |_|/ | |/| | | |||||
* | | | | Merge pull request #5223 from whymarrh/tx-error-tooltips | Frankie | 2018-09-11 | 1 | -0/+1 |
|\ \ \ \ | | | | | | | | | | | Show transaction error message tooltips for statuses | ||||
| * | | | | Attach the RPC error value to txMeta | Whymarrh Whitby | 2018-09-09 | 1 | -0/+1 |
| |/ / / | |||||
* / / / | Upgrade obs-store and fix memory leaks | Connor Christie | 2018-09-10 | 1 | -3/+7 |
|/ / / | |||||
* | | | fix conflicts | Esteban MIno | 2018-08-29 | 4 | -18/+69 |
|\ \ \ | |||||
| * | | | Do not resolve .test domains using ENS | bitpshr | 2018-08-25 | 1 | -1/+1 |
| | | | | |||||
| * | | | updated docs, small improvement of recent RPC rendering | Evgeniy Filatov | 2018-08-23 | 1 | -1/+1 |
| | | | | |||||
| * | | | implemented improvements to RPC history | Evgeniy Filatov | 2018-08-23 | 1 | -1/+1 |
| | | | | |||||
| * | | | Merge pull request #5122 from MetaMask/lazy-account-tracker | Dan Finlay | 2018-08-23 | 2 | -2/+37 |
| |\ \ \ | | | | | | | | | | | Network IO Optimization: Lazy AccountTracker | ||||
| | * | | | Add todo to dedupe UI tracking in background | Dan Finlay | 2018-08-23 | 1 | -0/+1 |
| | | | | | |||||
| | * | | | account-tracker - only track blocks when there are activeControllerConnections | kumavis | 2018-08-22 | 2 | -2/+24 |
| | | | | | |||||
| | * | | | metamask controller - track active controller connections | kumavis | 2018-08-22 | 1 | -0/+12 |
| | | |/ | | |/| | |||||
| * / | | Update unlock logic to not overwrite existing selected address | Whymarrh Whitby | 2018-08-23 | 1 | -13/+29 |
| |/ / | |||||
* | | | watchAsset small changes | Esteban MIno | 2018-08-28 | 1 | -1/+1 |
| | | | |||||
* | | | delete web3.metamassk.watchAsset | Esteban MIno | 2018-08-24 | 1 | -17/+0 |
| | | | |||||
* | | | typo watchAsset imageUrl to image | Esteban MIno | 2018-08-24 | 1 | -6/+6 |
| | | | |||||
* | | | expose web3.metamask.watchAsset | Esteban MIno | 2018-08-23 | 1 | -0/+17 |
| | | | |||||
* | | | Merge branch 'develop' into WatchTokenFeature | Esteban MIno | 2018-08-22 | 9 | -279/+10 |
|\| | | |||||
| * | | Merge pull request #5109 from MetaMask/MoveOutInpageProvider | Dan Finlay | 2018-08-22 | 7 | -276/+4 |
| |\ \ | | | | | | | | | Move inpage-provider and port-stream outside | ||||
| | * | | Move inpage-provider and port-stream outside | Dan Finlay | 2018-08-21 | 7 | -276/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the creation of the [metamask-extension-provider](https://github.com/MetaMask/metamask-extension-provider) we have our first non-core module that is dependent on the inpage-provider and port-stream. To reduce the size of its dependencies, I have moved the [metamask-inpage-provider](https://github.com/MetaMask/metamask-inpage-provider) into its own module, as well as [extension-port-stream](https://github.com/MetaMask/extension-port-stream). This allows them to be more easily depended & iterated on by external projects. | ||||
| * | | | Merge pull request #5118 from MetaMask/provider2-bugfix | Dan Finlay | 2018-08-22 | 1 | -1/+1 |
| |\ \ \ | | | | | | | | | | | bugfix - prevents old blocktracker from getting internal hooks migrated | ||||
| | * | | | bugfix - prevents old blocktracker from getting internal hooks migrated | kumavis | 2018-08-22 | 1 | -1/+1 |
| | |/ / | |||||
| * | | | fix hardware wallets account name | brunobar79 | 2018-08-21 | 1 | -1/+3 |
| | | | | |||||
| * | | | fix account removal | brunobar79 | 2018-08-21 | 1 | -1/+2 |
| |/ / | |||||
* | | | returning error in watchAsset | Esteban MIno | 2018-08-22 | 1 | -4/+12 |
| | | | |||||
* | | | refactor watchToken related functions | Esteban MIno | 2018-08-21 | 1 | -37/+36 |
| | | | |||||
* | | | watchAsset returns result wether token was added or not | Esteban MIno | 2018-08-21 | 3 | -10/+30 |
| | | | |||||
* | | | Merge branch 'develop' into WatchTokenFeature | Esteban MIno | 2018-08-21 | 26 | -460/+652 |
|\| | | |||||
| * | | Merge branch 'develop' into ledger-support | Bruno Barbieri | 2018-08-18 | 1 | -2/+47 |
| |\ \ | |||||
| | * | | Restores accounts until one with a zero balance is found | Dan Matthews | 2018-08-17 | 1 | -2/+47 |
| | | | | |||||
| | * | | Merge branch 'develop' into network-remove-provider-engine | Thomas | 2018-08-15 | 12 | -27/+176 |
| | |\| | | | | | | | | | | | | | Override package-lock and fix merge conflicts | ||||
| | * | | Merge branch 'network-remove-provider-engine' into ↵ | frankiebee | 2018-08-07 | 1 | -1/+1 |
| | |\ \ | | | | | | | | | | | | | | | | network-remove-provider-engine-tests | ||||
| | | * | | network - fix blockTracker reference to return the blockTrackerProxy instead ↵ | frankiebee | 2018-08-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | of the direct blockTracker reference | ||||
| | * | | | Merge branch 'develop' into network-remove-provider-engine-tests | Thomas Huang | 2018-08-02 | 3 | -9/+11 |
| | |\ \ \ | |||||
| | * \ \ \ | Merge branch 'develop' into network-remove-provider-engine | Thomas | 2018-07-26 | 19 | -25/+574 |
| | |\ \ \ \ | | | |_|/ / | | |/| | | | |||||
| | * | | | | Merge branch 'develop' of github.com:MetaMask/metamask-extension into ↵ | kumavis | 2018-07-04 | 25 | -51/+50 |
| | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | network-remove-provider-engine | ||||
| | * \ \ \ \ | Merge branch 'develop' of github.com:MetaMask/metamask-extension into ↵ | kumavis | 2018-07-03 | 14 | -82/+144 |
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | network-remove-provider-engine | ||||
| | * | | | | | | lint - fix lint for network | kumavis | 2018-06-13 | 3 | -3/+0 |
| | | | | | | | | |||||
| | * | | | | | | network - import createBlockTrackerInspectorMiddleware and rearrange cache ↵ | kumavis | 2018-06-13 | 3 | -37/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | middleware order | ||||
| | * | | | | | | nonce-tracker - wrap nonce calculations in try-catch and release lock on error | kumavis | 2018-06-13 | 1 | -22/+28 |
| | | | | | | | | |||||
| | * | | | | | | test - e2e - factor out setup phase + rename METAMASK_CONFIG to ↵ | kumavis | 2018-06-12 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | METAMASK_TEST_CONFIG | ||||
| | * | | | | | | test - e2e - inject metamask config to point at localhost | kumavis | 2018-06-12 | 1 | -1/+3 |
| | | | | | | | | |||||
| | * | | | | | | lint - controllers - whitepace fix | kumavis | 2018-06-12 | 1 | -5/+5 |
| | | | | | | | | |||||
| | * | | | | | | network - provider - infura - use block-reemit middleware | kumavis | 2018-06-08 | 1 | -2/+2 |
| | | | | | | | | |||||
| | * | | | | | | Merge branch 'develop' of github.com:MetaMask/metamask-extension into ↵ | kumavis | 2018-06-08 | 2 | -0/+15 |
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | network-remove-provider-engine | ||||
| | * \ \ \ \ \ \ | Merge branch 'develop' of github.com:MetaMask/metamask-extension into ↵ | kumavis | 2018-06-07 | 4 | -1/+44 |
| | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | network-remove-provider-engine | ||||
| | * | | | | | | | | lint - remove unused require | kumavis | 2018-06-07 | 1 | -1/+0 |
| | | | | | | | | | | |||||
| | * | | | | | | | | Merge branch 'develop' of github.com:MetaMask/metamask-extension into ↵ | kumavis | 2018-06-07 | 11 | -23/+265 |
| | |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | network-remove-provider-engine | ||||
| | * | | | | | | | | | controllers - transactions - fix tx status update on boot | kumavis | 2018-05-29 | 2 | -2/+13 |
| | | | | | | | | | | | |||||
| | * | | | | | | | | | controllers - transactions - fix tx confirmation | kumavis | 2018-05-29 | 2 | -3/+3 |
| | | | | | | | | | | | |||||
| | * | | | | | | | | | metamask-controller - lint fix | kumavis | 2018-05-29 | 1 | -1/+1 |
| | | | | | | | | | | | |||||
| | * | | | | | | | | | metamask-controller - update preferences controller addresses after import ↵ | kumavis | 2018-05-29 | 1 | -10/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | account | ||||
| | * | | | | | | | | | controllers - transaction - pending-tx-tracker - lint fix | kumavis | 2018-05-29 | 1 | -1/+1 |
| | | | | | | | | | | | |||||
| | * | | | | | | | | | controllers - transactions - merge @frankiebee's work with mine | kumavis | 2018-05-29 | 4 | -96/+69 |
| | | | | | | | | | | | |||||
| | * | | | | | | | | | controllers - transactions - pending-tx-tracker - _getBlock - poll until ↵ | kumavis | 2018-05-26 | 1 | -1/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | block is truthy | ||||
| | * | | | | | | | | | tx-gas-utils - query for block without tx bodies | kumavis | 2018-05-26 | 1 | -2/+2 |
| | | | | | | | | | | | |||||
| | * | | | | | | | | | metamask-controller - wrap txController.addUnapprovedTx for wallet ↵ | kumavis | 2018-05-25 | 1 | -1/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | middleware reference before txController is instantiated | ||||
| | * | | | | | | | | | provider - update wallet hooks for new wallet middleware | kumavis | 2018-05-25 | 4 | -64/+110 |
| | | | | | | | | | | | |||||
| | * | | | | | | | | | metamask-controller - fix account lookup hook | kumavis | 2018-05-25 | 1 | -2/+2 |
| | | | | | | | | | | | |||||
| | * | | | | | | | | | account-tracker - guard against empty block | kumavis | 2018-05-25 | 1 | -1/+2 |
| | | | | | | | | | | | |||||
| | * | | | | | | | | | controllers - recent-blocks - guard against empty block | kumavis | 2018-05-25 | 1 | -3/+3 |
| | | | | | | | | | | | |||||
| | * | | | | | | | | | controllers - recent-blocks - wrap block-tracker event in try-catch | kumavis | 2018-05-24 | 1 | -1/+7 |
| | | | | | | | | | | | |||||
| | * | | | | | | | | | Merge branch 'network-remove-provider-engine' of ↵ | kumavis | 2018-05-24 | 2 | -9/+24 |
| | |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | github.com:MetaMask/metamask-extension into network-remove-provider-engine | ||||
| | | * \ \ \ \ \ \ \ \ | Merge pull request #4347 from MetaMask/transactions-use-new-block-tracker | kumavis | 2018-05-24 | 2 | -9/+24 |
| | | |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Transactions use new block tracker |