This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Number of Users | RAM (KB) | Cost(€) | |
---|---|---|---|
1 000 | 533 KB | 87 € | |
5 000 | 2 666 KB | 439 € | |
10 000 | 5 332 KB | 878 € | |
50 000 | 26 660 KB | 4 394 € | |
100 000 | 53 320 KB | 8 788 € | |
200 000 | 106 640 KB | 17 576 € | |
500 000 | 266 601 KB | 43 941 € |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Network | Tx/Day | Tx Size(Bytes) | SYS/KB/DAY | €/KiB/Day | SYS/Day | €/Day | €/3Day | |
---|---|---|---|---|---|---|---|---|
EOS Main Net | 100 | 200 | 0,00033 | 0,00092 | 0,01 | 0,01791 | 0,053742 | |
WAX | 100 | 200 | 0,002 | 0,0000625 | 0,031 | 0,00122 | 0,003661 | |
Telos | 100 | 200 | 0,00001 | 0,0000004 | 0,0002 | 0,00001 | 0,000023 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Tx/Day | us/Tx | SYS/ms/DAY | €/ms/day | SYS/day | €/day | €/3day | SYS/3day | REX €/30Day | ||
---|---|---|---|---|---|---|---|---|---|---|
EOS | 100 | 400 | 3,70 | 10,24 € | 147,84 | 409,52 | 1228,56 | 444 EOS | 0,33 | |
WAX | 100 | 400 | 0,01 | 0,00033 € | 0,33 | 0,013 | 0,040 | 1 WAX | NA | |
Telos | 100 | 400 | 0,083 | 0,003 € | 3,32 | 0,13 | 0,40 | 10 TLOS | NA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Network | SYS/KB (SYS) | 2MB RAM(€) | 4MB RAM(€) | 8MB RAM(€) | 16MB RAM(€) | |
---|---|---|---|---|---|---|
EOS Main Net | 0,0595 | 337 | 675 € | 1350 € | 2700 | |
WAX | 0,1473 | 12 | 24,13 € | 48 € | 96 | |
Telos | 0,0905 | 7 € | 15 € | 30 € | 59 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RAM(KB) | SYS/KB (SYS) | SYS Price(€) | Cost/KB(€) | Cost/Account(€) | Cost/1K(€) | Cost/10K(€) | ||
---|---|---|---|---|---|---|---|---|
EOS | 4 | 0,0595 | 2,77 € | 0,16482 € | 0,65926 € | 659,26 € | 6 592,60 € | |
WAX | 4 | 0,1473 | 0,04 € | 0,00690 € | 0,02760 € | 27,60 € | 276,00 € | |
Telos | 4 | 0,0905 | 0,04 € | 0,00400 € | 0,01600 € | 16,00 € | 160,00 € |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EOS.IO Network | Block Producer(Account) | API | |
---|---|---|---|
EOS Main Net | eosnewyorkio | https://api.eosnewyork.io/ | |
WAX | okiqi.waa | https://chain.wax.io | |
Telos | caleosblocks | https://telos.caleos.io |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static String joinPath(final String ... pathElements){ | |
File path=File.listRoots()[0]; | |
for(final String pathElement : pathElements) | |
path = new File(path, pathElement); | |
return path.getAbsolutePath(); | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Mongodb | |
sudo cp /shared/mongodb.repo /etc/yum.repos.d/mongodb.repo | |
sudo yum -y install update | |
sudo yum -y install mongodb-org | |
sudo yum -y install vim wget | |
sudo chkconfig mongod on | |
wget https://gist.githubusercontent.com/hvasconcelos/e514938043c7bab2aed4/raw/dc5b54aa1bd20dcde422a7f018477fccc6852b0b/mongod.conf /etc/mongod.conf | |
sudo service mongod stop | |
sudo service mongod start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fork = true | |
bind_ip = 127.0.0.1 | |
port = 27017 | |
quiet = true | |
dbpath = /var/lib/mongod | |
logpath = /var/log/mongodb/mongod.log | |
logappend = true | |
journal = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generate a self-signed Certificate and a Private Key | |
openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout pkey.pem -out cert.crt |
NewerOlder