-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathblacklisted-address.js
73 lines (70 loc) · 3 KB
/
blacklisted-address.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import { serverSideTranslations } from 'next-i18next/serverSideTranslations'
import SEO from '../components/SEO'
import { getIsSsrMobile } from '../utils/mobile'
import { network } from '../utils'
import { nativeCurrency, explorerName, xahauNetwork} from '../utils'
export async function getServerSideProps(context) {
const { locale } = context
return {
props: {
isSsrMobile: getIsSsrMobile(context),
...(await serverSideTranslations(locale, ['common']))
}
}
}
export default function BlacklistedAddress() {
return (
<>
<SEO
title={"Blacklisted Addresses on " + explorerName}
description="What are blacklisted addresses on XRP and Xahau Ledgers, why fraud alert is displayed, how and why accounts become blacklisted."
noindex={network !== 'mainnet'}
image={{ file: 'pages/blacklisted-picture.jpg', width: '100%', height: '386', allNetworks: true }}
/>
<div className="content-center">
<center>
<img
src="/images/pages/blacklisted-picture.jpg"
alt="Blacklisted Accounts on XRPL"
style={{ maxWidth: '100%', maxHeight: '386' }}
/>
</center>
<h1>Fraud Alert. Blacklisted accounts on {explorerName}</h1>
<p>
Fraud can occur on {explorerName}, just like on any other blockchain, so users must remain vigilant.
</p>
<ul>
<li>Always verify the authenticity of any website, wallet, or transaction request.</li>
<li>Never share your secret keys or phrases.</li>
<li>Exercise caution regarding scams that promise high returns, offer free {nativeCurrency} giveaways, or impersonate trusted entities.</li>
<li>If you're uncertain about a transaction or website, use reliable tools to verify the details and protect your assets.</li>
</ul>
<p>
On our website, accounts marked with a "Fraud Alert" are flagged as potentially involved in scams, phishing, or other malicious activities.
These accounts are highlighted to warn users before they interact with them.
</p>
<div>
<center>
<img
src={"/images/pages/blacklisted-screen" + (xahauNetwork ? "-xahau" : "") +".png"}
alt="Blacklisted Account on XRPL-example"
style={{ maxWidth: '100%', maxHeight: 386 }}
/>
</center>
</div>
<p>
<strong>We strongly recommend proceeding with caution when engaging with flagged accounts to ensure the safety of your assets.</strong>
</p>
<p>Accounts may be flagged with a Fraud Alert if they:</p>
<ul>
<li>Received stolen funds.</li>
<li>Are associated with scams (e.g., giveaway scams).</li>
<li>Send spam transactions or behave maliciously in some way.</li>
</ul>
<p>
We can flag accounts ourselves based on objective user reports or receive fraud alerts through our partners' APIs.
</p>
</div>
</>
)
}