File tree Expand file tree Collapse file tree
content/etherscan/feat-scripts Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ### v5.8.3
2+
3+ - [ fix] Fix local label deletion functionality
4+
15### v5.8.2
26
37- [ fix] Fix Tronscan compatibility
Original file line number Diff line number Diff line change 11{
22 "name" : " metasuites" ,
3- "version" : " 5.8.2 " ,
3+ "version" : " 5.8.3 " ,
44 "repository" : {
55 "type" : " git" ,
66 "url" : " https://github.com/blocksecteam/metasuites.git"
Original file line number Diff line number Diff line change @@ -139,9 +139,7 @@ export const mergeAddressLabels = async (
139139 } as AddressLabel
140140 } )
141141 . filter ( item => {
142- const key = `${ classifyByChain ( item . chain ) } -${ formatAddress (
143- item . address
144- ) } `
142+ const key = `${ item . chain } -${ formatAddress ( item . address ) } `
145143 return ! privateLabels [ key ] ?. deleted
146144 } )
147145 return uniqBy (
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ const genMainAddressLabel = async (chain: string) => {
2222
2323 const divSummaryEl = $ ( '#ContentPlaceHolder1_divSummary' )
2424 const containerEl = $ ( '#ContentPlaceHolder1_divLabels' )
25- console . log ( 'containerEl' , containerEl [ 0 ] )
2625 divSummaryEl . find ( '> div' ) . removeAttr ( 'style' )
2726 if ( ! divSummaryEl . hasClass ( 'pt-2' ) ) {
2827 divSummaryEl . addClass ( 'pt-2' )
You can’t perform that action at this time.
0 commit comments