commit
ba647d9d6c
16
package.json
16
package.json
@ -24,9 +24,9 @@
|
||||
"@types/multicodec": "^1.0.0",
|
||||
"@types/node": "^13.13.5",
|
||||
"@types/qs": "^6.9.2",
|
||||
"@types/react": "^16.9.34",
|
||||
"@types/react-dom": "^16.9.7",
|
||||
"@types/react-redux": "^7.1.8",
|
||||
"@types/react": "^17.0.2",
|
||||
"@types/react-dom": "^17.0.1",
|
||||
"@types/react-redux": "^7.1.16",
|
||||
"@types/react-router-dom": "^5.0.0",
|
||||
"@types/react-virtualized-auto-sizer": "^1.0.0",
|
||||
"@types/react-window": "^1.8.2",
|
||||
@ -54,7 +54,7 @@
|
||||
"copy-to-clipboard": "^3.2.0",
|
||||
"cross-env": "^7.0.2",
|
||||
"cypress": "^4.11.0",
|
||||
"eslint": "^6.8.0",
|
||||
"eslint": "^7.11.0",
|
||||
"eslint-config-prettier": "^6.11.0",
|
||||
"eslint-plugin-prettier": "^3.1.3",
|
||||
"eslint-plugin-react": "^7.19.0",
|
||||
@ -72,18 +72,18 @@
|
||||
"node-vibrant": "^3.1.5",
|
||||
"polished": "^3.3.2",
|
||||
"qs": "^6.9.4",
|
||||
"react": "^16.13.1",
|
||||
"react": "^17.0.1",
|
||||
"react-confetti": "^6.0.0",
|
||||
"react-device-detect": "^1.6.2",
|
||||
"react-dom": "^16.13.1",
|
||||
"react-dom": "^17.0.1",
|
||||
"react-feather": "^2.0.8",
|
||||
"react-ga": "^2.5.7",
|
||||
"react-i18next": "^10.7.0",
|
||||
"react-markdown": "^4.3.1",
|
||||
"react-popper": "^2.2.3",
|
||||
"react-redux": "^7.2.0",
|
||||
"react-redux": "^7.2.2",
|
||||
"react-router-dom": "^5.0.0",
|
||||
"react-scripts": "^3.4.1",
|
||||
"react-scripts": "^4.0.2",
|
||||
"react-spring": "^8.0.27",
|
||||
"react-use-gesture": "^6.0.14",
|
||||
"react-virtualized-auto-sizer": "^1.0.2",
|
||||
|
@ -153,7 +153,7 @@ const LineChart = ({
|
||||
chart.timeScale().fitContent()
|
||||
setChart(chart)
|
||||
}
|
||||
}, [chartCreated, currenValue, data, height, setValue, textColor, theme.bg1])
|
||||
}, [color, chartCreated, currenValue, data, height, setValue, textColor, theme.bg1])
|
||||
|
||||
return (
|
||||
<Wrapper>
|
||||
|
@ -1,17 +1,16 @@
|
||||
import { Token, TokenAmount, WETH } from '@uniswap/sdk'
|
||||
import React, { useContext } from 'react'
|
||||
import { Link, RouteComponentProps, withRouter } from 'react-router-dom'
|
||||
import { Token, TokenAmount, WETH } from '@uniswap/sdk'
|
||||
|
||||
import { Text } from 'rebass'
|
||||
import { AutoColumn } from '../Column'
|
||||
import { ThemeContext } from 'styled-components'
|
||||
import { useActiveWeb3React } from '../../hooks'
|
||||
import { ButtonSecondary } from '../Button'
|
||||
import { AutoColumn } from '../Column'
|
||||
import DoubleCurrencyLogo from '../DoubleLogo'
|
||||
import { RowBetween, RowFixed } from '../Row'
|
||||
import { FixedHeightRow, HoverCard } from './index'
|
||||
import DoubleCurrencyLogo from '../DoubleLogo'
|
||||
import { useActiveWeb3React } from '../../hooks'
|
||||
import { ThemeContext } from 'styled-components'
|
||||
|
||||
interface PositionCardProps extends RouteComponentProps<{}> {
|
||||
interface PositionCardProps extends RouteComponentProps<Record<string, any>> {
|
||||
token: Token
|
||||
V1LiquidityBalance: TokenAmount
|
||||
}
|
||||
|
@ -102,7 +102,12 @@ class MiniRpcProvider implements AsyncSendable {
|
||||
}
|
||||
|
||||
public readonly sendAsync = (
|
||||
request: { jsonrpc: '2.0'; id: number | string | null; method: string; params?: unknown[] | object },
|
||||
request: {
|
||||
jsonrpc: '2.0'
|
||||
id: number | string | null
|
||||
method: string
|
||||
params?: unknown[] | Record<string, unknown>
|
||||
},
|
||||
callback: (error: any, response: any) => void
|
||||
): void => {
|
||||
this.request(request.method, request.params)
|
||||
@ -112,7 +117,7 @@ class MiniRpcProvider implements AsyncSendable {
|
||||
|
||||
public readonly request = async (
|
||||
method: string | { method: string; params: unknown[] },
|
||||
params?: unknown[] | object
|
||||
params?: unknown[] | Record<string, unknown>
|
||||
): Promise<unknown> => {
|
||||
if (typeof method !== 'string') {
|
||||
return this.request(method.method, method.params)
|
||||
|
@ -5,10 +5,13 @@ import { useAddPopup, useBlockNumber } from '../application/hooks'
|
||||
import { AppDispatch, AppState } from '../index'
|
||||
import { checkedTransaction, finalizeTransaction } from './actions'
|
||||
|
||||
export function shouldCheck(
|
||||
lastBlockNumber: number,
|
||||
tx: { addedTime: number; receipt?: {}; lastCheckedBlockNumber?: number }
|
||||
): boolean {
|
||||
interface TxInterface {
|
||||
addedTime: number
|
||||
receipt?: Record<string, any>
|
||||
lastCheckedBlockNumber?: number
|
||||
}
|
||||
|
||||
export function shouldCheck(lastBlockNumber: number, tx: TxInterface): boolean {
|
||||
if (tx.receipt) return false
|
||||
if (!tx.lastCheckedBlockNumber) return true
|
||||
const blocksSinceCheck = lastBlockNumber - tx.lastCheckedBlockNumber
|
||||
|
@ -19,7 +19,7 @@
|
||||
"moduleResolution": "node",
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"jsx": "preserve",
|
||||
"jsx": "react",
|
||||
"downlevelIteration": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"types": ["react-spring", "jest"],
|
||||
|
Loading…
Reference in New Issue
Block a user