Skip to content

Commit

Permalink
Merge pull request #131 from crypto-org-chain/update/tag_address
Browse files Browse the repository at this point in the history
Tag suspicious addresses
  • Loading branch information
WilliamXieCrypto committed Feb 23, 2024
2 parents 04733f4 + dec2163 commit af4fcc4
Show file tree
Hide file tree
Showing 6 changed files with 141 additions and 118 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
<%= if CustomContractsHelpers.is_phenix_hacker(@address) do%>
<div class="address-warn">Warning! It was reported that this address is Phenix Finance hacker wallet <%= CustomContractsHelpers.phenix_hacker_index(@address) %></div>
<% end %>
<%= if CustomContractsHelpers.is_suspicious_address(@address) do%>
<div class="address-warn">Warning! This address has been reported as suspicious and potentially involved in fraudulent activities. Please exercise caution when interacting with this address.</div>
<% end %>
<div class="row js-ad-dependant-mb-2 js-ad-dependant-mb-5-reverse">
<!-- Address details -->
<div class="col-md-12 js-ad-dependant-mb-2">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
<%= if CustomContractsHelpers.is_phenix_hacker(Address.checksum(@token.contract_address_hash)) do%>
<div class="address-warn">Warning! It was reported that this address is Phenix Finance hacker wallet b <%= CustomContractsHelpers.phenix_hacker_index(@token.contract_address_hash) %></div>
<% end %>
<%= if CustomContractsHelpers.is_suspicious_address(Address.checksum(@token.contract_address_hash)) do%>
<div class="address-warn">Warning! This address has been reported as suspicious and potentially involved in fraudulent activities. Please exercise caution when interacting with this address.</div>
<% end %>
<div class="row js-ad-dependant-mb-2 js-ad-dependant-mb-5-reverse">
<div class="col-md-12 js-ad-dependant-mb-2">
<div class="card js-ad-dependant-mb-2">
Expand Down
Loading

0 comments on commit af4fcc4

Please sign in to comment.