Class: Cns::CLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/cns.rb

Overview

classe para carregar/mostrar dados transacoes eth & eos no bigquery

Instance Method Summary collapse

Instance Method Details

#cethObject

carrega transacoes eth no bigquery (output to file)



37
38
39
# File 'lib/cns.rb', line 37

def ceth
  Bigquery.new(options).processa_ceth
end

#sethObject

mostra eth transacoes



23
24
25
# File 'lib/cns.rb', line 23

def seth
  Bigquery.new(options).mostra_seth
end

#showObject

mostra resumo transacoes



67
68
69
# File 'lib/cns.rb', line 67

def show
  Bigquery.new(options).mostra_tudo
end

#skrkObject

mostra kraken/eth transacoes



45
46
47
# File 'lib/cns.rb', line 45

def skrk
  Bigquery.new(options).mostra_skrk
end

#wethObject

carrega transacoes eth no bigquery



30
31
32
# File 'lib/cns.rb', line 30

def weth
  Bigquery.new(options).processa_weth
end

#wkrkObject

carrega transacoes kraken/eth no bigquery



52
53
54
# File 'lib/cns.rb', line 52

def wkrk
  Bigquery.new(options).processa_wkrk
end

#workObject

carrega transacoes novas no bigquery



59
60
61
# File 'lib/cns.rb', line 59

def work
  Bigquery.new(options).processa_tudo
end