-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstellar.html
More file actions
128 lines (119 loc) · 3.74 KB
/
stellar.html
File metadata and controls
128 lines (119 loc) · 3.74 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>What is Stellar?</title>
<style>
body {
background-color: #000;
color: #e0e0e0;
font-family: "Courier New", monospace;
margin: 20px;
line-height: 1.6;
}
h1, h2 {
text-align: center;
color: #00ffcc;
text-shadow: 0 0 8px #00ffff;
}
h2 {
margin-top: 30px;
color: #ffcc00;
text-shadow: 0 0 6px #ff9900;
}
.nav {
text-align: center;
margin: 20px 0;
padding: 10px;
border: 2px solid #ff00ff;
box-shadow: 0 0 12px #ff00ff;
background: #111;
}
.nav a {
margin: 0 12px;
color: #ff66cc;
text-decoration: none;
font-weight: bold;
}
.nav a:hover {
text-decoration: underline;
color: #66ffcc;
}
.content {
max-width: 900px;
margin: auto;
text-align: justify;
font-size: 16px;
}
.highlight {
color: #ffd966;
}
footer {
margin-top: 30px;
text-align: center;
font-size: 12px;
color: #888;
}
</style>
</head>
<body>
<div class="nav">
<a href="index.html">Home</a> |
<a href="assets.html">Assets</a> |
<a href="tutorial.html">Tutorial</a> |
<a href="LP.html">Liquidity Pools</a> |
<a href="stellar.html">Stellar</a>
</div>
<h1>🌌 What is Stellar?</h1>
<div class="content">
<h2>The Basics</h2>
<p>
<b>Stellar</b> is an open-source, decentralized blockchain network designed
to connect the world's financial systems. Its primary focus is on
<span class="highlight">fast, low-cost payments and asset issuance</span>.
With Stellar, anyone can create, send, and trade digital representations
of all forms of money – dollars, euros, pesos, or crypto assets.
</p>
<h2>How it Works</h2>
<p>
Unlike many other blockchains that rely on energy-intensive mining,
Stellar uses a <span class="highlight">consensus mechanism</span> called the
Stellar Consensus Protocol (SCP). This system allows transactions
to be confirmed in a few seconds with very low fees (fractions of a cent).
</p>
<p>
The Stellar network is often described as a kind of global
<b>decentralized exchange</b>. Users can issue tokens, create
<a href="LP.html">Liquidity Pools</a>, or trade directly on the built-in orderbook.
</p>
<h2>The Mission</h2>
<p>
Stellar’s goal is to make money more <span class="highlight">accessible, efficient,
and inclusive</span>. Billions of people worldwide are unbanked or underbanked.
Stellar wants to provide these communities with tools to access digital
finance without needing traditional banks.
</p>
<p>
The non-profit <b>Stellar Development Foundation (SDF)</b> supports this mission.
Their focus is on growing the ecosystem, supporting developers,
ensuring the stability of the network, and forming partnerships
with organizations ranging from NGOs to global payment providers.
</p>
<h2>Why it Matters</h2>
<p>
In a world where financial systems are fragmented and often inefficient,
Stellar offers a path toward <b>global interoperability</b>.
It envisions a future where sending money is as seamless and cheap
as sending an email, and where new kinds of assets (like your own personal token)
can thrive alongside traditional currencies.
</p>
<p style="text-align:center; margin-top:30px; font-size: 18px;">
🌍 Learn more at the official website:
<a href="https://stellar.org" target="_blank">stellar.org</a>
</p>
</div>
<footer>
LibreXLM © 2025 – Built on Stellar
</footer>
</body>
</html>