Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
interface
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LuckySwap
interface
Commits
472a553d
Unverified
Commit
472a553d
authored
Aug 30, 2022
by
Jack Short
Committed by
GitHub
Aug 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: catch invalid address token details (#4529)
parent
3a1bff14
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
57 additions
and
42 deletions
+57
-42
useNetworkTokenBalances.ts
src/hooks/useNetworkTokenBalances.ts
+43
-33
index.tsx
src/pages/TokenDetails/index.tsx
+14
-9
No files found.
src/hooks/useNetworkTokenBalances.ts
View file @
472a553d
...
...
@@ -12,7 +12,7 @@ interface useNetworkTokenBalancesResult {
}
interface
useNetworkTokenBalancesArgs
{
address
:
string
address
:
string
|
undefined
}
export
function
useNetworkTokenBalances
({
address
}:
useNetworkTokenBalancesArgs
):
useNetworkTokenBalancesResult
{
...
...
@@ -23,42 +23,52 @@ export function useNetworkTokenBalances({ address }: useNetworkTokenBalancesArgs
const
query
=
gql
``
useEffect
(()
=>
{
const
FAKE_TOKEN_NETWORK_BALANCES
=
{
[
SupportedChainId
.
ARBITRUM_ONE
]:
CurrencyAmount
.
fromRawAmount
(
new
Token
(
SupportedChainId
.
ARBITRUM_ONE
,
address
,
18
),
10
e18
),
[
SupportedChainId
.
MAINNET
]:
CurrencyAmount
.
fromRawAmount
(
new
Token
(
SupportedChainId
.
MAINNET
,
address
,
18
),
1
e18
),
[
SupportedChainId
.
RINKEBY
]:
CurrencyAmount
.
fromRawAmount
(
new
Token
(
SupportedChainId
.
RINKEBY
,
address
,
9
),
10
e18
),
}
if
(
address
)
{
const
FAKE_TOKEN_NETWORK_BALANCES
=
{
[
SupportedChainId
.
ARBITRUM_ONE
]:
CurrencyAmount
.
fromRawAmount
(
new
Token
(
SupportedChainId
.
ARBITRUM_ONE
,
address
,
18
),
10
e18
),
[
SupportedChainId
.
MAINNET
]:
CurrencyAmount
.
fromRawAmount
(
new
Token
(
SupportedChainId
.
MAINNET
,
address
,
18
),
1
e18
),
[
SupportedChainId
.
RINKEBY
]:
CurrencyAmount
.
fromRawAmount
(
new
Token
(
SupportedChainId
.
RINKEBY
,
address
,
9
),
10
e18
),
}
const
fetchNetworkTokenBalances
=
async
(
address
:
string
):
Promise
<
NetworkTokenBalancesMap
|
void
>
=>
{
const
waitRandom
=
(
min
:
number
,
max
:
number
):
Promise
<
void
>
=>
new
Promise
((
resolve
)
=>
setTimeout
(
resolve
,
min
+
Math
.
round
(
Math
.
random
()
*
Math
.
max
(
0
,
max
-
min
))))
try
{
console
.
log
(
'
useNetworkTokenBalances.fetchNetworkTokenBalances
'
,
query
)
setLoading
(
true
)
setError
(
null
)
console
.
log
(
'
useNetworkTokenBalances.fetchNetworkTokenBalances
'
,
address
)
await
waitRandom
(
250
,
2000
)
if
(
Math
.
random
()
<
0.05
)
{
throw
new
Error
(
'
fake error
'
)
const
fetchNetworkTokenBalances
=
async
(
address
:
string
):
Promise
<
NetworkTokenBalancesMap
|
void
>
=>
{
const
waitRandom
=
(
min
:
number
,
max
:
number
):
Promise
<
void
>
=>
new
Promise
((
resolve
)
=>
setTimeout
(
resolve
,
min
+
Math
.
round
(
Math
.
random
()
*
Math
.
max
(
0
,
max
-
min
))))
try
{
console
.
log
(
'
useNetworkTokenBalances.fetchNetworkTokenBalances
'
,
query
)
setLoading
(
true
)
setError
(
null
)
console
.
log
(
'
useNetworkTokenBalances.fetchNetworkTokenBalances
'
,
address
)
await
waitRandom
(
250
,
2000
)
if
(
Math
.
random
()
<
0.05
)
{
throw
new
Error
(
'
fake error
'
)
}
return
FAKE_TOKEN_NETWORK_BALANCES
}
catch
(
e
)
{
setError
(
'
something went wrong
'
)
}
finally
{
setLoading
(
false
)
}
return
FAKE_TOKEN_NETWORK_BALANCES
}
catch
(
e
)
{
setError
(
'
something went wrong
'
)
}
finally
{
setLoading
(
false
)
}
setLoading
(
true
)
setError
(
null
)
fetchNetworkTokenBalances
(
address
)
.
then
((
data
)
=>
{
if
(
data
)
setData
(
data
)
})
.
catch
((
e
)
=>
setError
(
e
))
.
finally
(()
=>
setLoading
(
false
))
}
else
{
setData
(
null
)
}
setLoading
(
true
)
setError
(
null
)
fetchNetworkTokenBalances
(
address
)
.
then
((
data
)
=>
{
if
(
data
)
setData
(
data
)
})
.
catch
((
e
)
=>
setError
(
e
))
.
finally
(()
=>
setLoading
(
false
))
},
[
address
,
query
])
return
{
...
...
src/pages/TokenDetails/index.tsx
View file @
472a553d
...
...
@@ -18,7 +18,7 @@ import { checkWarning } from 'constants/tokenSafety'
import
{
useToken
}
from
'
hooks/Tokens
'
import
{
useNetworkTokenBalances
}
from
'
hooks/useNetworkTokenBalances
'
import
{
useMemo
}
from
'
react
'
import
{
useParams
}
from
'
react-router-dom
'
import
{
Navigate
,
useLocation
,
useParams
}
from
'
react-router-dom
'
import
styled
from
'
styled-components/macro
'
const
Footer
=
styled
.
div
`
...
...
@@ -71,18 +71,19 @@ const RightPanel = styled.div`
}
`
function
NetworkBalances
(
tokenAddress
:
string
)
{
function
NetworkBalances
(
tokenAddress
:
string
|
undefined
)
{
return
useNetworkTokenBalances
({
address
:
tokenAddress
})
}
export
default
function
TokenDetails
()
{
const
location
=
useLocation
()
const
{
tokenAddress
}
=
useParams
<
{
tokenAddress
?:
string
}
>
()
const
token
=
useToken
(
tokenAddress
)
const
tokenWarning
=
token
Address
?
checkWarning
(
tokenA
ddress
)
:
null
const
tokenWarning
=
token
?
checkWarning
(
token
.
a
ddress
)
:
null
/* network balance handling */
const
{
data
:
networkData
}
=
tokenAddress
?
NetworkBalances
(
tokenAddress
)
:
{
data
:
null
}
const
{
data
:
networkData
}
=
NetworkBalances
(
token
?.
address
)
const
{
chainId
:
connectedChainId
}
=
useWeb3React
()
const
totalBalance
=
4.3
// dummy data
...
...
@@ -117,19 +118,23 @@ export default function TokenDetails() {
})
:
null
if
(
token
===
undefined
)
{
return
<
Navigate
to=
{
{
...
location
,
pathname
:
'
/tokens
'
}
}
replace
/>
}
return
(
<
TokenDetailsLayout
>
{
token
Address
&&
(
{
token
&&
(
<>
<
TokenDetail
address=
{
token
A
ddress
}
/>
<
TokenDetail
address=
{
token
.
a
ddress
}
/>
<
RightPanel
>
<
Widget
defaultToken=
{
token
??
undefined
}
/>
{
tokenWarning
&&
<
TokenSafetyMessage
tokenAddress=
{
token
A
ddress
}
warning=
{
tokenWarning
}
/>
}
<
BalanceSummary
address=
{
token
A
ddress
}
totalBalance=
{
totalBalance
}
networkBalances=
{
balancesByNetwork
}
/>
{
tokenWarning
&&
<
TokenSafetyMessage
tokenAddress=
{
token
.
a
ddress
}
warning=
{
tokenWarning
}
/>
}
<
BalanceSummary
address=
{
token
.
a
ddress
}
totalBalance=
{
totalBalance
}
networkBalances=
{
balancesByNetwork
}
/>
</
RightPanel
>
<
Footer
>
<
FooterBalanceSummary
address=
{
token
A
ddress
}
address=
{
token
.
a
ddress
}
totalBalance=
{
totalBalance
}
networkBalances=
{
balancesByNetwork
}
/>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment