ruby-client 1.1.5 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d72ff7046a39a0d60c6c9df7ac3ef3601b39c59d1a1c4f4ff6294f0bb4501fa3
4
- data.tar.gz: d48f8b55d873cc6ef82e6a7ec0e01265468c5dd5016bafb11b81aed227e2fa2c
3
+ metadata.gz: 225db86a9bee050e5313ca5292422aecb0d9bed169a1a450a0b29d54e38b70b4
4
+ data.tar.gz: 85ea1d3e144c67dc97639ba6c1ad84e0e8e05eae5ad0d7d818612b38a6846300
5
5
  SHA512:
6
- metadata.gz: ac27c100095e7535901bf1e404d9ce36da359cf8586617cf88a4bba6ed1a38718a7d60020593adbe490385b072228f1acb07e2797a40df1b9188e3ce66c6eb7a
7
- data.tar.gz: 7936c9d61636c3d9e2c0a68c08c32e747dc2317456f61f0fcafe71c90433ab18e263cf997167dbbb0a06f21dde10814eaaeabf53598bfaddb659c9d73c139cdf
6
+ metadata.gz: 0e3aaef120567304d7e3311bc01294bfdf003265b5cdf4abe247b1e90d237002ba7cac2bac0d57ec6cdcfc0059d34b6e075fca8d87f0d8672c36e13c65412034
7
+ data.tar.gz: 8e7807aaafabf18798f96eea4b965d23d27f57dc81e7f0c58cfc9328fef637f60eb0243d1ed33e408d9efb884a603936a8e28232e441f6fdfc5a12e95f1c6f65
@@ -1,3 +1,3 @@
1
1
  module Nimiq # :nodoc: all
2
- VERSION = "1.1.5"
2
+ VERSION = "1.1.6"
3
3
  end
