import settings

deploy_settings_step
Iuri Matias 4 years ago
parent 549a1d86cf
commit d1f1242f0d
  1. 10
      apps/remix-ide/src/app/tabs/runTab/settings.js

@ -1,3 +1,7 @@
import { Settings } from '@remix-ui/run-tab' // eslint-disable-line
import React from 'react' // eslint-disable-line
// import ReactDOM from 'react-dom'
const $ = require('jquery')
const yo = require('yo-yo')
const remixLib = require('@remix-project/remix-lib')
@ -9,6 +13,12 @@ const addTooltip = require('../../ui/tooltip')
const helper = require('../../../lib/helper.js')
const globalRegistry = require('../../../global/registry')
// const defaultOptions = [
// { value: 'vm', name: 'JavaScript VM', title: 'Execution environment does not connect to any node, everything is local and in memory only.' },
// { value: 'injected', name: 'Injected Web3', title: 'Execution environment has been provided by Metamask or similar provider.' },
// { value: 'web3', name: 'Web3 Provider', title: 'Execution environment connects to node at localhost (or via IPC if available), transactions will be sent to the network and can cause loss of money or worse! If this page is served via https and you access your node via http, it might not work. In this case, try cloning the repository and serving it via http.' }
// ]
class SettingsUI {
constructor (blockchain, networkModule) {
this.blockchain = blockchain

Loading…
Cancel
Save