1. 12 Jun, 2019 2 commits
  2. 04 Jun, 2019 9 commits
  3. 03 Jun, 2019 1 commit
  4. 23 May, 2019 1 commit
  5. 22 May, 2019 3 commits
  6. 20 May, 2019 7 commits
  7. 16 May, 2019 5 commits
  8. 11 May, 2019 5 commits
  9. 10 May, 2019 3 commits
  10. 09 May, 2019 1 commit
  11. 08 May, 2019 1 commit
  12. 07 May, 2019 1 commit
    • Scott Tsai's avatar
      remix-debug depends on web3 · f97db6e3
      Scott Tsai authored
      remix-debug has the following line in `src/cmdline/index.js`:
      ```
      var Web3 = require('web3')
      
      <... snip ...>
      
        connect (providerType, url) {
          if (providerType !== 'http') throw new Error('unsupported provider type')
          this.web3 = new Web3(new Web3.providers.HttpProvider(url))
        }
      
      ```
      
      So it should either mark `web3` as a dependency in `package.json` or
      refactor `remix-lib` to provide a web3 provider that can take an
      `url` paramter.
      
      This patch does the former and makes `remix-debug` depend on the same
      version of `web3` as `remix-lib` in `package.json`.
      f97db6e3
  13. 03 May, 2019 1 commit