@@ -0,0 +1,295 @@
1
+ =begin
2
+ Copyright 2020 Nimiq community.
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ =end
16
+
17
+ $LOAD_PATH.unshift File.expand_path("../lib", __dir__)
18
+ require "ruby-client"
19
+ # require "minitest/autorun"
20
+
21
+ describe "Nimiq", type: :request do
22
+
23
+ # Initialize
24
+ before(:all) do
25
+ options = {
26
+ host: "localhost",
27
+ port: 8005,
28
+ user: "user",
29
+ pass: "pass",
30
+ # dev: true,
31
+ }
32
+ @signed_transaction = "010000...abcdef"
33
+ @nimiq = Nimiq::Client.new(options)
34
+ end
35
+
36
+ # Test suite for client
37
+ describe "RPC Client" do
38
+
39
+ # Test suite for client version
40
+ it "Must have a version." do
41
+ expect(::Nimiq::VERSION).not_to eq(nil)
42
+ end
43
+
44
+ # Test suite for client connection
45
+ it "Must be able to connect to the Nimiq node." do
46
+ expect(@nimiq.ping).to eq(200)
47
+ end
48
+
49
+ # Test suite for client to send raw requests
50
+ it "Must be able to send raw requests." do
51
+ expect(@nimiq.request("consensus")).to be_a_kind_of(String)
52
+ end
53
+ end
54
+
55
+ # Test suite for api
56
+ describe "Api" do
57
+
58
+ # Test suite for client to retrieve the addresses owned by client.
59
+ it "Must be able to retrieve addresses owned by client." do
60
+ expect(@nimiq.accounts()).to be_a_kind_of(Object)
61
+ end
62
+
63
+ # Test suite for client to retrieve height of most recent block.
64
+ it "Must be able to retrieve height of most recent block." do
65
+ expect(@nimiq.block_number()).to be_a_kind_of(Object)
66
+ end
67
+
68
+ # Test suite for client to retrieve the consensus status.
69
+ it "Must be able to retrieve the consensus status." do
70
+ expect(@nimiq.consensus()).to be_a_kind_of(String)
71
+ end
72
+
73
+ # Test suite for client to override a constant value.
74
+ it "Must be able to override a constant value." do
75
+ constant_value = 10
76
+ expect(@nimiq.constant("BaseConsensus.MAX_ATTEMPTS_TO_FETCH", constant_value)).to eq(constant_value)
77
+ end
78
+
79
+ # Test suite for client to retrieve a constant value.
80
+ it "Must be able to retrieve a constant value." do
81
+ expect(@nimiq.constant("BaseConsensus.MAX_ATTEMPTS_TO_FETCH")).to eq(10)
82
+ end
83
+
84
+ # Test suite for client to create a new account.
85
+ it "Must be able to create a new account." do
86
+ expect(@nimiq.create_account()).to be_a_kind_of(Object)
87
+ end
88
+
89
+ # Test suite for client to create a transaction without sending it.
90
+ it "Must be able to create a transaction without sending it." do
91
+ transaction = {
92
+ "from": "NQ94 VESA PKTA 9YQ0 XKGC HVH0 Q9DF VSFU STSP",
93
+ "to": "NQ16 61ET MB3M 2JG6 TBLK BR0D B6EA X6XQ L91U",
94
+ "value": 100000,
95
+ "fee": 0,
96
+ }
97
+ expect(@nimiq.create_raw_transaction(transaction)).to be_a_kind_of(Object)
98
+ end
99
+
100
+ # # new
101
+ # # Test suite for client to retrieve a transaction information.
102
+ # it "Must be able to retrieve a transaction information." do
103
+ # # signed_transaction = "010000...abcdef"
104
+ # expect(@nimiq.get_raw_transaction_info(@signed_transaction)).to be_a_kind_of(Object)
105
+ # end
106
+
107
+ # Test suite for client to retrieve information related to an account.
108
+ it "Must be able to retrieve information related to an account." do
109
+ expect(@nimiq.get_account("NQ30 JLD6 U347 DFVU 40J3 F93V 9TCF YMMX RKY3")).to be_a_kind_of(Object)
110
+ end
111
+
112
+ # Test suite for client to retrieve balance of account.
113
+ it "Must be able to retrieve balance of account." do
114
+ expect(@nimiq.get_balance("NQ30 JLD6 U347 DFVU 40J3 F93V 9TCF YMMX RKY3")).to be_a_kind_of(Numeric)
115
+ end
116
+
117
+ # Test suite for client to retrieve block by hash.
118
+ it "Must be able to retrieve block by hash." do
119
+ expect(@nimiq.get_block_by_hash("14c91f6d6f3a0b62271e546bb09461231ab7e4d1ddc2c3e1b93de52d48a1da87", false)).to be_a_kind_of(Object)
120
+ end
121
+
122
+ # Test suite for client to retrieve block by hash, full transactions included.
123
+ it "Must be able to retrieve block by hash, full transactions included." do
124
+ expect(@nimiq.get_block_by_hash("14c91f6d6f3a0b62271e546bb09461231ab7e4d1ddc2c3e1b93de52d48a1da87", true)).to be_a_kind_of(Object)
125
+ end
126
+
127
+ # Test suite for client to retrieve block by number.
128
+ it "Must be able to retrieve block by number." do
129
+ expect(@nimiq.get_block_by_number(76415, false)).to be_a_kind_of(Object)
130
+ end
131
+
132
+ # Test suite for client to retrieve block by number, full transactions included.
133
+ it "Must be able to retrieve block by number, full transactions included." do
134
+ expect(@nimiq.get_block_by_number(76415, true)).to be_a_kind_of(Object)
135
+ end
136
+
137
+ # Test suite for client to retrieve block template.
138
+ it "Must be able to retrieve block template." do
139
+ expect(@nimiq.get_block_template()).to be_a_kind_of(Object)
140
+ end
141
+
142
+ # Test suite for client to retrieve the number of transactions in a block by block hash.
143
+ it "Must be able to retrieve the number of transactions in a block by block hash." do
144
+ expect(@nimiq.get_block_transaction_count_by_hash("dfe7d166f2c86bd10fa4b1f29cd06c13228f893167ce9826137c85758645572f")).to be_a_kind_of(Numeric)
145
+ end
146
+
147
+ # Test suite for client to retrieve the number of transactions in a block by block number.
148
+ it "Must be able to retrieve the number of transactions in a block by block number." do
149
+ expect(@nimiq.get_block_transaction_count_by_number(76415)).to be_a_kind_of(Numeric)
150
+ end
151
+
152
+ # Test suite for client to retrieve information about a transaction by block hash and transaction index position.
153
+ it "Must be able to retrieve information about a transaction by block hash and transaction index position." do
154
+ expect(@nimiq.get_transaction_by_block_hash_and_index("dfe7d166f2c86bd10fa4b1f29cd06c13228f893167ce9826137c85758645572f", 20)).to be_a_kind_of(Object)
155
+ end
156
+
157
+ # Test suite for client to retrieve information about a transaction by block number and transaction index position.
158
+ it "Must be able to retrieve information about a transaction by block number and transaction index position." do
159
+ expect(@nimiq.get_transaction_by_block_number_and_index(76415, 20)).to be_a_kind_of(Object)
160
+ end
161
+
162
+ # Test suite for client to retrieve the information about a transaction requested by transaction hash.
163
+ it "Must be able to retrieve the information about a transaction requested by transaction hash." do
164
+ expect(@nimiq.get_transaction_by_hash("9eb228482138a8e64c5bb60608979904aa2be5721c115a9e3db54a0c481bb398")).to be_a_kind_of(Object)
165
+ end
166
+
167
+ # Test suite for client to retrieve the receipt of a transaction by transaction hash.
168
+ it "Must be able to retrieve the receipt of a transaction by transaction hash." do
169
+ expect(@nimiq.get_transaction_receipt("465a63b73aa0b9b54b777be9a585ea00b367a17898ad520e1f22cb2c986ff554")).to be_a_kind_of(Object)
170
+ end
171
+
172
+ # Test suite for client to retrieve the latest transactions successfully performed by or for an address.
173
+ it "Must be able to retrieve the latest transactions successfully performed by or for an address." do
174
+ expect(@nimiq.get_transactions_by_address("NQ699A4AMB83HXDQ4J46BH5R4JFFQMA9C3GN", 100)).to be_a_kind_of(Object)
175
+ end
176
+
177
+ # Test suite for client to retrieve instructions to mine the next block.
178
+ it "Must be able to retrieve instructions to mine the next block." do
179
+ expect(@nimiq.get_work()).to be_a_kind_of(Object)
180
+ end
181
+
182
+ # Test suite for client to retrieve the number of hashes per second that the node is mining with.
183
+ it "Must be able to retrieve the number of hashes per second that the node is mining with." do
184
+ expect(@nimiq.hashrate()).to be_a_kind_of(Numeric)
185
+ end
186
+
187
+ # Test suite for client to set the log level of the node.
188
+ it "Must be able to set the log level of the node." do
189
+ expect(@nimiq.log("BaseConsensus", "debug")).to be(true).or be(false)
190
+ end
191
+
192
+ # Test suite for client to retrieve information on the current mempool situation.
193
+ it "Must be able to retrieve information on the current mempool situation." do
194
+ expect(@nimiq.mempool()).to be_a_kind_of(Object)
195
+ end
196
+
197
+ # Test suite for client to retrieve transactions that are currently in the mempool.
198
+ it "Must be able to retrieve transactions that are currently in the mempool." do
199
+ expect(@nimiq.mempool_content()).to be_a_kind_of(Object)
200
+ end
201
+
202
+ # Test suite for client to retrieve miner address.
203
+ it "Must be able to retrieve miner address." do
204
+ expect(@nimiq.miner_address()).to be_a_kind_of(String)
205
+ end
206
+
207
+ # Test suite for client to set the number of CPU threads for the miner.
208
+ it "Must be able to set the number of CPU threads for the miner." do
209
+ expect(@nimiq.miner_threads(2)).to be_a_kind_of(Numeric)
210
+ end
211
+
212
+ # Test suite for client to retrieve the number of CPU threads for the miner.
213
+ it "Must be able to retrieve the number of CPU threads for the miner." do
214
+ expect(@nimiq.miner_threads()).to be_a_kind_of(Numeric)
215
+ end
216
+
217
+ # Test suite for client to set the minimum fee per byte.
218
+ it "Must be able to set the minimum fee per byte." do
219
+ expect(@nimiq.min_fee_per_byte(1)).to be_a_kind_of(Numeric)
220
+ end
221
+
222
+ # Test suite for client to retrieve the minimum fee per byte.
223
+ it "Must be able to retrieve the minimum fee per byte." do
224
+ expect(@nimiq.min_fee_per_byte()).to be_a_kind_of(Numeric)
225
+ end
226
+
227
+ # Test suite for client to retrieve if client is actively mining new blocks.
228
+ it "Must be able to retrieve if client is actively mining new blocks." do
229
+ expect(@nimiq.mining()).to be(true).or be(false)
230
+ end
231
+
232
+ # Test suite for client to retrieve the number of peers currently connected to the client.
233
+ it "Must be able to retrieve the number of peers currently connected to the client." do
234
+ expect(@nimiq.peer_count()).to be_a_kind_of(Numeric)
235
+ end
236
+
237
+ # Test suite for client to retrieve the list of peers known to the client.
238
+ it "Must be able to retrieve the list of peers known to the client." do
239
+ expect(@nimiq.peer_list()).to be_a_kind_of(Object)
240
+ end
241
+
242
+ # Test suite for client to retrieve the state of the peer.
243
+ it "Must be able to retrieve the state of the peer." do
244
+ expect(@nimiq.peer_state("wss://seed-1.nimiq.com:8443/dfd55fe967d6c0ca707d3a73ec31e4ac")).to be_a_kind_of(Object)
245
+ end
246
+
247
+ # Test suite for client to set the mining pool.
248
+ it "Must be able to set the mining pool." do
249
+ expect(@nimiq.pool("eu.nimpool.io:8444")).to be_a_kind_of(String)
250
+ end
251
+
252
+ # Test suite for client to retrieve the mining pool.
253
+ it "Must be able to retrieve the mining pool." do
254
+ expect(@nimiq.pool()).to be_a_kind_of(String)
255
+ end
256
+
257
+ # Test suite for client to retrieve the confirmed mining pool balance.
258
+ it "Must be able to retrieve the confirmed mining pool balance." do
259
+ expect(@nimiq.pool_confirmed_balance()).to be_a_kind_of(Numeric)
260
+ end
261
+
262
+ # Test suite for client to retrieve the connection state to mining pool.
263
+ it "Must be able to retrieve the connection state to mining pool." do
264
+ expect(@nimiq.pool_connection_state()).to be_a_kind_of(Numeric)
265
+ end
266
+
267
+ # Test suite for client to send a signed message call transaction or a contract creation, if the data field contains code.
268
+ it "Must be able to send a signed message call transaction or a contract creation, if the data field contains code." do
269
+ # signed_transaction = "010000...abcdef"
270
+ expect(@nimiq.send_raw_transaction(@signed_transaction)).to be_a_kind_of(Object)
271
+ end
272
+
273
+ # Test suite for client to create new message call transaction or a contract creation, if the data field contains code.
274
+ it "Must be able to create new message call transaction or a contract creation, if the data field contains code." do
275
+ transaction = {
276
+ "from": "NQ94 VESA PKTA 9YQ0 XKGC HVH0 Q9DF VSFU STSP",
277
+ "to": "NQ16 61ET MB3M 2JG6 TBLK BR0D B6EA X6XQ L91U",
278
+ "value": 100000,
279
+ "fee": 0,
280
+ }
281
+ expect(@nimiq.send_transaction(transaction)).to be_a_kind_of(Object)
282
+ end
283
+
284
+ # Test suite for client to submit a block to the node.
285
+ it "Must be able to submit a block to the node." do
286
+ block = "00000000"
287
+ expect(@nimiq.submit_block(block)).to be_a_kind_of(Numeric)
288
+ end
289
+
290
+ # Test suite for client to retrieve an object with data about the sync status.
291
+ it "Must be able to retrieve an object with data about the sync status." do
292
+ expect(@nimiq.syncing()).to be(true).or be(false)
293
+ end
294
+ end
295
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.5
4
+ version: 1.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - jxdv
@@ -31,30 +31,13 @@ executables: []
31
31
  extensions: []
