etht 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +83 -0
- data/LICENSE.txt +21 -0
- data/README.md +42 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/etht.gemspec +37 -0
- data/exe/etht +3 -0
- data/lib/etht.rb +31 -0
- data/lib/etht/bigquery.rb +105 -0
- data/lib/etht/version.rb +5 -0
- metadata +145 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: fd40aa4cd395e43e84e1e966de134790d849c95dd9ce5aae4214a88b8dca9d57
|
4
|
+
data.tar.gz: 435af034f97a849f667635b38fc1fff7fb8cad63fe9bfd84ecce6d0a55a773a2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 11fcca99b528324db5782efc2ad69c46cb4b3d458e746113ed76182bd48d7dac186675b8b5c7be26590a2feeaaa4c6aae164ccf1d8492a94ae5dc6557a52187c
|
7
|
+
data.tar.gz: d0bf1915245f76f7a1c147789d7efea25fb3e98593892fe776044880e0c9849b3ee3b0a6c8830bb25fe0c7822d7c1f78aee28d65c53990852813373ba364b547
|
data/.gitignore
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at hernanirvaz@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [https://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: https://contributor-covenant.org
|
74
|
+
[version]: https://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
etht (0.1.3)
|
5
|
+
etherscan_api
|
6
|
+
google-cloud-bigquery
|
7
|
+
thor
|
8
|
+
yard
|
9
|
+
|
10
|
+
GEM
|
11
|
+
remote: https://rubygems.org/
|
12
|
+
specs:
|
13
|
+
addressable (2.7.0)
|
14
|
+
public_suffix (>= 2.0.2, < 5.0)
|
15
|
+
concurrent-ruby (1.1.7)
|
16
|
+
declarative (0.0.20)
|
17
|
+
declarative-option (0.1.0)
|
18
|
+
etherscan_api (0.4.0)
|
19
|
+
faraday
|
20
|
+
json (~> 2.1)
|
21
|
+
faraday (1.0.1)
|
22
|
+
multipart-post (>= 1.2, < 3)
|
23
|
+
google-api-client (0.43.0)
|
24
|
+
addressable (~> 2.5, >= 2.5.1)
|
25
|
+
googleauth (~> 0.9)
|
26
|
+
httpclient (>= 2.8.1, < 3.0)
|
27
|
+
mini_mime (~> 1.0)
|
28
|
+
representable (~> 3.0)
|
29
|
+
retriable (>= 2.0, < 4.0)
|
30
|
+
signet (~> 0.12)
|
31
|
+
google-cloud-bigquery (1.21.2)
|
32
|
+
concurrent-ruby (~> 1.0)
|
33
|
+
google-api-client (~> 0.33)
|
34
|
+
google-cloud-core (~> 1.2)
|
35
|
+
googleauth (~> 0.9)
|
36
|
+
mini_mime (~> 1.0)
|
37
|
+
google-cloud-core (1.5.0)
|
38
|
+
google-cloud-env (~> 1.0)
|
39
|
+
google-cloud-errors (~> 1.0)
|
40
|
+
google-cloud-env (1.3.3)
|
41
|
+
faraday (>= 0.17.3, < 2.0)
|
42
|
+
google-cloud-errors (1.0.1)
|
43
|
+
googleauth (0.13.1)
|
44
|
+
faraday (>= 0.17.3, < 2.0)
|
45
|
+
jwt (>= 1.4, < 3.0)
|
46
|
+
memoist (~> 0.16)
|
47
|
+
multi_json (~> 1.11)
|
48
|
+
os (>= 0.9, < 2.0)
|
49
|
+
signet (~> 0.14)
|
50
|
+
httpclient (2.8.3)
|
51
|
+
json (2.3.1)
|
52
|
+
jwt (2.2.1)
|
53
|
+
memoist (0.16.2)
|
54
|
+
mini_mime (1.0.2)
|
55
|
+
multi_json (1.15.0)
|
56
|
+
multipart-post (2.1.1)
|
57
|
+
os (1.1.1)
|
58
|
+
public_suffix (4.0.5)
|
59
|
+
rake (12.3.3)
|
60
|
+
representable (3.0.4)
|
61
|
+
declarative (< 0.1.0)
|
62
|
+
declarative-option (< 0.2.0)
|
63
|
+
uber (< 0.2.0)
|
64
|
+
retriable (3.1.2)
|
65
|
+
signet (0.14.0)
|
66
|
+
addressable (~> 2.3)
|
67
|
+
faraday (>= 0.17.3, < 2.0)
|
68
|
+
jwt (>= 1.5, < 3.0)
|
69
|
+
multi_json (~> 1.10)
|
70
|
+
thor (1.0.1)
|
71
|
+
uber (0.1.0)
|
72
|
+
yard (0.9.25)
|
73
|
+
|
74
|
+
PLATFORMS
|
75
|
+
ruby
|
76
|
+
|
77
|
+
DEPENDENCIES
|
78
|
+
bundler
|
79
|
+
etht!
|
80
|
+
rake (~> 12.0)
|
81
|
+
|
82
|
+
BUNDLED WITH
|
83
|
+
2.1.4
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 Hernâni Rodrigues Vaz
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
# Etht
|
2
|
+
|
3
|
+
Arquiva eth-transactions no bigquery. Pode apagar movimentos existentes ja no bigquery.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'etht'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle install
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install etht
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
TODO: Write usage instructions here
|
24
|
+
|
25
|
+
## Development
|
26
|
+
|
27
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
28
|
+
|
29
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
30
|
+
|
31
|
+
## Contributing
|
32
|
+
|
33
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/etht. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/etht/blob/master/CODE_OF_CONDUCT.md).
|
34
|
+
|
35
|
+
|
36
|
+
## License
|
37
|
+
|
38
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
39
|
+
|
40
|
+
## Code of Conduct
|
41
|
+
|
42
|
+
Everyone interacting in the Etht project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/etht/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "etht"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/etht.gemspec
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'lib/etht/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = 'etht'
|
7
|
+
spec.version = Etht::VERSION
|
8
|
+
spec.authors = ['Hernâni Rodrigues Vaz']
|
9
|
+
spec.email = ['hernanirvaz@gmail.com']
|
10
|
+
|
11
|
+
spec.summary = 'Arquiva eth-transactions no bigquery.'
|
12
|
+
spec.description = spec.summary + ' Pode apagar movimentos existentes ja no bigquery.'
|
13
|
+
|
14
|
+
spec.homepage = 'https://github.com/hernanirvaz/etht'
|
15
|
+
spec.license = 'MIT'
|
16
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
|
17
|
+
|
18
|
+
spec.metadata['homepage_uri'] = spec.homepage
|
19
|
+
spec.metadata['yard.run'] = 'yard'
|
20
|
+
|
21
|
+
# Specify which files should be added to the gem when it is released.
|
22
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
23
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
24
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
25
|
+
end
|
26
|
+
spec.bindir = 'exe'
|
27
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
28
|
+
spec.require_paths = ['lib']
|
29
|
+
|
30
|
+
spec.add_development_dependency 'bundler'
|
31
|
+
spec.add_development_dependency 'rake'
|
32
|
+
|
33
|
+
spec.add_dependency 'etherscan_api'
|
34
|
+
spec.add_dependency 'google-cloud-bigquery'
|
35
|
+
spec.add_dependency 'thor'
|
36
|
+
spec.add_dependency 'yard'
|
37
|
+
end
|
data/exe/etht
ADDED
data/lib/etht.rb
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'thor'
|
4
|
+
require 'etht/bigquery'
|
5
|
+
require 'etht/version'
|
6
|
+
|
7
|
+
# @author Hernani Rodrigues Vaz
|
8
|
+
module Etht
|
9
|
+
ID = `whoami`.chomp
|
10
|
+
|
11
|
+
class Error < StandardError; end
|
12
|
+
|
13
|
+
# CLI para carregar etherscan comuns no bigquery
|
14
|
+
class CLI < Thor
|
15
|
+
desc 'work', 'carrega/apaga dados do etherscan'
|
16
|
+
option :e, type: :boolean, default: false, desc: 'apaga linha igual'
|
17
|
+
option :m, type: :boolean, default: false, desc: 'apaga linhas existencia multipla'
|
18
|
+
# processa etherscan
|
19
|
+
def work
|
20
|
+
Bigquery.new({ e: options[:e], m: options[:m], i: true }).processa_etherscan
|
21
|
+
end
|
22
|
+
|
23
|
+
desc 'show', 'mostra dados do etherscan'
|
24
|
+
# show etherscan
|
25
|
+
def show
|
26
|
+
Bigquery.new.processa_etherscan
|
27
|
+
end
|
28
|
+
|
29
|
+
default_task :show
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,105 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'etherscan'
|
4
|
+
require 'google/cloud/bigquery'
|
5
|
+
|
6
|
+
# config/initializers/etherscan.rb
|
7
|
+
Etherscan.configure do |config|
|
8
|
+
config.key = 'QA14GAMNM3AJIX8IEGA8MHEHBHJDTDSBPX'
|
9
|
+
end
|
10
|
+
|
11
|
+
module Etht
|
12
|
+
DF = '%Y-%m-%d'
|
13
|
+
DI = '%Y-%m-%d %H:%M:%S'
|
14
|
+
|
15
|
+
# (see Bigquery)
|
16
|
+
class Bigquery
|
17
|
+
# @return [Google::Cloud::Bigquery] API bigquery
|
18
|
+
attr_reader :apibq
|
19
|
+
# @return [Roo::CSV] folha calculo a processar
|
20
|
+
attr_reader :folha
|
21
|
+
# @return [Hash<Symbol, Boolean>] opcoes trabalho com linhas
|
22
|
+
attr_reader :linha
|
23
|
+
|
24
|
+
# @return [Array] row folha calculo em processamento
|
25
|
+
attr_reader :row
|
26
|
+
# @return [Google::Cloud::Bigquery::QueryJob] job bigquery
|
27
|
+
attr_reader :job
|
28
|
+
# @return (see sql_select)
|
29
|
+
attr_reader :sql
|
30
|
+
|
31
|
+
# @param [String] csv folha calculo para processar
|
32
|
+
# @param [Hash<Symbol, Boolean>] ops opcoes trabalho com linhas
|
33
|
+
# @option ops [Boolean] :e (false) apaga linha igual?
|
34
|
+
# @option ops [Boolean] :m (false) apaga linhas existencia multipla?
|
35
|
+
# @option ops [Boolean] :i (false) insere linha nova?
|
36
|
+
# @return [Bigquery] acesso folhas calculo bloks.io & correspondente bigquery dataset
|
37
|
+
def initialize(csv = '', ops = { e: false, m: false, i: false })
|
38
|
+
# usa env GOOGLE_APPLICATION_CREDENTIALS para obter credentials
|
39
|
+
# @see https://cloud.google.com/bigquery/docs/authentication/getting-started
|
40
|
+
@apibq = Google::Cloud::Bigquery.new
|
41
|
+
@folha = Roo::CSV.new(csv) if csv.size.positive?
|
42
|
+
@linha = ops
|
43
|
+
end
|
44
|
+
|
45
|
+
# cria job bigquery & verifica execucao
|
46
|
+
#
|
47
|
+
# @param [String] sql a executar
|
48
|
+
# @return [Boolean] job ok?
|
49
|
+
def job_bigquery?(sql)
|
50
|
+
@job = apibq.query_job(sql)
|
51
|
+
@job.wait_until_done!
|
52
|
+
puts @job.error['message'] if @job.failed?
|
53
|
+
@job.failed?
|
54
|
+
end
|
55
|
+
|
56
|
+
# cria Data Manipulation Language (DML) job bigquery
|
57
|
+
#
|
58
|
+
# @param (see job_bigquery?)
|
59
|
+
# @return [Integer] numero linhas afetadas
|
60
|
+
def dml(sql)
|
61
|
+
job_bigquery?(sql) ? 0 : job.num_dml_affected_rows
|
62
|
+
end
|
63
|
+
|
64
|
+
# pesquisa existencia linha folha calculo no bigquery
|
65
|
+
#
|
66
|
+
# @return [Google::Cloud::Bigquery::Data] resultado do sql num array<hash>
|
67
|
+
def sql_select
|
68
|
+
# array.count = 0 ==> pode carregar esta linha
|
69
|
+
# array.count >= 1 ==> nao carregar esta linha
|
70
|
+
@sql = job_bigquery?('select ' + eos_fields + ' ' + sql_where) ? [{}, {}] : job.data
|
71
|
+
end
|
72
|
+
|
73
|
+
# @return [String] parte sql para processamento linhas existentes
|
74
|
+
def sql_where
|
75
|
+
"from hernanirvaz.coins.eos where blocknumber=#{row[0]}"
|
76
|
+
end
|
77
|
+
|
78
|
+
# @return [Integer] numero linhas inseridas
|
79
|
+
def sql_insert
|
80
|
+
return 1 unless linha[:i]
|
81
|
+
|
82
|
+
dml('insert hernanirvaz.coins.eos(' + eos_fields + ') VALUES(' + str_insert1)
|
83
|
+
end
|
84
|
+
|
85
|
+
# @return [String] campos da tabela no bigquery
|
86
|
+
def eos_fields
|
87
|
+
'blocknumber,time,contract,action,acfrom,acto,amount,symbol,memo,data,dias'
|
88
|
+
end
|
89
|
+
|
90
|
+
# @return [String] campos insert da linha bigquery
|
91
|
+
def str_insert1
|
92
|
+
"#{row[0]},'#{DateTime.parse(row[1]).strftime(DI)}','#{row[2]}'," + str_insert2
|
93
|
+
end
|
94
|
+
|
95
|
+
# @return [String] campos insert da linha bigquery
|
96
|
+
def str_insert2
|
97
|
+
"'#{row[3]}','#{row[4]}','#{row[5]}',#{row[6].to_f},'#{row[7]}','#{row[8]}','#{row[9]}',0)"
|
98
|
+
end
|
99
|
+
|
100
|
+
# @return [Integer] numero linhas apagadas
|
101
|
+
def sql_delete
|
102
|
+
dml('delete ' + sql_where)
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
data/lib/etht/version.rb
ADDED
metadata
ADDED
@@ -0,0 +1,145 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: etht
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Hernâni Rodrigues Vaz
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-08-09 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: etherscan_api
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: google-cloud-bigquery
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: thor
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: yard
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
description: Arquiva eth-transactions no bigquery. Pode apagar movimentos existentes
|
98
|
+
ja no bigquery.
|
99
|
+
email:
|
100
|
+
- hernanirvaz@gmail.com
|
101
|
+
executables:
|
102
|
+
- etht
|
103
|
+
extensions: []
|
104
|
+
extra_rdoc_files: []
|
105
|
+
files:
|
106
|
+
- ".gitignore"
|
107
|
+
- CODE_OF_CONDUCT.md
|
108
|
+
- Gemfile
|
109
|
+
- Gemfile.lock
|
110
|
+
- LICENSE.txt
|
111
|
+
- README.md
|
112
|
+
- Rakefile
|
113
|
+
- bin/console
|
114
|
+
- bin/setup
|
115
|
+
- etht.gemspec
|
116
|
+
- exe/etht
|
117
|
+
- lib/etht.rb
|
118
|
+
- lib/etht/bigquery.rb
|
119
|
+
- lib/etht/version.rb
|
120
|
+
homepage: https://github.com/hernanirvaz/etht
|
121
|
+
licenses:
|
122
|
+
- MIT
|
123
|
+
metadata:
|
124
|
+
homepage_uri: https://github.com/hernanirvaz/etht
|
125
|
+
yard.run: yard
|
126
|
+
post_install_message:
|
127
|
+
rdoc_options: []
|
128
|
+
require_paths:
|
129
|
+
- lib
|
130
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
131
|
+
requirements:
|
132
|
+
- - ">="
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: 2.3.0
|
135
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - ">="
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '0'
|
140
|
+
requirements: []
|
141
|
+
rubygems_version: 3.1.2
|
142
|
+
signing_key:
|
143
|
+
specification_version: 4
|
144
|
+
summary: Arquiva eth-transactions no bigquery.
|
145
|
+
test_files: []
|