1. 17 Jun, 2019 3 commits
  2. 13 Jun, 2019 1 commit
  3. 12 Jun, 2019 2 commits
  4. 03 Jun, 2019 1 commit
  5. 29 May, 2019 1 commit
  6. 23 May, 2019 1 commit
  7. 22 May, 2019 3 commits
  8. 20 May, 2019 8 commits
  9. 16 May, 2019 5 commits
  10. 11 May, 2019 5 commits
  11. 10 May, 2019 3 commits
  12. 09 May, 2019 1 commit
  13. 08 May, 2019 1 commit
  14. 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
  15. 03 May, 2019 4 commits