32
32
  extra_rdoc_files: []
33
33
  files:
34
- - Gemfile
35
- - Gemfile.lock
36
- - LICENSE
37
- - README.md
38
- - Rakefile
39
34
  - bin/console
40
35
  - bin/setup
41
36
  - lib/api.rb
42
37
  - lib/nimiq/version.rb
43
38
  - lib/rpcclient.rb
44
39
  - lib/ruby-client.rb
45
- - main.rb
46
- - ruby-client-1.0.0.gem
47
- - ruby-client-1.0.1.gem
48
- - ruby-client-1.0.2.gem
49
- - ruby-client-1.0.3.gem
50
- - ruby-client-1.0.4.gem
51
- - ruby-client-1.0.5.gem
52
- - ruby-client-1.1.1.gem
53
- - ruby-client-1.1.2.gem
54
- - ruby-client-1.1.3.gem
55
- - ruby-client-1.1.4.gem
56
- - ruby-client.gemspec
57
- - rubyclient-1.0.0.gem
40
+ - spec/client_spec.rb
58
41
  homepage: https://github.com/jxdv/ruby-client
59
42
  licenses:
60
43
  - Apache-2.0
@@ -80,5 +63,5 @@ requirements: []
80
63
  rubygems_version: 3.1.4
81
64
  signing_key:
