Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge main branch #17

Open
wants to merge 48 commits into
base: develop
Choose a base branch
from
Open

Merge main branch #17

wants to merge 48 commits into from

Conversation

danimesq
Copy link
Member

No description provided.

@danimesq danimesq added the enhancement New feature or request label Oct 24, 2021
@danimesq danimesq self-assigned this Oct 24, 2021
@@ -4,7 +4,7 @@ import Aragon, {
ensResolve,
getRecommendedGasLimit,
providers,
} from '@aragon/wrapper'
} from '@1hive/wrapper'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing semicolon.

@@ -4,7 +4,7 @@ import Aragon, {
ensResolve,
getRecommendedGasLimit,
providers,
} from '@aragon/wrapper'
} from '@1hive/wrapper'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing semicolon.

@@ -7,6 +7,7 @@ import status from './icons/Status.png'
import wallet from './icons/wallet.svg'
import fortmatic from './icons/Fortmatic.svg'
import portis from './icons/Portis.svg'
import walletconnect from './icons/WalletConnect.svg'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'import' is only available in ES6 (use 'esversion: 6').
Missing semicolon.

import lidoImage from './images/lido.svg'
import gamlrImage from './images/gamlr.png'
import plasmmerImage from './images/plasmmer.jpg'
import AragonChinaImage from './images/aragonchina.png'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'import' is only available in ES6 (use 'esversion: 6').
Missing semicolon.
Too many errors. (7% scanned).

@@ -19,6 +19,12 @@ import pNetworkImage from './images/pnetwork.png'
import cryptokekImage from './images/cryptokek.svg'
import nucypherDaoImage from './images/nucypher.svg'
import nucypherIbexImage from './images/nucypher-ibex.png'
import lidoImage from './images/lido.svg'
import gamlrImage from './images/gamlr.png'
import plasmmerImage from './images/plasmmer.jpg'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'import' is only available in ES6 (use 'esversion: 6').
Missing semicolon.

@@ -19,6 +19,12 @@ import pNetworkImage from './images/pnetwork.png'
import cryptokekImage from './images/cryptokek.svg'
import nucypherDaoImage from './images/nucypher.svg'
import nucypherIbexImage from './images/nucypher-ibex.png'
import lidoImage from './images/lido.svg'
import gamlrImage from './images/gamlr.png'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'import' is only available in ES6 (use 'esversion: 6').
Missing semicolon.

@@ -19,6 +19,12 @@ import pNetworkImage from './images/pnetwork.png'
import cryptokekImage from './images/cryptokek.svg'
import nucypherDaoImage from './images/nucypher.svg'
import nucypherIbexImage from './images/nucypher-ibex.png'
import lidoImage from './images/lido.svg'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'import' is only available in ES6 (use 'esversion: 6').
Missing semicolon.

@@ -12,6 +12,7 @@ const SELECTED_CURRENCY = 'SELECTED_CURRENCY'
const SENTRY_DSN = 'SENTRY_DSN'
const PORTIS_DAPP_ID = 'PORTIS_DAPP_ID'
const FORTMATIC_API_KEY = 'FORTMATIC_API_KEY'
const WALLETCONNECT_RPC_URL = 'WALLETCONNECT_RPC_URL'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
Missing semicolon.

@@ -24,16 +26,21 @@ const Welcome = React.memo(function Welcome({

const selectorNetworksSorted = useMemo(() => {
return selectorNetworks
.map(([type, name, url]) => ({ type, name, url }))
.map(([chainId, type, name, url]) => ({ chainId, type, name, url }))
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
'destructuring binding' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
'object short notation' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).


import actionCreate from './assets/action-create.png'
import actionOpen from './assets/action-open.png'
import { getNetworkConfig } from '../../network-config'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'import' is only available in ES6 (use 'esversion: 6').
Missing semicolon.

@@ -7,9 +7,11 @@ import Header from '../Header/Header'
import OpenOrg from './OpenOrg'
import Suggestions from './Suggestions'
import WelcomeAction from './WelcomeAction'
import { setDefaultEthNode, setEthNetworkType } from '../../local-settings'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'import' is only available in ES6 (use 'esversion: 6').
Missing semicolon.

@@ -1,5 +1,5 @@
import PropTypes from 'prop-types'
import Aragon from '@aragon/wrapper'
import Aragon from '@1hive/wrapper'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'import' is only available in ES6 (use 'esversion: 6').
Missing semicolon.

@@ -6,6 +6,7 @@ import { getFortmaticApiKey, getPortisDappId } from './local-settings'
import { getProviderFromUseWalletId } from './ethereum-providers'
import { network } from './environment'
import { getWeb3, filterBalanceValue } from './web3-utils'
import { getWalletConnectRPC } from './network-config'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'import' is only available in ES6 (use 'esversion: 6').
Missing semicolon.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants