Skip to content

Commit 2a07ee5

Browse files
authored
Merge branch 'master' into CoinBevy-profile
2 parents a361280 + 6527c9d commit 2a07ee5

File tree

506 files changed

+6761
-526
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

506 files changed

+6761
-526
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ create_dirs.py
2828
*.log
2929
*.sql
3030
*.sqlite
31+
*.json
3132

3233
# OS generated files #
3334
######################

README.md

Lines changed: 86 additions & 50 deletions
Large diffs are not rendered by default.

full_validators.md

Lines changed: 65 additions & 59 deletions
Large diffs are not rendered by default.

get_emails.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
import re
22
import glob
3+
import json
4+
import pathlib
35

4-
EMAIL_REGEX = re.compile(r"[a-z0-9]+[\._]?[a-z0-9]+[@]\w+[.]\w{2,3}")
56

7+
EMAIL_REGEX = re.compile(r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b')
68
files = glob.glob("*/*/*.json")
7-
emails = []
9+
emails = {}
810

911
for f in files:
12+
valAddress = str(pathlib.Path(f).parent.resolve()).split('/')[-1]
1013
with open(f) as contents:
1114
for email in EMAIL_REGEX.findall(contents.read()):
12-
emails.append(email)
15+
emails[valAddress] = email
1316

14-
print(", ".join(sorted(set(emails))))
17+
with open('validators.json', 'w') as outfile:
18+
json_string = json.dumps(emails, indent=4, sort_keys=True)
19+
outfile.write(json_string)

new-addresses.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
moniker,terraveloper address

template/README.md

Lines changed: 21 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,41 @@
11
---
2-
Moniker: <moniker>
3-
Validator: <validator-address>
4-
Email: <your-email>
5-
Telegram: @your_telegram_handle
2+
Moniker: wave
3+
Validator: terravaloper1hqzf3tnw0py69xd5swwr3c7tqcumwjzdzqca7l
4+
Email: nionocto@gmail.com
5+
Telegram: @WaveWays
6+
Website: https://bity.hns.to/
67
---
78

8-
NOTE: This is just an example of what your profile page can look like!
9+
![wavelogo](wavelogo.png)
910

10-
# <moniker>
11-
12-
A brief description about your validator (philosophy, structure, goals, etc...)
11+
# <moniker>
12+
Tendermint-based chains validator.
1313

1414
## Team
1515

16-
Our team is small but posesses deep experience and breadth of knowledge about Terran security.
16+
Wave is a team of 3 engineers structured arround a Dev Ops, a BackEnd Engineer and a Tech lead. We believe that the anonymity is stronger and more resilient than the reputation in many aspects of the blockchain world.
17+
1718

18-
| Name | Role | Description |
19-
| --------------- | ------- | ---------------------------- |
20-
| Jim Raynor | Founder | Former Terran turned Rebel |
21-
| Joseph Reynolds | CTO | Member of Moebius Foundation |
19+
| Name | Role |
20+
| --------------- | ------- |
21+
| Abef | CTO |
22+
| Maxime S. | DevOps |
23+
| Matthieu M. | Backend |
2224

2325
## Our Architecture
2426

25-
Our validator uses Yubico's HSM for signing and
27+
We are sticking to the best practice with Sentries → relay nodes → validator → HSM. Our main infra is deployed in Google Cloud, our backup infra is OVH.
28+
Prometheus analytics, Prometheus node exporter, grafana and others script for DDOS mitigation and reporting tools.
2629

2730
## Ecosystem Contributions
2831

29-
We are active members of the Terra community and work on ecosystem tools.
30-
31-
- Oracle validator software
32-
- 0% Commission
33-
- Moderator status on Terra discord
32+
Actives members of many tendermint based chain. We don’t abstain on governance proposal and discuss the tradeoff of each proposal for the networks we are validating.
33+
We are using an independent oracle server.
3434

3535
## Contact Us
3636

37-
Have questions? You can reach us:
38-
39-
- Email: ...
40-
- Telegram: ...
41-
- Phone: ...
37+
The best way to have a quick answer is: Discord: @Waves#9228 or Telgram: @WaveWays
4238

4339
### Website
4440

45-
{validator.description.website}
41+
https://bity.hns.to/

template/profile.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"contact": {
3-
"email": "validator@terra.money",
4-
"telegram": "@terravalidator123"
3+
"email": "nionocto@gmail.com",
4+
"telegram": "@WaveWays"
55
}
6-
}
6+
}

template/wavelogo.png

17.6 KB
Loading
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
Moniker: abitration
3+
Validator: terra1r09u7wn4nujsscqwc2p87dly0nasvdyxaacxwy
4+
Email: btc4658257@protonmail.com
5+
---
6+
7+
# abitration
8+
9+
![abitration](abitration.jpg)
10+
11+
The abitration validator, delegate to the autistic frog and find the inner peace you've been looking for.
12+
13+
### Website
14+
15+
https://metaboxgame.org
341 KB
Loading

0 commit comments

Comments
 (0)