82
65
  specification_version: 4
83
- summary: Ruby implementation of the Nimiq RPC client specifications.
66
+ summary: Ruby implementation of the Nimiq RPC client specification.
84
67
  test_files: []
data/Gemfile DELETED
@@ -1,6 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gemspec
4
-
5
- gem "minitest", "~> 5.0"
6
- gem "rspec-rails", "~> 3.5"
@@ -1,92 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- ruby-client (1.0.2)
5
- oj (~> 2.15)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionpack (6.0.3.2)
11
- actionview (= 6.0.3.2)
12
- activesupport (= 6.0.3.2)
13
- rack (~> 2.0, >= 2.0.8)
14
- rack-test (>= 0.6.3)
15
- rails-dom-testing (~> 2.0)
16
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
17
- actionview (6.0.3.2)
18
- activesupport (= 6.0.3.2)
19
- builder (~> 3.1)
20
- erubi (~> 1.4)
21
- rails-dom-testing (~> 2.0)
22
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
23
- activesupport (6.0.3.2)
24
- concurrent-ruby (~> 1.0, >= 1.0.2)
25
- i18n (>= 0.7, < 2)
26
- minitest (~> 5.1)
27
- tzinfo (~> 1.1)
28
- zeitwerk (~> 2.2, >= 2.2.2)
29
- builder (3.2.4)
30
- concurrent-ruby (1.1.6)
31
- crass (1.0.6)
32
- diff-lcs (1.4.4)
33
- erubi (1.9.0)
34
- i18n (1.8.4)
35
- concurrent-ruby (~> 1.0)
36
- loofah (2.6.0)
37
- crass (~> 1.0.2)
38
- nokogiri (>= 1.5.9)
39
- method_source (1.0.0)
40
- mini_portile2 (2.4.0)
41
- minitest (5.14.1)
42
- nokogiri (1.10.10-x64-mingw32)
43
- mini_portile2 (~> 2.4.0)
44
- oj (2.18.5)
45
- rack (2.2.3)
46
- rack-test (1.1.0)
47
- rack (>= 1.0, < 3)
48
- rails-dom-testing (2.0.3)
49
- activesupport (>= 4.2.0)
50
- nokogiri (>= 1.6)
51
- rails-html-sanitizer (1.3.0)
52
- loofah (~> 2.3)
53
- railties (6.0.3.2)
54
- actionpack (= 6.0.3.2)
55
- activesupport (= 6.0.3.2)
56
- method_source
57
- rake (>= 0.8.7)
58
- thor (>= 0.20.3, < 2.0)
59
- rake (13.0.1)
60
- rspec-core (3.9.2)
61
- rspec-support (~> 3.9.3)
62
- rspec-expectations (3.9.2)
63
- diff-lcs (>= 1.2.0, < 2.0)
64
- rspec-support (~> 3.9.0)
65
- rspec-mocks (3.9.1)
66
- diff-lcs (>= 1.2.0, < 2.0)
67
- rspec-support (~> 3.9.0)
68
- rspec-rails (3.9.1)
69
- actionpack (>= 3.0)
70
- activesupport (>= 3.0)
71
- railties (>= 3.0)
72
- rspec-core (~> 3.9.0)
73
- rspec-expectations (~> 3.9.0)
74
- rspec-mocks (~> 3.9.0)
75
- rspec-support (~> 3.9.0)
76
- rspec-support (3.9.3)
77
- thor (1.0.1)
78
- thread_safe (0.3.6)
79
- tzinfo (1.2.7)
80
- thread_safe (~> 0.1)
81
- zeitwerk (2.4.0)
82
-
83
- PLATFORMS
84
- x64-mingw32
85
-
86
- DEPENDENCIES
87
- minitest (~> 5.0)
88
- rspec-rails (~> 3.5)
89
- ruby-client!
90
-
91
- BUNDLED WITH
92
- 2.1.4
data/LICENSE DELETED
@@ -1,177 +0,0 @@
1
-
2
- Apache License
3
- Version 2.0, January 2004
4
- http://www.apache.org/licenses/
5
-
6
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
-
8
- 1. Definitions.
9
-
10
- "License" shall mean the terms and conditions for use, reproduction,
11
- and distribution as defined by Sections 1 through 9 of this document.
12
-
13
- "Licensor" shall mean the copyright owner or entity authorized by
14
- the copyright owner that is granting the License.
15
-
16
- "Legal Entity" shall mean the union of the acting entity and all
17
- other entities that control, are controlled by, or are under common
18
- control with that entity. For the purposes of this definition,
19
- "control" means (i) the power, direct or indirect, to cause the
20
- direction or management of such entity, whether by contract or
21
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
- outstanding shares, or (iii) beneficial ownership of such entity.
23
-
24
- "You" (or "Your") shall mean an individual or Legal Entity
25
- exercising permissions granted by this License.
26
-
27
- "Source" form shall mean the preferred form for making modifications,
28
- including but not limited to software source code, documentation
29
- source, and configuration files.
30
-
31
- "Object" form shall mean any form resulting from mechanical
32
- transformation or translation of a Source form, including but
33
- not limited to compiled object code, generated documentation,
34
- and conversions to other media types.
35
-
36
- "Work" shall mean the work of authorship, whether in Source or
37
- Object form, made available under the License, as indicated by a
38
- copyright notice that is included in or attached to the work
39
- (an example is provided in the Appendix below).
40
-
41
- "Derivative Works" shall mean any work, whether in Source or Object
42
- form, that is based on (or derived from) the Work and for which the
43
- editorial revisions, annotations, elaborations, or other modifications
44
- represent, as a whole, an original work of authorship. For the purposes
45
- of this License, Derivative Works shall not include works that remain
46
- separable from, or merely link (or bind by name) to the interfaces of,
47
- the Work and Derivative Works thereof.
48
-
49
- "Contribution" shall mean any work of authorship, including
50
- the original version of the Work and any modifications or additions
51
- to that Work or Derivative Works thereof, that is intentionally
52
- submitted to Licensor for inclusion in the Work by the copyright owner
53
- or by an individual or Legal Entity authorized to submit on behalf of
54
- the copyright owner. For the purposes of this definition, "submitted"
55
- means any form of electronic, verbal, or written communication sent
56
- to the Licensor or its representatives, including but not limited to
57
- communication on electronic mailing lists, source code control systems,
58
- and issue tracking systems that are managed by, or on behalf of, the
59
- Licensor for the purpose of discussing and improving the Work, but
60
- excluding communication that is conspicuously marked or otherwise
61
- designated in writing by the copyright owner as "Not a Contribution."
62
-
63
- "Contributor" shall mean Licensor and any individual or Legal Entity
64
- on behalf of whom a Contribution has been received by Licensor and
65
- subsequently incorporated within the Work.
66
-
67
- 2. Grant of Copyright License. Subject to the terms and conditions of
68
- this License, each Contributor hereby grants to You a perpetual,
69
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
- copyright license to reproduce, prepare Derivative Works of,
71
- publicly display, publicly perform, sublicense, and distribute the
72
- Work and such Derivative Works in Source or Object form.
73
-
74
- 3. Grant of Patent License. Subject to the terms and conditions of
75
- this License, each Contributor hereby grants to You a perpetual,
76
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
- (except as stated in this section) patent license to make, have made,
78
- use, offer to sell, sell, import, and otherwise transfer the Work,
79
- where such license applies only to those patent claims licensable
80
- by such Contributor that are necessarily infringed by their
81
- Contribution(s) alone or by combination of their Contribution(s)
82
- with the Work to which such Contribution(s) was submitted. If You
83
- institute patent litigation against any entity (including a
84
- cross-claim or counterclaim in a lawsuit) alleging that the Work
85
- or a Contribution incorporated within the Work constitutes direct
86
- or contributory patent infringement, then any patent licenses
87
- granted to You under this License for that Work shall terminate
88
- as of the date such litigation is filed.
89
-
90
- 4. Redistribution. You may reproduce and distribute copies of the
91
- Work or Derivative Works thereof in any medium, with or without
92
- modifications, and in Source or Object form, provided that You
93
- meet the following conditions:
94
-
95
- (a) You must give any other recipients of the Work or
96
- Derivative Works a copy of this License; and
97
-
98
- (b) You must cause any modified files to carry prominent notices
99
- stating that You changed the files; and
100
-
101
- (c) You must retain, in the Source form of any Derivative Works
102
- that You distribute, all copyright, patent, trademark, and
103
- attribution notices from the Source form of the Work,
104
- excluding those notices that do not pertain to any part of
105
- the Derivative Works; and
106
-
107
- (d) If the Work includes a "NOTICE" text file as part of its
108
- distribution, then any Derivative Works that You distribute must
109
- include a readable copy of the attribution notices contained
110
- within such NOTICE file, excluding those notices that do not
111
- pertain to any part of the Derivative Works, in at least one
112
- of the following places: within a NOTICE text file distributed
113
- as part of the Derivative Works; within the Source form or
114
- documentation, if provided along with the Derivative Works; or,
115
- within a display generated by the Derivative Works, if and
116
- wherever such third-party notices normally appear. The contents
117
- of the NOTICE file are for informational purposes only and
118
- do not modify the License. You may add Your own attribution
119
- notices within Derivative Works that You distribute, alongside
120
- or as an addendum to the NOTICE text from the Work, provided
121
- that such additional attribution notices cannot be construed
122
- as modifying the License.
123
-
124
- You may add Your own copyright statement to Your modifications and
125
- may provide additional or different license terms and conditions
126
- for use, reproduction, or distribution of Your modifications, or
127
- for any such Derivative Works as a whole, provided Your use,
128
- reproduction, and distribution of the Work otherwise complies with
129
- the conditions stated in this License.
130
-
131
- 5. Submission of Contributions. Unless You explicitly state otherwise,
132
- any Contribution intentionally submitted for inclusion in the Work
133
- by You to the Licensor shall be under the terms and conditions of
134
- this License, without any additional terms or conditions.
135
- Notwithstanding the above, nothing herein shall supersede or modify
136
- the terms of any separate license agreement you may have executed
137
- with Licensor regarding such Contributions.
138
-
139
- 6. Trademarks. This License does not grant permission to use the trade
140
- names, trademarks, service marks, or product names of the Licensor,
141
- except as required for reasonable and customary use in describing the
142
- origin of the Work and reproducing the content of the NOTICE file.
143
-
144
- 7. Disclaimer of Warranty. Unless required by applicable law or
145
- agreed to in writing, Licensor provides the Work (and each
146
- Contributor provides its Contributions) on an "AS IS" BASIS,
147
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
- implied, including, without limitation, any warranties or conditions
149
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
- PARTICULAR PURPOSE. You are solely responsible for determining the
151
- appropriateness of using or redistributing the Work and assume any
152
- risks associated with Your exercise of permissions under this License.
153
-
154
- 8. Limitation of Liability. In no event and under no legal theory,
155
- whether in tort (including negligence), contract, or otherwise,
156
- unless required by applicable law (such as deliberate and grossly
157
- negligent acts) or agreed to in writing, shall any Contributor be
158
- liable to You for damages, including any direct, indirect, special,
159
- incidental, or consequential damages of any character arising as a
160
- result of this License or out of the use or inability to use the
161
- Work (including but not limited to damages for loss of goodwill,
162
- work stoppage, computer failure or malfunction, or any and all
163
- other commercial damages or losses), even if such Contributor
164
- has been advised of the possibility of such damages.
165
-
166
- 9. Accepting Warranty or Additional Liability. While redistributing
167
- the Work or Derivative Works thereof, You may choose to offer,
168
- and charge a fee for, acceptance of support, warranty, indemnity,
169
- or other liability obligations and/or rights consistent with this
170
- License. However, in accepting such obligations, You may act only
171
- on Your own behalf and on Your sole responsibility, not on behalf
172
- of any other Contributor, and only if You agree to indemnify,
173
- defend, and hold each Contributor harmless for any liability
174
- incurred by, or claims asserted against, such Contributor by reason
175
- of your accepting any such warranty or additional liability.
176
-
177
- END OF TERMS AND CONDITIONS
data/README.md DELETED
@@ -1,49 +0,0 @@
1
- # Nimiq Ruby RPC Client
2
-
3
- > Ruby implementation of the Nimiq RPC client specs.
4
-
5
- ## Info
6
-
7
- Nimiq Ruby RPC client. It will allow you to interact with the Nimiq Blockchain, to collect data, sync with the network etc.. This library covers all the current [Nimiq JSON-RPC specification](https://github.com/nimiq/core-js/wiki/JSON-RPC-API#remotejs-client).
8
-
9
- # What is Nimiq?
10
-
11
- Inspired by the Bitcoin, Nimiq is a blockchain / cryptocurrency that runs in your browser seamlessly.
12
-
13
- Fast, easy and fun to use, for more information visit the [Nimiq website](https://www.nimiq.com/).
14
-
15
- ### Usage
16
-
17
- Example to use this ruby client:
18
-
19
- ```ruby
20
- options = {
21
- host: "http://127.0.0.1",
22
- port: "8000",
23
- # user: "user",
24
- # pass: "pass",
25
- # uri: "http://USER:PASS@IP:PORT",
26
- }
27
- nimiq = Nimiq::Client.new(options)
28
- consensus = nimiq.consensus()
29
- get_balance = nimiq.get_balance("NQ27 B9ED 98G5 3VH7 FY8D BFP0 XNF4 BD8L TN4B")
30
-
31
- puts "Consensus #{consensus}"
32
- puts "My account balance #{get_balance}"
33
- ```
34
-
35
- ## Development
36
-
37
- This section is for developments. If you only want to use this client go to the [Usage](#Usage) section. After cloning the repo, run `bundle` to install the required dependencies. For testing it requires a running Nimiq RPC node, to connect to. You can then run tests by typing `rspec --format documentation`.
38
-
39
- For a private node connection that require a username/password, don't forget to set these in the configuration spec file.
40
-
41
- ## Contributions
42
-
43
- This implementation was originally contributed by [jxdv](https://github.com/jxdv/).
44
-
45
- Bug reports and pull requests are welcome.
46
-
47
- ## License
48
-
49
- [Apache 2.0](LICENSE)
data/Rakefile DELETED
@@ -1,14 +0,0 @@
1
- # require "bundler/gem_tasks"
2
- require "rake/testtask"
3
-
4
- Rake::TestTask.new do |t|
5
- t.pattern = "spec/*_spec.rb"
6
- end
7
-
8
- # Rake::TestTask.new(:test) do |t|
9
- # t.libs << "test"
10
- # t.libs << "lib"
11
- # t.test_files = FileList["test/**/*_test.rb"]
12
- # end
13
-
14
- # task :default => :test
data/main.rb DELETED
@@ -1,153 +0,0 @@
1
- require_relative "./lib/ruby-client"
2
- require "json"
3
-
4
- # :main: README.MD
5
- options = {
6
- host: "http://127.0.0.1",
7
- port: "8005",
8
- user: "user",
9
- pass: "pass",
10
- dev: true,
11
- # uri: "http://USER:PASS@IP:PORT",
12
- }
13
-
14
- nimiq = Nimiq::Client.new(options)
15
- puts "nimiq init #{nimiq}"
16
-
17
- # nimiq.ping
18
- # print ">>> ", nimiq.instance_variable_get(:@pingres)
19
-
20
- consensus = nimiq.request("consenasus")
21
- puts "custom #{consensus}"
22
-
23
- # accounts = nimiq.accounts()
24
- # puts "accounts #{accounts}"
25
-
26
- # blockNumber = nimiq.block_number()
27
- # puts "blockNumber #{blockNumber}"
28
-
29
- # consensus = nimiq.consensus()
30
- # puts "consensus #{consensus}"
31
-
32
- # constant = nimiq.constant("BaseConsensus.MAX_ATTEMPTS_TO_FETCH", 10)
33
- # puts "constant #{constant}"
34
-
35
- # createAccount = nimiq.create_account()
36
- # puts "createAccount #{createAccount}"
37
-
38
- # transaction = {
39
- # "from": "NQ94 VESA PKTA 9YQ0 XKGC HVH0 Q9DF VSFU STSP",
40
- # "to": "NQ16 61ET MB3M 2JG6 TBLK BR0D B6EA X6XQ L91U",
41
- # "value": 100000,
42
- # "fee": 0,
43
- # }
44
- # createRawTransaction = nimiq.create_raw_transaction(transaction)
45
- # puts "createRawTransaction #{createRawTransaction}"
46
-
47
- # # new
48
- # getRawTransactionInfo = nimiq.get_raw_transaction_info("010000...abcdef")
49
- # puts "getRawTransactionInfo #{getRawTransactionInfo}"
50
-
51
- # getAccount = nimiq.get_account("NQ30 JLD6 U347 DFVU 40J3 F93V 9TCF YMMX RKY3")
52
- # puts "GetAccount #{getAccount}"
53
-
54
- # getBalance = nimiq.get_balance("NQ30 JLD6 U347 DFVU 40J3 F93V 9TCF YMMX RKY3")
55
- # puts "GetBalance #{getBalance}"
56
-
57
- # getBlockByHash = nimiq.get_block_by_hash("14c91f6d6f3a0b62271e546bb09461231ab7e4d1ddc2c3e1b93de52d48a1da87", true)
58
- # puts "getBlockByHash #{getBlockByHash}"
59
-
60
- # getBlockByNumber = nimiq.get_block_by_number(76415, true)
61
- # puts "getBlockByNumber #{getBlockByNumber}"
62
-
63
- # getBlockTemplate = nimiq.get_block_template()
64
- # puts "getBlockTemplate #{getBlockTemplate}"
65
-
66
- # getBlockTransactionCountByHash = nimiq.get_block_transaction_count_by_hash("dfe7d166f2c86bd10fa4b1f29cd06c13228f893167ce9826137c85758645572f")
67
- # puts "getBlockTransactionCountByHash #{getBlockTransactionCountByHash}"
68
-
69
- # getBlockTransactionCountByNumber = nimiq.get_block_transaction_count_by_number(76415)
70
- # puts "getBlockTransactionCountByNumber #{getBlockTransactionCountByNumber}"
71
-
72
- # getTransactionByBlockHashAndIndex = nimiq.get_transaction_by_block_hash_and_index("dfe7d166f2c86bd10fa4b1f29cd06c13228f893167ce9826137c85758645572f", 20)
73
- # puts "getTransactionByBlockHashAndIndex #{getTransactionByBlockHashAndIndex}"
74
-
75
- # getTransactionByBlockNumberAndIndex = nimiq.get_transaction_by_block_number_and_index(76415, 20)
76
- # puts "getTransactionByBlockNumberAndIndex #{getTransactionByBlockNumberAndIndex}"
77
-
78
- # getTransactionByHash = nimiq.get_transaction_by_hash("9eb228482138a8e64c5bb60608979904aa2be5721c115a9e3db54a0c481bb398")
79
- # puts "getTransactionByHash #{getTransactionByHash}"
80
-
81
- # getTransactionReceipt = nimiq.get_transaction_receipt("465a63b73aa0b9b54b777be9a585ea00b367a17898ad520e1f22cb2c986ff554")
82
- # puts "getTransactionReceipt #{getTransactionReceipt}"
83
-
84
- # getTransactionsByAddress = nimiq.get_transactions_by_address("NQ699A4AMB83HXDQ4J46BH5R4JFFQMA9C3GN", 100)
85
- # puts "getTransactionsByAddress #{getTransactionsByAddress}"
86
-
87
- # getWork = nimiq.get_work()
88
- # puts "getWork #{getWork}"
89
-
90
- # hashrate = nimiq.hashrate()
91
- # puts "hashrate #{hashrate}"
92
-
93
- # log = nimiq.log("BaseConsensus", "debug")
94
- # puts "log #{log}"
95
-
96
- # mempool = nimiq.mempool()
97
- # puts "mempool #{mempool}"
98
-
99
- # mempoolContent = nimiq.mempool_content()
100
- # puts "mempoolContent #{mempoolContent}"
101
-
102
- # minerAddress = nimiq.miner_address()
103
- # puts "minerAddress #{minerAddress}"
104
-
105
- # minerThreads = nimiq.miner_threads(2)
106
- # puts "minerThreads #{minerThreads}"
107
-
108
- # minFeePerByte = nimiq.min_fee_per_byte(0)
109
- # puts "minFeePerByte #{minFeePerByte}"
110
-
111
- # mining = nimiq.mining()
112
- # puts "mining #{mining}"
113
-
114
- # peerCount = nimiq.peer_count()
115
- # puts "peerCount #{peerCount}"
116
-
117
- # peerList = nimiq.peer_list()
118
- # puts "peerList #{peerList}"
119
-
120
- # peerState = nimiq.peer_state("wss://seed-1.nimiq.com:8443/dfd55fe967d6c0ca707d3a73ec31e4ac")
121
- # puts "peerState #{peerState}"
122
-
123
- # pool = nimiq.pool("eu.nimpool.io:8444")
124
- # puts "pool #{pool}"
125
-
126
- # poolConfirmedBalance = nimiq.pool_confirmed_balance()
127
- # puts "poolConfirmedBalance #{poolConfirmedBalance}"
128
-
129
- # poolConnectionState = nimiq.pool_connection_state()
130
- # puts "poolConnectionState #{poolConnectionState}"
131
-
132
- # sendRawTransaction = nimiq.send_raw_transaction("010000...abcdef")
133
- # puts "sendRawTransaction #{sendRawTransaction}"
134
-
135
- # transaction = {
136
- # "from": "NQ94 VESA PKTA 9YQ0 XKGC HVH0 Q9DF VSFU STSP",
137
- # "to": "NQ16 61ET MB3M 2JG6 TBLK BR0D B6EA X6XQ L91U",
138
- # "value": 100000,
139
- # "fee": 0,
140
- # }
141
- # sendTransaction = nimiq.send_transaction(transaction)
142
- # puts "sendTransaction #{sendTransaction}"
143
-
144
- # block="0000000"
145
- # submitBlock = nimiq.submit_block(block)
146
- # puts "submitBlock #{submitBlock}"
147
-
148
- # syncing = nimiq.syncing()
149
- # puts "syncing #{syncing}"
150
-
151
- # require_relative "./lib/ruby-client"
152
- # aaaaaaaa = Nimiq::Client.new()
153
- # puts aaaaaaaa.world
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,33 +0,0 @@
1
- # lib = File.expand_path("lib", __dir__)
2
- # $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
- # require "nimiq/version"
4
- require_relative "lib/ruby-client"
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "ruby-client"
8
- spec.version = Nimiq::VERSION
9
- spec.authors = ["jxdv"]
10
- spec.email = ["root@localhost"]
11
-
12
- spec.summary = %q{Ruby implementation of the Nimiq RPC client specifications.}
13
- spec.homepage = "https://github.com/jxdv/ruby-client"
14
- spec.license = "Apache-2.0"
15
- spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
16
-
17
- spec.metadata["homepage_uri"] = spec.homepage
18
- spec.metadata["source_code_uri"] = "https://github.com/jxdv/ruby-client"
19
- spec.metadata["changelog_uri"] = "https://github.com/jxdv/ruby-client/readme.md"
20
-
21
- spec.add_dependency "oj", "~> 2.15"
22
-
23
- spec.files = Dir["lib/*.rb"] + Dir["lib/nimiq/*.rb"] + Dir["bin/*"]
24
- spec.files += Dir["[A-Z]*"] + Dir["test/**/*"]
25
- spec.files.reject! { |fn| fn.include? "CVS" }
26
- # spec.files.reject! { Dir["doc"] }
27
- # spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do
28
- # `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
29
- # end
30
- spec.bindir = "exe"
31
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
32
- spec.require_paths = ["lib"]
33
- end
Binary file