Class: Cns::CLI
- Inherits:
-
Thor
- Object
- Thor
- Cns::CLI
- Defined in:
- lib/cns.rb
Overview
classe para carregar/mostrar dados transacoes eth & eos no bigquery
Instance Method Summary collapse
-
#ceth ⇒ Object
carrega transacoes eth no bigquery (output to file).
-
#seth ⇒ Object
mostra eth transacoes.
-
#show ⇒ Object
mostra resumo transacoes.
-
#skrk ⇒ Object
mostra kraken/eth transacoes.
-
#weth ⇒ Object
carrega transacoes eth no bigquery.
-
#wkrk ⇒ Object
carrega transacoes kraken/eth no bigquery.
-
#work ⇒ Object
carrega transacoes novas no bigquery.
Instance Method Details
#ceth ⇒ Object
carrega transacoes eth no bigquery (output to file)
37 38 39 |
# File 'lib/cns.rb', line 37 def ceth Bigquery.new().processa_ceth end |
#seth ⇒ Object
mostra eth transacoes
23 24 25 |
# File 'lib/cns.rb', line 23 def seth Bigquery.new().mostra_seth end |
#show ⇒ Object
mostra resumo transacoes
67 68 69 |
# File 'lib/cns.rb', line 67 def show Bigquery.new().mostra_tudo end |
#skrk ⇒ Object
mostra kraken/eth transacoes
45 46 47 |
# File 'lib/cns.rb', line 45 def skrk Bigquery.new().mostra_skrk end |
#weth ⇒ Object
carrega transacoes eth no bigquery
30 31 32 |
# File 'lib/cns.rb', line 30 def weth Bigquery.new().processa_weth end |
#wkrk ⇒ Object
carrega transacoes kraken/eth no bigquery
52 53 54 |
# File 'lib/cns.rb', line 52 def wkrk Bigquery.new().processa_wkrk end |
#work ⇒ Object
carrega transacoes novas no bigquery
59 60 61 |
# File 'lib/cns.rb', line 59 def work Bigquery.new().processa_tudo end |