Skip to content

Commit

Permalink
fix: View the address transactions order by time to get the first tra…
Browse files Browse the repository at this point in the history
…nsaction block number easily (#3121)

fix: View the address order by time for better get the first transaction block number

Co-authored-by: Chen Yu <[email protected]>
  • Loading branch information
yanguoyu and Keith-CY authored Apr 18, 2024
1 parent ab2e85d commit 8b3486e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/neuron-ui/src/components/PageContainer/hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const useSetBlockNumber = ({
)
const onOpenAddressInExplorer = useCallback(() => {
const explorerUrl = getExplorerUrl(isMainnet)
openExternal(`${explorerUrl}/address/${firstAddress}`)
openExternal(`${explorerUrl}/address/${firstAddress}?sort=time`)
}, [firstAddress, isMainnet])
const onViewBlock = useCallback(() => {
const explorerUrl = getExplorerUrl(isMainnet)
Expand Down

2 comments on commit 8b3486e

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

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

Packaging for test is done in 8731707966

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

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

Packaging for test is done in 8731706771

Please sign in to comment.