Skip to content

Instantly share code, notes, and snippets.

View hvasconcelos's full-sized avatar

Hélder Vasconcelos hvasconcelos

View GitHub Profile
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 €
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
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
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
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 €
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
@hvasconcelos
hvasconcelos / join_path
Created December 5, 2014 11:17
OS Independent Join Path
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();
}
#!/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
@hvasconcelos
hvasconcelos / mongod.conf
Last active August 29, 2015 14:02
Mongodb dev conf
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
@hvasconcelos
hvasconcelos / gen_keys.sh
Last active September 19, 2023 23:14
Create an Sinatra SSL Server
# Generate a self-signed Certificate and a Private Key
openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout pkey.pem -out cert.crt