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
831240f1
Commit
831240f1
authored
Dec 21, 2023
by
tom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
support ENS in AddressEntity
parent
ea9e0cd5
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
75 additions
and
7 deletions
+75
-7
address.ts
mocks/address/address.ts
+14
-0
block.ts
mocks/blocks/block.ts
+3
-0
index.ts
mocks/contracts/index.ts
+2
-0
tokenTransfer.ts
mocks/tokens/tokenTransfer.ts
+6
-0
internalTxs.ts
mocks/txs/internalTxs.ts
+3
-0
state.ts
mocks/txs/state.ts
+5
-0
tx.ts
mocks/txs/tx.ts
+7
-0
address.ts
stubs/address.ts
+1
-0
addressParams.ts
stubs/addressParams.ts
+1
-0
addressParams.ts
types/api/addressParams.ts
+1
-0
DepositsListItem.tsx
ui/l2Deposits/DepositsListItem.tsx
+1
-1
DepositsTableItem.tsx
ui/l2Deposits/DepositsTableItem.tsx
+1
-1
Accounts.pw.tsx
ui/pages/Accounts.pw.tsx
+1
-0
SearchResultListItem.tsx
ui/searchResults/SearchResultListItem.tsx
+1
-0
SearchResultTableItem.tsx
ui/searchResults/SearchResultTableItem.tsx
+2
-0
AddressEntity.pw.tsx
ui/shared/entities/address/AddressEntity.pw.tsx
+12
-0
AddressEntity.tsx
ui/shared/entities/address/AddressEntity.tsx
+5
-4
AddressEntity.pw.tsx_default_loading-with-ENS-1.png
...ots__/AddressEntity.pw.tsx_default_loading-with-ENS-1.png
+0
-0
SearchBarSuggestAddress.tsx
...ts/searchBar/SearchBarSuggest/SearchBarSuggestAddress.tsx
+8
-1
TokensTableItem.tsx
ui/tokens/TokensTableItem.tsx
+1
-0
No files found.
mocks/address/address.ts
View file @
831240f1
...
@@ -15,6 +15,19 @@ export const withName: AddressParam = {
...
@@ -15,6 +15,19 @@ export const withName: AddressParam = {
private_tags
:
[],
private_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
public_tags
:
[],
public_tags
:
[],
ens_domain_name
:
null
,
};
export
const
withEns
:
AddressParam
=
{
hash
:
hash
,
implementation_name
:
null
,
is_contract
:
false
,
is_verified
:
null
,
name
:
'
ArianeeStore
'
,
private_tags
:
[],
watchlist_names
:
[],
public_tags
:
[],
ens_domain_name
:
'
kitty.kitty.kitty.cat.eth
'
,
};
};
export
const
withoutName
:
AddressParam
=
{
export
const
withoutName
:
AddressParam
=
{
...
@@ -26,6 +39,7 @@ export const withoutName: AddressParam = {
...
@@ -26,6 +39,7 @@ export const withoutName: AddressParam = {
private_tags
:
[],
private_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
public_tags
:
[],
public_tags
:
[],
ens_domain_name
:
null
,
};
};
export
const
token
:
Address
=
{
export
const
token
:
Address
=
{
...
...
mocks/blocks/block.ts
View file @
831240f1
...
@@ -22,6 +22,7 @@ export const base: Block = {
...
@@ -22,6 +22,7 @@ export const base: Block = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
nonce
:
'
0x0000000000000000
'
,
nonce
:
'
0x0000000000000000
'
,
parent_hash
:
'
0x44125f0eb36a9d942e0c23bb4e8117f7ba86a9537a69b59c0025986ed2b7500f
'
,
parent_hash
:
'
0x44125f0eb36a9d942e0c23bb4e8117f7ba86a9537a69b59c0025986ed2b7500f
'
,
...
@@ -71,6 +72,7 @@ export const genesis: Block = {
...
@@ -71,6 +72,7 @@ export const genesis: Block = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
'
kitty.kitty.cat.eth
'
,
},
},
nonce
:
'
0x0000000000000000
'
,
nonce
:
'
0x0000000000000000
'
,
parent_hash
:
'
0x0000000000000000000000000000000000000000000000000000000000000000
'
,
parent_hash
:
'
0x0000000000000000000000000000000000000000000000000000000000000000
'
,
...
@@ -99,6 +101,7 @@ export const base2: Block = {
...
@@ -99,6 +101,7 @@ export const base2: Block = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
timestamp
:
'
2022-11-11T11:46:05Z
'
,
timestamp
:
'
2022-11-11T11:46:05Z
'
,
tx_count
:
253
,
tx_count
:
253
,
...
...
mocks/contracts/index.ts
View file @
831240f1
...
@@ -10,6 +10,7 @@ export const contract1: VerifiedContract = {
...
@@ -10,6 +10,7 @@ export const contract1: VerifiedContract = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
coin_balance
:
'
2346534676900000008
'
,
coin_balance
:
'
2346534676900000008
'
,
compiler_version
:
'
v0.8.17+commit.8df45f5f
'
,
compiler_version
:
'
v0.8.17+commit.8df45f5f
'
,
...
@@ -31,6 +32,7 @@ export const contract2: VerifiedContract = {
...
@@ -31,6 +32,7 @@ export const contract2: VerifiedContract = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
coin_balance
:
'
9078234570352343999
'
,
coin_balance
:
'
9078234570352343999
'
,
compiler_version
:
'
v0.3.1+commit.0463ea4c
'
,
compiler_version
:
'
v0.3.1+commit.0463ea4c
'
,
...
...
mocks/tokens/tokenTransfer.ts
View file @
831240f1
...
@@ -10,6 +10,7 @@ export const erc20: TokenTransfer = {
...
@@ -10,6 +10,7 @@ export const erc20: TokenTransfer = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
to
:
{
to
:
{
hash
:
'
0x7d20a8D54F955b4483A66aB335635ab66e151c51
'
,
hash
:
'
0x7d20a8D54F955b4483A66aB335635ab66e151c51
'
,
...
@@ -20,6 +21,7 @@ export const erc20: TokenTransfer = {
...
@@ -20,6 +21,7 @@ export const erc20: TokenTransfer = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
'
kitty.kitty.cat.eth
'
,
},
},
token
:
{
token
:
{
address
:
'
0x55d536e4d6c1993d8ef2e2a4ef77f02088419420
'
,
address
:
'
0x55d536e4d6c1993d8ef2e2a4ef77f02088419420
'
,
...
@@ -55,6 +57,7 @@ export const erc721: TokenTransfer = {
...
@@ -55,6 +57,7 @@ export const erc721: TokenTransfer = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
'
kitty.kitty.cat.eth
'
,
},
},
to
:
{
to
:
{
hash
:
'
0x47eE48AEBc4ab9Ed908b805b8c8dAAa71B31Db1A
'
,
hash
:
'
0x47eE48AEBc4ab9Ed908b805b8c8dAAa71B31Db1A
'
,
...
@@ -65,6 +68,7 @@ export const erc721: TokenTransfer = {
...
@@ -65,6 +68,7 @@ export const erc721: TokenTransfer = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
token
:
{
token
:
{
address
:
'
0x363574E6C5C71c343d7348093D84320c76d5Dd29
'
,
address
:
'
0x363574E6C5C71c343d7348093D84320c76d5Dd29
'
,
...
@@ -99,6 +103,7 @@ export const erc1155A: TokenTransfer = {
...
@@ -99,6 +103,7 @@ export const erc1155A: TokenTransfer = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
to
:
{
to
:
{
hash
:
'
0xBb36c792B9B45Aaf8b848A1392B0d6559202729E
'
,
hash
:
'
0xBb36c792B9B45Aaf8b848A1392B0d6559202729E
'
,
...
@@ -109,6 +114,7 @@ export const erc1155A: TokenTransfer = {
...
@@ -109,6 +114,7 @@ export const erc1155A: TokenTransfer = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
'
kitty.kitty.cat.eth
'
,
},
},
token
:
{
token
:
{
address
:
'
0xF56b7693E4212C584de4a83117f805B8E89224CB
'
,
address
:
'
0xF56b7693E4212C584de4a83117f805B8E89224CB
'
,
...
...
mocks/txs/internalTxs.ts
View file @
831240f1
...
@@ -13,6 +13,7 @@ export const base: InternalTransaction = {
...
@@ -13,6 +13,7 @@ export const base: InternalTransaction = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
gas_limit
:
'
757586
'
,
gas_limit
:
'
757586
'
,
index
:
1
,
index
:
1
,
...
@@ -27,6 +28,7 @@ export const base: InternalTransaction = {
...
@@ -27,6 +28,7 @@ export const base: InternalTransaction = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
transaction_hash
:
'
0xe9e27dfeb183066e26cfe556f74b7219b08df6951e25d14003d4fc7af8bbff61
'
,
transaction_hash
:
'
0xe9e27dfeb183066e26cfe556f74b7219b08df6951e25d14003d4fc7af8bbff61
'
,
type
:
'
call
'
,
type
:
'
call
'
,
...
@@ -61,6 +63,7 @@ export const withContractCreated: InternalTransaction = {
...
@@ -61,6 +63,7 @@ export const withContractCreated: InternalTransaction = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
value
:
'
1420000000000000000
'
,
value
:
'
1420000000000000000
'
,
gas_limit
:
'
5433
'
,
gas_limit
:
'
5433
'
,
...
...
mocks/txs/state.ts
View file @
831240f1
...
@@ -10,6 +10,7 @@ export const mintToken: TxStateChange = {
...
@@ -10,6 +10,7 @@ export const mintToken: TxStateChange = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
balance_after
:
null
,
balance_after
:
null
,
balance_before
:
null
,
balance_before
:
null
,
...
@@ -47,6 +48,7 @@ export const receiveMintedToken: TxStateChange = {
...
@@ -47,6 +48,7 @@ export const receiveMintedToken: TxStateChange = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
balance_after
:
'
1
'
,
balance_after
:
'
1
'
,
balance_before
:
'
0
'
,
balance_before
:
'
0
'
,
...
@@ -84,6 +86,7 @@ export const transfer1155Token: TxStateChange = {
...
@@ -84,6 +86,7 @@ export const transfer1155Token: TxStateChange = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
balance_after
:
'
1
'
,
balance_after
:
'
1
'
,
balance_before
:
'
0
'
,
balance_before
:
'
0
'
,
...
@@ -115,6 +118,7 @@ export const receiveCoin: TxStateChange = {
...
@@ -115,6 +118,7 @@ export const receiveCoin: TxStateChange = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
balance_after
:
'
443787514723917012805
'
,
balance_after
:
'
443787514723917012805
'
,
balance_before
:
'
443787484997510408745
'
,
balance_before
:
'
443787484997510408745
'
,
...
@@ -134,6 +138,7 @@ export const sendCoin: TxStateChange = {
...
@@ -134,6 +138,7 @@ export const sendCoin: TxStateChange = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
balance_after
:
'
828282622733717191
'
,
balance_after
:
'
828282622733717191
'
,
balance_before
:
'
832127467556437753
'
,
balance_before
:
'
832127467556437753
'
,
...
...
mocks/txs/tx.ts
View file @
831240f1
...
@@ -29,6 +29,7 @@ export const base: Transaction = {
...
@@ -29,6 +29,7 @@ export const base: Transaction = {
private_tags
:
[
],
private_tags
:
[
],
public_tags
:
[
publicTag
],
public_tags
:
[
publicTag
],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
'
kitty.kitty.cat.eth
'
,
},
},
gas_limit
:
'
800000
'
,
gas_limit
:
'
800000
'
,
gas_price
:
'
48000000000
'
,
gas_price
:
'
48000000000
'
,
...
@@ -54,6 +55,7 @@ export const base: Transaction = {
...
@@ -54,6 +55,7 @@ export const base: Transaction = {
private_tags
:
[
privateTag
],
private_tags
:
[
privateTag
],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[
watchlistName
],
watchlist_names
:
[
watchlistName
],
ens_domain_name
:
null
,
},
},
token_transfers
:
[],
token_transfers
:
[],
token_transfers_overflow
:
false
,
token_transfers_overflow
:
false
,
...
@@ -97,6 +99,7 @@ export const withContractCreation: Transaction = {
...
@@ -97,6 +99,7 @@ export const withContractCreation: Transaction = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
tx_types
:
[
tx_types
:
[
'
contract_creation
'
,
'
contract_creation
'
,
...
@@ -115,6 +118,7 @@ export const withTokenTransfer: Transaction = {
...
@@ -115,6 +118,7 @@ export const withTokenTransfer: Transaction = {
private_tags
:
[
privateTag
],
private_tags
:
[
privateTag
],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[
watchlistName
],
watchlist_names
:
[
watchlistName
],
ens_domain_name
:
null
,
},
},
token_transfers
:
[
token_transfers
:
[
tokenTransferMock
.
erc20
,
tokenTransferMock
.
erc20
,
...
@@ -168,6 +172,7 @@ export const withRawRevertReason: Transaction = {
...
@@ -168,6 +172,7 @@ export const withRawRevertReason: Transaction = {
private_tags
:
[
],
private_tags
:
[
],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[
],
watchlist_names
:
[
],
ens_domain_name
:
null
,
},
},
};
};
...
@@ -283,6 +288,7 @@ export const stabilityTx: Transaction = {
...
@@ -283,6 +288,7 @@ export const stabilityTx: Transaction = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
dapp_fee
:
'
34381250000000
'
,
dapp_fee
:
'
34381250000000
'
,
token
:
{
token
:
{
...
@@ -307,6 +313,7 @@ export const stabilityTx: Transaction = {
...
@@ -307,6 +313,7 @@ export const stabilityTx: Transaction = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
},
},
validator_fee
:
'
34381250000000
'
,
validator_fee
:
'
34381250000000
'
,
},
},
...
...
stubs/address.ts
View file @
831240f1
...
@@ -71,6 +71,7 @@ export const TOP_ADDRESS: AddressesItem = {
...
@@ -71,6 +71,7 @@ export const TOP_ADDRESS: AddressesItem = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[
],
public_tags
:
[
],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
};
};
export
const
ADDRESS_COIN_BALANCE
:
AddressCoinBalanceHistoryItem
=
{
export
const
ADDRESS_COIN_BALANCE
:
AddressCoinBalanceHistoryItem
=
{
...
...
stubs/addressParams.ts
View file @
831240f1
...
@@ -11,4 +11,5 @@ export const ADDRESS_PARAMS: AddressParam = {
...
@@ -11,4 +11,5 @@ export const ADDRESS_PARAMS: AddressParam = {
private_tags
:
[],
private_tags
:
[],
public_tags
:
[],
public_tags
:
[],
watchlist_names
:
[],
watchlist_names
:
[],
ens_domain_name
:
null
,
};
};
types/api/addressParams.ts
View file @
831240f1
...
@@ -21,4 +21,5 @@ export interface AddressParam extends UserTags {
...
@@ -21,4 +21,5 @@ export interface AddressParam extends UserTags {
name
:
string
|
null
;
name
:
string
|
null
;
is_contract
:
boolean
;
is_contract
:
boolean
;
is_verified
:
boolean
|
null
;
is_verified
:
boolean
|
null
;
ens_domain_name
:
string
|
null
;
}
}
ui/l2Deposits/DepositsListItem.tsx
View file @
831240f1
...
@@ -65,7 +65,7 @@ const DepositsListItem = ({ item, isLoading }: Props) => {
...
@@ -65,7 +65,7 @@ const DepositsListItem = ({ item, isLoading }: Props) => {
<
ListItemMobileGrid
.
Label
isLoading=
{
isLoading
}
>
L1 txn origin
</
ListItemMobileGrid
.
Label
>
<
ListItemMobileGrid
.
Label
isLoading=
{
isLoading
}
>
L1 txn origin
</
ListItemMobileGrid
.
Label
>
<
ListItemMobileGrid
.
Value
>
<
ListItemMobileGrid
.
Value
>
<
AddressEntityL1
<
AddressEntityL1
address=
{
{
hash
:
item
.
l1_tx_origin
,
name
:
''
,
is_contract
:
false
,
is_verified
:
false
,
implementation_name
:
''
}
}
address=
{
{
hash
:
item
.
l1_tx_origin
,
name
:
''
,
is_contract
:
false
,
is_verified
:
false
,
implementation_name
:
''
,
ens_domain_name
:
null
}
}
isLoading=
{
isLoading
}
isLoading=
{
isLoading
}
noCopy
noCopy
/>
/>
...
...
ui/l2Deposits/DepositsTableItem.tsx
View file @
831240f1
...
@@ -56,7 +56,7 @@ const WithdrawalsTableItem = ({ item, isLoading }: Props) => {
...
@@ -56,7 +56,7 @@ const WithdrawalsTableItem = ({ item, isLoading }: Props) => {
</
Td
>
</
Td
>
<
Td
verticalAlign=
"middle"
>
<
Td
verticalAlign=
"middle"
>
<
AddressEntityL1
<
AddressEntityL1
address=
{
{
hash
:
item
.
l1_tx_origin
,
name
:
''
,
is_contract
:
false
,
is_verified
:
false
,
implementation_name
:
''
}
}
address=
{
{
hash
:
item
.
l1_tx_origin
,
name
:
''
,
is_contract
:
false
,
is_verified
:
false
,
implementation_name
:
''
,
ens_domain_name
:
null
}
}
isLoading=
{
isLoading
}
isLoading=
{
isLoading
}
truncation=
"constant"
truncation=
"constant"
noCopy
noCopy
...
...
ui/pages/Accounts.pw.tsx
View file @
831240f1
...
@@ -21,6 +21,7 @@ const addresses: AddressesResponse = {
...
@@ -21,6 +21,7 @@ const addresses: AddressesResponse = {
...
addressMocks
.
token
,
...
addressMocks
.
token
,
tx_count
:
'
109123890123
'
,
tx_count
:
'
109123890123
'
,
coin_balance
:
'
22222345678901234567890000
'
,
coin_balance
:
'
22222345678901234567890000
'
,
ens_domain_name
:
null
,
},
{
},
{
...
addressMocks
.
withoutName
,
...
addressMocks
.
withoutName
,
tx_count
:
'
11
'
,
tx_count
:
'
11
'
,
...
...
ui/searchResults/SearchResultListItem.tsx
View file @
831240f1
...
@@ -82,6 +82,7 @@ const SearchResultListItem = ({ data, searchTerm, isLoading }: Props) => {
...
@@ -82,6 +82,7 @@ const SearchResultListItem = ({ data, searchTerm, isLoading }: Props) => {
is_verified
:
data
.
is_smart_contract_verified
,
is_verified
:
data
.
is_smart_contract_verified
,
name
:
null
,
name
:
null
,
implementation_name
:
null
,
implementation_name
:
null
,
ens_domain_name
:
null
,
};
};
return
(
return
(
...
...
ui/searchResults/SearchResultTableItem.tsx
View file @
831240f1
...
@@ -101,6 +101,7 @@ const SearchResultTableItem = ({ data, searchTerm, isLoading }: Props) => {
...
@@ -101,6 +101,7 @@ const SearchResultTableItem = ({ data, searchTerm, isLoading }: Props) => {
is_verified
:
data
.
is_smart_contract_verified
,
is_verified
:
data
.
is_smart_contract_verified
,
name
:
null
,
name
:
null
,
implementation_name
:
null
,
implementation_name
:
null
,
ens_domain_name
:
null
,
};
};
return
(
return
(
...
@@ -136,6 +137,7 @@ const SearchResultTableItem = ({ data, searchTerm, isLoading }: Props) => {
...
@@ -136,6 +137,7 @@ const SearchResultTableItem = ({ data, searchTerm, isLoading }: Props) => {
is_verified
:
data
.
is_smart_contract_verified
,
is_verified
:
data
.
is_smart_contract_verified
,
name
:
null
,
name
:
null
,
implementation_name
:
null
,
implementation_name
:
null
,
ens_domain_name
:
null
,
};
};
return
(
return
(
...
...
ui/shared/entities/address/AddressEntity.pw.tsx
View file @
831240f1
...
@@ -80,6 +80,18 @@ test.describe('loading', () => {
...
@@ -80,6 +80,18 @@ test.describe('loading', () => {
await
expect
(
component
).
toHaveScreenshot
();
await
expect
(
component
).
toHaveScreenshot
();
});
});
test
(
'
with ENS
'
,
async
({
mount
})
=>
{
const
component
=
await
mount
(
<
TestApp
>
<
AddressEntity
address=
{
addressMock
.
withEns
}
/>
</
TestApp
>,
);
await
expect
(
component
).
toHaveScreenshot
();
});
});
});
test
(
'
external link
'
,
async
({
mount
})
=>
{
test
(
'
external link
'
,
async
({
mount
})
=>
{
...
...
ui/shared/entities/address/AddressEntity.tsx
View file @
831240f1
...
@@ -101,10 +101,11 @@ const Icon = (props: IconProps) => {
...
@@ -101,10 +101,11 @@ const Icon = (props: IconProps) => {
type
ContentProps
=
Omit
<
EntityBase
.
ContentBaseProps
,
'
text
'
>
&
Pick
<
EntityProps
,
'
address
'
>
;
type
ContentProps
=
Omit
<
EntityBase
.
ContentBaseProps
,
'
text
'
>
&
Pick
<
EntityProps
,
'
address
'
>
;
const
Content
=
chakra
((
props
:
ContentProps
)
=>
{
const
Content
=
chakra
((
props
:
ContentProps
)
=>
{
if
(
props
.
address
.
name
)
{
if
(
props
.
address
.
name
||
props
.
address
.
ens_domain_name
)
{
const
text
=
props
.
address
.
ens_domain_name
||
props
.
address
.
name
;
const
label
=
(
const
label
=
(
<
VStack
gap=
{
0
}
py=
{
1
}
color=
"inherit"
>
<
VStack
gap=
{
0
}
py=
{
1
}
color=
"inherit"
>
<
Box
fontWeight=
{
600
}
whiteSpace=
"pre-wrap"
wordBreak=
"break-word"
>
{
props
.
address
.
name
}
</
Box
>
<
Box
fontWeight=
{
600
}
whiteSpace=
"pre-wrap"
wordBreak=
"break-word"
>
{
text
}
</
Box
>
<
Box
whiteSpace=
"pre-wrap"
wordBreak=
"break-word"
>
{
props
.
address
.
hash
}
</
Box
>
<
Box
whiteSpace=
"pre-wrap"
wordBreak=
"break-word"
>
{
props
.
address
.
hash
}
</
Box
>
</
VStack
>
</
VStack
>
);
);
...
@@ -112,7 +113,7 @@ const Content = chakra((props: ContentProps) => {
...
@@ -112,7 +113,7 @@ const Content = chakra((props: ContentProps) => {
return
(
return
(
<
Tooltip
label=
{
label
}
maxW=
"100vw"
>
<
Tooltip
label=
{
label
}
maxW=
"100vw"
>
<
Skeleton
isLoaded=
{
!
props
.
isLoading
}
overflow=
"hidden"
textOverflow=
"ellipsis"
whiteSpace=
"nowrap"
as=
"span"
>
<
Skeleton
isLoaded=
{
!
props
.
isLoading
}
overflow=
"hidden"
textOverflow=
"ellipsis"
whiteSpace=
"nowrap"
as=
"span"
>
{
props
.
address
.
name
}
{
text
}
</
Skeleton
>
</
Skeleton
>
</
Tooltip
>
</
Tooltip
>
);
);
...
@@ -140,7 +141,7 @@ const Copy = (props: CopyProps) => {
...
@@ -140,7 +141,7 @@ const Copy = (props: CopyProps) => {
const
Container
=
EntityBase
.
Container
;
const
Container
=
EntityBase
.
Container
;
export
interface
EntityProps
extends
EntityBase
.
EntityBaseProps
{
export
interface
EntityProps
extends
EntityBase
.
EntityBaseProps
{
address
:
Pick
<
AddressParam
,
'
hash
'
|
'
name
'
|
'
is_contract
'
|
'
is_verified
'
|
'
implementation_name
'
>
;
address
:
Pick
<
AddressParam
,
'
hash
'
|
'
name
'
|
'
is_contract
'
|
'
is_verified
'
|
'
implementation_name
'
|
'
ens_domain_name
'
>
;
isSafeAddress
?:
boolean
;
isSafeAddress
?:
boolean
;
}
}
...
...
ui/shared/entities/address/__screenshots__/AddressEntity.pw.tsx_default_loading-with-ENS-1.png
0 → 100644
View file @
831240f1
1.67 KB
ui/snippets/searchBar/SearchBarSuggest/SearchBarSuggestAddress.tsx
View file @
831240f1
...
@@ -17,7 +17,14 @@ const SearchBarSuggestAddress = ({ data, isMobile, searchTerm }: Props) => {
...
@@ -17,7 +17,14 @@ const SearchBarSuggestAddress = ({ data, isMobile, searchTerm }: Props) => {
const
shouldHighlightHash
=
data
.
address
.
toLowerCase
()
===
searchTerm
.
toLowerCase
();
const
shouldHighlightHash
=
data
.
address
.
toLowerCase
()
===
searchTerm
.
toLowerCase
();
const
icon
=
(
const
icon
=
(
<
AddressEntity
.
Icon
<
AddressEntity
.
Icon
address=
{
{
hash
:
data
.
address
,
is_contract
:
data
.
type
===
'
contract
'
,
name
:
''
,
is_verified
:
data
.
is_smart_contract_verified
,
implementation_name
:
null
}
}
address=
{
{
hash
:
data
.
address
,
is_contract
:
data
.
type
===
'
contract
'
,
name
:
''
,
is_verified
:
data
.
is_smart_contract_verified
,
implementation_name
:
null
,
ens_domain_name
:
null
,
}
}
/>
/>
);
);
const
name
=
data
.
name
&&
(
const
name
=
data
.
name
&&
(
...
...
ui/tokens/TokensTableItem.tsx
View file @
831240f1
...
@@ -48,6 +48,7 @@ const TokensTableItem = ({
...
@@ -48,6 +48,7 @@ const TokensTableItem = ({
implementation_name
:
null
,
implementation_name
:
null
,
is_contract
:
true
,
is_contract
:
true
,
is_verified
:
false
,
is_verified
:
false
,
ens_domain_name
:
null
,
};
};
return
(
return
(
...
...
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