-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (124 loc) Β· 4.26 KB
/
index.html
File metadata and controls
137 lines (124 loc) Β· 4.26 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
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>TESTNET-IBC Validator Docs</title>
<style>
body {
font-family: "Segoe UI", sans-serif;
line-height: 1.7;
padding: 20px;
max-width: 900px;
margin: auto;
transition: 0.3s;
background-color: #ffffff;
color: #000000;
}
.dark-mode {
background-color: #121212;
color: #e0e0e0;
}
.toggle-mode {
position: fixed;
top: 15px;
right: 20px;
background: #444;
color: #fff;
border: none;
padding: 8px 12px;
border-radius: 8px;
cursor: pointer;
font-size: 14px;
z-index: 999;
}
a { color: #1e88e5; text-decoration: none; }
.dark-mode a { color: #90caf9; }
h1, h2, h3 { margin-top: 1.5em; }
.validator-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 16px;
margin-top: 20px;
}
.validator-card {
border: 1px solid #ccc;
border-radius: 12px;
padding: 10px;
width: 90px;
text-align: center;
background: #f9f9f9;
}
.dark-mode .validator-card {
border-color: #444;
background: #1e1e1e;
}
.validator-card img {
width: 60px;
height: 60px;
object-fit: cover;
border-radius: 50%;
}
.validator-card span {
display: block;
margin-top: 8px;
font-size: 12px;
}
hr {
border: none;
border-top: 1px solid #ddd;
}
.dark-mode hr {
border-color: #444;
}
</style>
</head>
<body>
<button class="toggle-mode" onclick="toggleMode()">π Dark/Light</button>
<h1>π TESTNET-IBC Validator Docs</h1>
<p>Welcome to the <strong>TESTNET-IBC</strong> directory! This folder serves as a dedicated space for everything related to Inter-Blockchain Communication (IBC) testnets. Here, you will find important resources, setup guides, and configurations for various testnets utilizing the IBC protocol.</p>
<h2>π What Youβll Find Here</h2>
<ul>
<li><strong>Network Setup Instructions</strong> β Step-by-step guides for connecting to IBC-enabled testnets.</li>
<li><strong>Configuration Files</strong> β Essential configurations for seamless interoperability.</li>
<li><strong>Validators & Nodes</strong> β Guidelines for running a validator or full node on IBC testnets.</li>
<li><strong>Updates & Announcements</strong> β Stay informed about the latest developments and upgrades.</li>
</ul>
<h2>π‘ About IBC</h2>
<p>The <strong>Inter-Blockchain Communication (IBC)</strong> protocol enables seamless communication between different blockchain networks, allowing for secure and decentralized cross-chain transactions. This directory aims to support the growth and adoption of IBC by providing structured and accessible information.</p>
<blockquote>π Stay tuned for more updates and feel free to contribute to enhance the resources in this directory! π</blockquote>
<h3 align="center">π’ Active Validators</h3>
<div class="validator-grid">
<a href="./Ogchain/" class="validator-card">
<img src="https://pbs.twimg.com/profile_images/1933474287027171329/L-I1k2oL.jpg" alt="Ogchain">
<span>Ogchain</span>
</a>
<a href="./Symphony/" class="validator-card">
<img src="https://pbs.twimg.com/profile_images/1896255605909725184/rC9pD5EQ.jpg" alt="Symphony">
<span>Symphony</span>
</a>
<a href="./Kiichain/" class="validator-card">
<img src="https://pbs.twimg.com/profile_images/1800553180083666944/zZe128CW.jpg" alt="Kiichain">
<span>Kiichain</span>
</a>
<a href="./Empeirias/" class="validator-card">
<img src="https://pbs.twimg.com/profile_images/1887069794798632960/IvxbLJcg.jpg" alt="Empeirias">
<span>Empeirias</span>
</a>
<a href="./XOS/" class="validator-card">
<img src="https://pbs.twimg.com/profile_images/1861059503325913088/axi4e4i1.jpg" alt="XOS">
<span>XOS</span>
</a>
<a href="./BlockX-Mainnet/" class="validator-card">
<img src="https://pbs.twimg.com/profile_images/1571914336288776193/HmxJDHvF.jpg" alt="BlockX">
<span>BlockX</span>
</a>
</div>
<script>
function toggleMode() {
document.body.classList.toggle('dark-mode');
}
</script>
</body>
</html>