Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
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
vicotor
frontend
Commits
4d4c4a1f
Commit
4d4c4a1f
authored
Feb 09, 2023
by
isstuev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tokenInfo -> token
parent
f167d80b
Changes
26
Hide whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
26 additions
and
26 deletions
+26
-26
tokenTypes.ts
lib/token/tokenTypes.ts
+1
-1
tokenHolders.ts
mocks/tokens/tokenHolders.ts
+1
-1
tokenInfo.ts
mocks/tokens/tokenInfo.ts
+1
-1
AddressTokenTransfers.tsx
ui/address/AddressTokenTransfers.tsx
+1
-1
AddressTokens.tsx
ui/address/AddressTokens.tsx
+1
-1
AddressAddToMetaMask.tsx
ui/address/details/AddressAddToMetaMask.tsx
+1
-1
TokenSelectMenu.tsx
ui/address/tokenSelect/TokenSelectMenu.tsx
+1
-1
tokenUtils.ts
ui/address/utils/tokenUtils.ts
+1
-1
Address.tsx
ui/pages/Address.tsx
+1
-1
AddressHeadingInfo.tsx
ui/shared/AddressHeadingInfo.tsx
+1
-1
TokenTransferFilter.tsx
ui/shared/TokenTransfer/TokenTransferFilter.tsx
+1
-1
TokenTypeFilter.tsx
ui/shared/filters/TokenTypeFilter.tsx
+1
-1
TokenContractInfo.tsx
ui/token/TokenContractInfo.tsx
+1
-1
TokenDetails.tsx
ui/token/TokenDetails.tsx
+1
-1
TokenHolders.tsx
ui/token/TokenHolders/TokenHolders.tsx
+1
-1
TokenHoldersList.tsx
ui/token/TokenHolders/TokenHoldersList.tsx
+1
-1
TokenHoldersListItem.tsx
ui/token/TokenHolders/TokenHoldersListItem.tsx
+1
-1
TokenHoldersTable.tsx
ui/token/TokenHolders/TokenHoldersTable.tsx
+1
-1
TokenHoldersTableItem.tsx
ui/token/TokenHolders/TokenHoldersTableItem.tsx
+1
-1
TokenTransfer.tsx
ui/token/TokenTransfer/TokenTransfer.tsx
+1
-1
TokenTransferTable.tsx
ui/token/TokenTransfer/TokenTransferTable.tsx
+1
-1
Tokens.tsx
ui/tokens/Tokens.tsx
+1
-1
TokensListItem.tsx
ui/tokens/TokensListItem.tsx
+1
-1
TokensTable.tsx
ui/tokens/TokensTable.tsx
+1
-1
TokensTableItem.tsx
ui/tokens/TokensTableItem.tsx
+1
-1
TxTokenTransfer.tsx
ui/tx/TxTokenTransfer.tsx
+1
-1
No files found.
lib/token/tokenTypes.ts
View file @
4d4c4a1f
import
type
{
TokenType
}
from
'
types/api/token
Info
'
;
import
type
{
TokenType
}
from
'
types/api/token
'
;
const
TOKEN_TYPE
:
Array
<
{
title
:
string
;
id
:
TokenType
}
>
=
[
const
TOKEN_TYPE
:
Array
<
{
title
:
string
;
id
:
TokenType
}
>
=
[
{
title
:
'
ERC-20
'
,
id
:
'
ERC-20
'
},
{
title
:
'
ERC-20
'
,
id
:
'
ERC-20
'
},
...
...
mocks/tokens/tokenHolders.ts
View file @
4d4c4a1f
import
type
{
TokenHolders
}
from
'
types/api/token
Info
'
;
import
type
{
TokenHolders
}
from
'
types/api/token
'
;
import
{
withName
,
withoutName
}
from
'
mocks/address/address
'
;
import
{
withName
,
withoutName
}
from
'
mocks/address/address
'
;
...
...
mocks/tokens/tokenInfo.ts
View file @
4d4c4a1f
import
type
{
TokenCounters
,
TokenInfo
}
from
'
types/api/token
Info
'
;
import
type
{
TokenCounters
,
TokenInfo
}
from
'
types/api/token
'
;
export
const
tokenInfo
:
TokenInfo
=
{
export
const
tokenInfo
:
TokenInfo
=
{
address
:
'
0x55d536e4d6c1993d8ef2e2a4ef77f02088419420
'
,
address
:
'
0x55d536e4d6c1993d8ef2e2a4ef77f02088419420
'
,
...
...
ui/address/AddressTokenTransfers.tsx
View file @
4d4c4a1f
...
@@ -6,7 +6,7 @@ import React from 'react';
...
@@ -6,7 +6,7 @@ import React from 'react';
import
type
{
SocketMessage
}
from
'
lib/socket/types
'
;
import
type
{
SocketMessage
}
from
'
lib/socket/types
'
;
import
{
AddressFromToFilterValues
}
from
'
types/api/address
'
;
import
{
AddressFromToFilterValues
}
from
'
types/api/address
'
;
import
type
{
AddressFromToFilter
,
AddressTokenTransferResponse
}
from
'
types/api/address
'
;
import
type
{
AddressFromToFilter
,
AddressTokenTransferResponse
}
from
'
types/api/address
'
;
import
type
{
TokenType
}
from
'
types/api/token
Info
'
;
import
type
{
TokenType
}
from
'
types/api/token
'
;
import
type
{
TokenTransfer
}
from
'
types/api/tokenTransfer
'
;
import
type
{
TokenTransfer
}
from
'
types/api/tokenTransfer
'
;
import
crossIcon
from
'
icons/cross.svg
'
;
import
crossIcon
from
'
icons/cross.svg
'
;
...
...
ui/address/AddressTokens.tsx
View file @
4d4c4a1f
...
@@ -2,7 +2,7 @@ import { Box } from '@chakra-ui/react';
...
@@ -2,7 +2,7 @@ import { Box } from '@chakra-ui/react';
import
{
useRouter
}
from
'
next/router
'
;
import
{
useRouter
}
from
'
next/router
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TokenType
}
from
'
types/api/token
Info
'
;
import
type
{
TokenType
}
from
'
types/api/token
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
import
useQueryWithPages
from
'
lib/hooks/useQueryWithPages
'
;
import
useQueryWithPages
from
'
lib/hooks/useQueryWithPages
'
;
...
...
ui/address/details/AddressAddToMetaMask.tsx
View file @
4d4c4a1f
import
{
Box
,
chakra
,
Icon
,
Tooltip
}
from
'
@chakra-ui/react
'
;
import
{
Box
,
chakra
,
Icon
,
Tooltip
}
from
'
@chakra-ui/react
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
Info
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
'
;
import
metamaskIcon
from
'
icons/metamask.svg
'
;
import
metamaskIcon
from
'
icons/metamask.svg
'
;
import
useToast
from
'
lib/hooks/useToast
'
;
import
useToast
from
'
lib/hooks/useToast
'
;
...
...
ui/address/tokenSelect/TokenSelectMenu.tsx
View file @
4d4c4a1f
...
@@ -3,7 +3,7 @@ import type { Dictionary } from 'lodash';
...
@@ -3,7 +3,7 @@ import type { Dictionary } from 'lodash';
import
type
{
ChangeEvent
}
from
'
react
'
;
import
type
{
ChangeEvent
}
from
'
react
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TokenType
}
from
'
types/api/token
Info
'
;
import
type
{
TokenType
}
from
'
types/api/token
'
;
import
arrowIcon
from
'
icons/arrows/east.svg
'
;
import
arrowIcon
from
'
icons/arrows/east.svg
'
;
import
searchIcon
from
'
icons/search.svg
'
;
import
searchIcon
from
'
icons/search.svg
'
;
...
...
ui/address/utils/tokenUtils.ts
View file @
4d4c4a1f
import
BigNumber
from
'
bignumber.js
'
;
import
BigNumber
from
'
bignumber.js
'
;
import
type
{
AddressTokenBalance
}
from
'
types/api/address
'
;
import
type
{
AddressTokenBalance
}
from
'
types/api/address
'
;
import
type
{
TokenType
}
from
'
types/api/token
Info
'
;
import
type
{
TokenType
}
from
'
types/api/token
'
;
import
{
ZERO
}
from
'
lib/consts
'
;
import
{
ZERO
}
from
'
lib/consts
'
;
...
...
ui/pages/Address.tsx
View file @
4d4c4a1f
...
@@ -2,7 +2,7 @@ import { Flex, Skeleton, Tag, Box, Icon } from '@chakra-ui/react';
...
@@ -2,7 +2,7 @@ import { Flex, Skeleton, Tag, Box, Icon } from '@chakra-ui/react';
import
{
useRouter
}
from
'
next/router
'
;
import
{
useRouter
}
from
'
next/router
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TokenType
}
from
'
types/api/token
Info
'
;
import
type
{
TokenType
}
from
'
types/api/token
'
;
import
type
{
RoutedTab
}
from
'
ui/shared/RoutedTabs/types
'
;
import
type
{
RoutedTab
}
from
'
ui/shared/RoutedTabs/types
'
;
import
iconSuccess
from
'
icons/status/success.svg
'
;
import
iconSuccess
from
'
icons/status/success.svg
'
;
...
...
ui/shared/AddressHeadingInfo.tsx
View file @
4d4c4a1f
...
@@ -2,7 +2,7 @@ import { Flex } from '@chakra-ui/react';
...
@@ -2,7 +2,7 @@ import { Flex } from '@chakra-ui/react';
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
AddressParam
}
from
'
types/api/addressParams
'
;
import
type
{
AddressParam
}
from
'
types/api/addressParams
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
Info
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
import
AddressAddToMetaMask
from
'
ui/address/details/AddressAddToMetaMask
'
;
import
AddressAddToMetaMask
from
'
ui/address/details/AddressAddToMetaMask
'
;
...
...
ui/shared/TokenTransfer/TokenTransferFilter.tsx
View file @
4d4c4a1f
...
@@ -7,7 +7,7 @@ import {
...
@@ -7,7 +7,7 @@ import {
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
AddressFromToFilter
}
from
'
types/api/address
'
;
import
type
{
AddressFromToFilter
}
from
'
types/api/address
'
;
import
type
{
TokenType
}
from
'
types/api/token
Info
'
;
import
type
{
TokenType
}
from
'
types/api/token
'
;
import
PopoverFilter
from
'
ui/shared/filters/PopoverFilter
'
;
import
PopoverFilter
from
'
ui/shared/filters/PopoverFilter
'
;
import
TokenTypeFilter
from
'
ui/shared/filters/TokenTypeFilter
'
;
import
TokenTypeFilter
from
'
ui/shared/filters/TokenTypeFilter
'
;
...
...
ui/shared/filters/TokenTypeFilter.tsx
View file @
4d4c4a1f
import
{
CheckboxGroup
,
Checkbox
,
Text
}
from
'
@chakra-ui/react
'
;
import
{
CheckboxGroup
,
Checkbox
,
Text
}
from
'
@chakra-ui/react
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TokenType
}
from
'
types/api/token
Info
'
;
import
type
{
TokenType
}
from
'
types/api/token
'
;
import
TOKEN_TYPE
from
'
lib/token/tokenTypes
'
;
import
TOKEN_TYPE
from
'
lib/token/tokenTypes
'
;
...
...
ui/token/TokenContractInfo.tsx
View file @
4d4c4a1f
...
@@ -3,7 +3,7 @@ import type { UseQueryResult } from '@tanstack/react-query';
...
@@ -3,7 +3,7 @@ import type { UseQueryResult } from '@tanstack/react-query';
import
{
useRouter
}
from
'
next/router
'
;
import
{
useRouter
}
from
'
next/router
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
Info
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
'
;
import
useApiQuery
from
'
lib/api/useApiQuery
'
;
import
useApiQuery
from
'
lib/api/useApiQuery
'
;
import
AddressHeadingInfo
from
'
ui/shared/AddressHeadingInfo
'
;
import
AddressHeadingInfo
from
'
ui/shared/AddressHeadingInfo
'
;
...
...
ui/token/TokenDetails.tsx
View file @
4d4c4a1f
...
@@ -4,7 +4,7 @@ import { useRouter } from 'next/router';
...
@@ -4,7 +4,7 @@ import { useRouter } from 'next/router';
import
React
,
{
useCallback
}
from
'
react
'
;
import
React
,
{
useCallback
}
from
'
react
'
;
import
{
scroller
}
from
'
react-scroll
'
;
import
{
scroller
}
from
'
react-scroll
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
Info
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
'
;
import
useApiQuery
from
'
lib/api/useApiQuery
'
;
import
useApiQuery
from
'
lib/api/useApiQuery
'
;
import
getCurrencyValue
from
'
lib/getCurrencyValue
'
;
import
getCurrencyValue
from
'
lib/getCurrencyValue
'
;
...
...
ui/token/TokenHolders/TokenHolders.tsx
View file @
4d4c4a1f
...
@@ -2,7 +2,7 @@ import { Text } from '@chakra-ui/react';
...
@@ -2,7 +2,7 @@ import { Text } from '@chakra-ui/react';
import
type
{
UseQueryResult
}
from
'
@tanstack/react-query
'
;
import
type
{
UseQueryResult
}
from
'
@tanstack/react-query
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TokenHolders
,
TokenInfo
}
from
'
types/api/token
Info
'
;
import
type
{
TokenHolders
,
TokenInfo
}
from
'
types/api/token
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
import
useIsMobile
from
'
lib/hooks/useIsMobile
'
;
import
ActionBar
from
'
ui/shared/ActionBar
'
;
import
ActionBar
from
'
ui/shared/ActionBar
'
;
...
...
ui/token/TokenHolders/TokenHoldersList.tsx
View file @
4d4c4a1f
import
{
Box
}
from
'
@chakra-ui/react
'
;
import
{
Box
}
from
'
@chakra-ui/react
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TokenHolder
,
TokenInfo
}
from
'
types/api/token
Info
'
;
import
type
{
TokenHolder
,
TokenInfo
}
from
'
types/api/token
'
;
import
TokenHoldersListItem
from
'
./TokenHoldersListItem
'
;
import
TokenHoldersListItem
from
'
./TokenHoldersListItem
'
;
...
...
ui/token/TokenHolders/TokenHoldersListItem.tsx
View file @
4d4c4a1f
...
@@ -2,7 +2,7 @@ import { Flex } from '@chakra-ui/react';
...
@@ -2,7 +2,7 @@ import { Flex } from '@chakra-ui/react';
import
BigNumber
from
'
bignumber.js
'
;
import
BigNumber
from
'
bignumber.js
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TokenHolder
,
TokenInfo
}
from
'
types/api/token
Info
'
;
import
type
{
TokenHolder
,
TokenInfo
}
from
'
types/api/token
'
;
import
Address
from
'
ui/shared/address/Address
'
;
import
Address
from
'
ui/shared/address/Address
'
;
import
AddressIcon
from
'
ui/shared/address/AddressIcon
'
;
import
AddressIcon
from
'
ui/shared/address/AddressIcon
'
;
...
...
ui/token/TokenHolders/TokenHoldersTable.tsx
View file @
4d4c4a1f
import
{
Table
,
Tbody
,
Tr
,
Th
}
from
'
@chakra-ui/react
'
;
import
{
Table
,
Tbody
,
Tr
,
Th
}
from
'
@chakra-ui/react
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TokenHolder
,
TokenInfo
}
from
'
types/api/token
Info
'
;
import
type
{
TokenHolder
,
TokenInfo
}
from
'
types/api/token
'
;
import
{
default
as
Thead
}
from
'
ui/shared/TheadSticky
'
;
import
{
default
as
Thead
}
from
'
ui/shared/TheadSticky
'
;
import
TokenHoldersTableItem
from
'
ui/token/TokenHolders/TokenHoldersTableItem
'
;
import
TokenHoldersTableItem
from
'
ui/token/TokenHolders/TokenHoldersTableItem
'
;
...
...
ui/token/TokenHolders/TokenHoldersTableItem.tsx
View file @
4d4c4a1f
...
@@ -2,7 +2,7 @@ import { Tr, Td } from '@chakra-ui/react';
...
@@ -2,7 +2,7 @@ import { Tr, Td } from '@chakra-ui/react';
import
BigNumber
from
'
bignumber.js
'
;
import
BigNumber
from
'
bignumber.js
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TokenHolder
,
TokenInfo
}
from
'
types/api/token
Info
'
;
import
type
{
TokenHolder
,
TokenInfo
}
from
'
types/api/token
'
;
import
Address
from
'
ui/shared/address/Address
'
;
import
Address
from
'
ui/shared/address/Address
'
;
import
AddressIcon
from
'
ui/shared/address/AddressIcon
'
;
import
AddressIcon
from
'
ui/shared/address/AddressIcon
'
;
...
...
ui/token/TokenTransfer/TokenTransfer.tsx
View file @
4d4c4a1f
...
@@ -4,7 +4,7 @@ import { useRouter } from 'next/router';
...
@@ -4,7 +4,7 @@ import { useRouter } from 'next/router';
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
SocketMessage
}
from
'
lib/socket/types
'
;
import
type
{
SocketMessage
}
from
'
lib/socket/types
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
Info
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
'
;
import
type
{
TokenTransferResponse
}
from
'
types/api/tokenTransfer
'
;
import
type
{
TokenTransferResponse
}
from
'
types/api/tokenTransfer
'
;
import
useGradualIncrement
from
'
lib/hooks/useGradualIncrement
'
;
import
useGradualIncrement
from
'
lib/hooks/useGradualIncrement
'
;
...
...
ui/token/TokenTransfer/TokenTransferTable.tsx
View file @
4d4c4a1f
import
{
Table
,
Tbody
,
Tr
,
Th
,
Td
}
from
'
@chakra-ui/react
'
;
import
{
Table
,
Tbody
,
Tr
,
Th
,
Td
}
from
'
@chakra-ui/react
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
Info
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
'
;
import
type
{
TokenTransfer
}
from
'
types/api/tokenTransfer
'
;
import
type
{
TokenTransfer
}
from
'
types/api/tokenTransfer
'
;
import
trimTokenSymbol
from
'
lib/token/trimTokenSymbol
'
;
import
trimTokenSymbol
from
'
lib/token/trimTokenSymbol
'
;
...
...
ui/tokens/Tokens.tsx
View file @
4d4c4a1f
...
@@ -2,7 +2,7 @@ import { Hide, HStack, Show, Text } from '@chakra-ui/react';
...
@@ -2,7 +2,7 @@ import { Hide, HStack, Show, Text } from '@chakra-ui/react';
import
{
useRouter
}
from
'
next/router
'
;
import
{
useRouter
}
from
'
next/router
'
;
import
React
,
{
useCallback
}
from
'
react
'
;
import
React
,
{
useCallback
}
from
'
react
'
;
import
type
{
TokenType
}
from
'
types/api/token
Info
'
;
import
type
{
TokenType
}
from
'
types/api/token
'
;
import
getFilterValuesFromQuery
from
'
lib/getFilterValuesFromQuery
'
;
import
getFilterValuesFromQuery
from
'
lib/getFilterValuesFromQuery
'
;
import
useDebounce
from
'
lib/hooks/useDebounce
'
;
import
useDebounce
from
'
lib/hooks/useDebounce
'
;
...
...
ui/tokens/TokensListItem.tsx
View file @
4d4c4a1f
import
{
Flex
,
Text
,
Tag
,
HStack
,
Grid
,
GridItem
}
from
'
@chakra-ui/react
'
;
import
{
Flex
,
Text
,
Tag
,
HStack
,
Grid
,
GridItem
}
from
'
@chakra-ui/react
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
Info
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
'
;
import
getCurrencyValue
from
'
lib/getCurrencyValue
'
;
import
getCurrencyValue
from
'
lib/getCurrencyValue
'
;
import
AddressAddToMetaMask
from
'
ui/address/details/AddressAddToMetaMask
'
;
import
AddressAddToMetaMask
from
'
ui/address/details/AddressAddToMetaMask
'
;
...
...
ui/tokens/TokensTable.tsx
View file @
4d4c4a1f
import
{
Table
,
Tbody
,
Th
,
Tr
}
from
'
@chakra-ui/react
'
;
import
{
Table
,
Tbody
,
Th
,
Tr
}
from
'
@chakra-ui/react
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
Info
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
'
;
import
{
default
as
Thead
}
from
'
ui/shared/TheadSticky
'
;
import
{
default
as
Thead
}
from
'
ui/shared/TheadSticky
'
;
...
...
ui/tokens/TokensTableItem.tsx
View file @
4d4c4a1f
import
{
Box
,
Flex
,
Td
,
Tr
,
Text
,
Tag
}
from
'
@chakra-ui/react
'
;
import
{
Box
,
Flex
,
Td
,
Tr
,
Text
,
Tag
}
from
'
@chakra-ui/react
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
Info
'
;
import
type
{
TokenInfo
}
from
'
types/api/token
'
;
import
getCurrencyValue
from
'
lib/getCurrencyValue
'
;
import
getCurrencyValue
from
'
lib/getCurrencyValue
'
;
import
AddressAddToMetaMask
from
'
ui/address/details/AddressAddToMetaMask
'
;
import
AddressAddToMetaMask
from
'
ui/address/details/AddressAddToMetaMask
'
;
...
...
ui/tx/TxTokenTransfer.tsx
View file @
4d4c4a1f
...
@@ -2,7 +2,7 @@ import { Hide, Show, Text } from '@chakra-ui/react';
...
@@ -2,7 +2,7 @@ import { Hide, Show, Text } from '@chakra-ui/react';
import
{
useRouter
}
from
'
next/router
'
;
import
{
useRouter
}
from
'
next/router
'
;
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
type
{
TokenType
}
from
'
types/api/token
Info
'
;
import
type
{
TokenType
}
from
'
types/api/token
'
;
import
{
SECOND
}
from
'
lib/consts
'
;
import
{
SECOND
}
from
'
lib/consts
'
;
import
getFilterValuesFromQuery
from
'
lib/getFilterValuesFromQuery
'
;
import
getFilterValuesFromQuery
from
'
lib/getFilterValuesFromQuery
'
;
...
...
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