erc20 0.0.13 → 0.0.15
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 +4 -4
- data/lib/erc20/erc20.rb +1 -1
- data/lib/erc20/wallet.rb +18 -13
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9aaaf16c1cb37a5f676efbec190e3b707c34fa816e781d3119c43b5b2b44500b
|
4
|
+
data.tar.gz: a77d26b7f77b56f9a46f860b4a5e5104ed7239da40f16d14b056c96b8d05ca88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: edef3ec85bb02e73d8815907bf6f256b1a261b8051ada8a1280efde631d8faaa70e5533c4577e63843615a163e4115e383ce4d7d891592277fb71377d1eafffd
|
7
|
+
data.tar.gz: 484da28c8385d9a5b4ce18ca0cffd26e221144d641d1e9f777980a6394edcac0843a9f5e58e2243e7f858aea561ff8a39466934eefd01cfebced3071a029f24b
|
data/lib/erc20/erc20.rb
CHANGED
data/lib/erc20/wallet.rb
CHANGED
@@ -131,8 +131,7 @@ class ERC20::Wallet
|
|
131
131
|
raise 'Address must be a String' unless hex.is_a?(String)
|
132
132
|
raise 'Invalid format of the address' unless /^0x[0-9a-fA-F]{40}$/.match?(hex)
|
133
133
|
func = '70a08231' # balanceOf
|
134
|
-
|
135
|
-
data = "0x#{func}#{padded}"
|
134
|
+
data = "0x#{func}000000000000000000000000#{hex[2..].downcase}"
|
136
135
|
r = jsonrpc.eth_call({ to: @contract, data: data }, 'latest')
|
137
136
|
b = r[2..].to_i(16)
|
138
137
|
@log.debug("Balance of #{hex} is #{b}")
|
@@ -172,7 +171,7 @@ class ERC20::Wallet
|
|
172
171
|
amt_padded = ('0' * (64 - amt_hex.size)) + amt_hex
|
173
172
|
data = "0x#{func}#{to_padded}#{amt_padded}"
|
174
173
|
key = Eth::Key.new(priv: priv)
|
175
|
-
from = key.address
|
174
|
+
from = key.address.to_s
|
176
175
|
tnx =
|
177
176
|
@mutex.synchronize do
|
178
177
|
nonce = jsonrpc.eth_getTransactionCount(from, 'pending').to_i(16)
|
@@ -214,24 +213,27 @@ class ERC20::Wallet
|
|
214
213
|
# @param [Array] active List of addresses that we are actually listening to
|
215
214
|
# @param [Boolean] raw TRUE if you need to get JSON events as they arrive from Websockets
|
216
215
|
# @param [Integer] delay How many seconds to wait between +eth_subscribe+ calls
|
217
|
-
|
216
|
+
# @param [Integer] subscription_id Unique ID of the subscription
|
217
|
+
def accept(addresses, active = [], raw: false, delay: 1, subscription_id: rand(99_999))
|
218
218
|
raise 'Addresses can\'t be nil' unless addresses
|
219
219
|
raise 'Addresses must respond to .to_a()' unless addresses.respond_to?(:to_a)
|
220
220
|
raise 'Active can\'t be nil' unless active
|
221
|
-
raise 'Active must respond to .append()' unless
|
221
|
+
raise 'Active must respond to .append()' unless active.respond_to?(:append)
|
222
222
|
raise 'Amount must be an Integer' unless delay.is_a?(Integer)
|
223
223
|
raise 'Amount must be a positive Integer' unless delay.positive?
|
224
|
+
raise 'Subscription ID must be an Integer' unless subscription_id.is_a?(Integer)
|
225
|
+
raise 'Subscription ID must be a positive Integer' unless subscription_id.positive?
|
224
226
|
EventMachine.run do
|
225
227
|
u = url(http: false)
|
226
228
|
@log.debug("Connecting to #{u.hostname}:#{u.port}...")
|
227
229
|
ws = Faye::WebSocket::Client.new(u.to_s, [], proxy: @proxy ? { origin: @proxy } : {})
|
228
230
|
log = @log
|
229
231
|
contract = @contract
|
230
|
-
id = rand(99_999)
|
231
232
|
attempt = []
|
233
|
+
log_url = "ws#{@ssl ? 's' : ''}://#{u.hostname}:#{u.port}"
|
232
234
|
ws.on(:open) do
|
233
235
|
verbose do
|
234
|
-
log.debug("Connected to
|
236
|
+
log.debug("Connected to #{log_url}")
|
235
237
|
end
|
236
238
|
end
|
237
239
|
ws.on(:message) do |msg|
|
@@ -243,7 +245,7 @@ class ERC20::Wallet
|
|
243
245
|
active.append(a) unless before.include?(a)
|
244
246
|
end
|
245
247
|
log.debug(
|
246
|
-
"Subscribed ##{
|
248
|
+
"Subscribed ##{subscription_id} to #{active.to_a.size} addresses at #{log_url}: " \
|
247
249
|
"#{active.to_a.map { |a| a[0..6] }.join(', ')}"
|
248
250
|
)
|
249
251
|
elsif data['method'] == 'eth_subscription' && data.dig('params', 'result')
|
@@ -257,7 +259,10 @@ class ERC20::Wallet
|
|
257
259
|
to: "0x#{event['topics'][2][26..].downcase}",
|
258
260
|
txn: event['transactionHash'].downcase
|
259
261
|
}
|
260
|
-
log.debug(
|
262
|
+
log.debug(
|
263
|
+
"Payment of #{event[:amount]} tokens arrived" \
|
264
|
+
"from #{event[:from]} to #{event[:to]} in #{event[:txn]}"
|
265
|
+
)
|
261
266
|
end
|
262
267
|
yield event
|
263
268
|
end
|
@@ -265,12 +270,12 @@ class ERC20::Wallet
|
|
265
270
|
end
|
266
271
|
ws.on(:close) do
|
267
272
|
verbose do
|
268
|
-
log.debug("Disconnected from
|
273
|
+
log.debug("Disconnected from #{log_url}")
|
269
274
|
end
|
270
275
|
end
|
271
276
|
ws.on(:error) do |e|
|
272
277
|
verbose do
|
273
|
-
log.debug("Error at #{
|
278
|
+
log.debug("Error at #{log_url}: #{e.message}")
|
274
279
|
end
|
275
280
|
end
|
276
281
|
EventMachine.add_periodic_timer(delay) do
|
@@ -279,7 +284,7 @@ class ERC20::Wallet
|
|
279
284
|
ws.send(
|
280
285
|
{
|
281
286
|
jsonrpc: '2.0',
|
282
|
-
id
|
287
|
+
id: subscription_id,
|
283
288
|
method: 'eth_subscribe',
|
284
289
|
params: [
|
285
290
|
'logs',
|
@@ -295,7 +300,7 @@ class ERC20::Wallet
|
|
295
300
|
}.to_json
|
296
301
|
)
|
297
302
|
log.debug(
|
298
|
-
"Requested to subscribe ##{
|
303
|
+
"Requested to subscribe ##{subscription_id} to #{addresses.to_a.size} addresses at #{log_url}: " \
|
299
304
|
"#{addresses.to_a.map { |a| a[0..6] }.join(', ')}"
|
300
305
|
)
|
301
306
|
end
|