web3-eth 0.2.40 → 0.2.45
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/web3/eth/abi/abi_coder.rb +13 -1
- data/lib/web3/eth/contract.rb +2 -2
- data/lib/web3/eth/rpc.rb +1 -1
- data/lib/web3/eth/utility.rb +1 -1
- data/lib/web3/eth/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca610f7e51cabe8deea63017a90d5615e2bea31a798e06c6034a1f20f5c7c7f9
|
4
|
+
data.tar.gz: a783f5b5830db81f5ced929f078b82225565e28afb71d64fdec4d380a8fe0254
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9026b970e0f81d6fb33b897077a8419be91f36875f482afb79531375cbd9db5822bd13de977383995273c439029a823d25162fe5842c97d7ee8844d7315c4973
|
7
|
+
data.tar.gz: b546093564ee5eb379ef8ddcb803bff39476b263ea8936eeb49a80af691eafc1685e809f80783a195d458bda62fde765d6e7340a18bd1683d92eb4b22775b96c
|
@@ -231,7 +231,7 @@ module Web3::Eth::Abi
|
|
231
231
|
|
232
232
|
pos += 32
|
233
233
|
else
|
234
|
-
outputs[i] = data
|
234
|
+
outputs[i] = zero_padding data, pos, t.size, start_positions
|
235
235
|
pos += t.size
|
236
236
|
end
|
237
237
|
end
|
@@ -266,6 +266,18 @@ module Web3::Eth::Abi
|
|
266
266
|
end
|
267
267
|
alias :decode :decode_abi
|
268
268
|
|
269
|
+
def zero_padding data, pos, count, start_positions
|
270
|
+
if pos >= data.size
|
271
|
+
start_positions[start_positions.size-1] += count
|
272
|
+
"\x00"*count
|
273
|
+
elsif pos + count > data.size
|
274
|
+
start_positions[start_positions.size-1] += ( count - (data.size-pos))
|
275
|
+
data[pos,data.size-pos] + "\x00"*( count - (data.size-pos))
|
276
|
+
else
|
277
|
+
data[pos, count]
|
278
|
+
end
|
279
|
+
end
|
280
|
+
|
269
281
|
def decode_typed_data type_name, data
|
270
282
|
decode_primitive_type Type.parse(type_name), data
|
271
283
|
end
|
data/lib/web3/eth/contract.rb
CHANGED
@@ -34,7 +34,7 @@ module Web3
|
|
34
34
|
def initialize abi
|
35
35
|
@abi = abi
|
36
36
|
@name = abi['name']
|
37
|
-
@constant = !!abi['constant']
|
37
|
+
@constant = !!abi['constant'] || abi['stateMutability']=='view'
|
38
38
|
@input_types = abi['inputs'] ? abi['inputs'].map{|a| parse_component_type a } : []
|
39
39
|
@output_types = abi['outputs'].map{|a| parse_component_type a } if abi['outputs']
|
40
40
|
@signature = Abi::Utils.function_signature @name, @input_types
|
@@ -92,7 +92,7 @@ module Web3
|
|
92
92
|
def do_call web3_rpc, contract_address, args
|
93
93
|
data = '0x' + signature_hash + encode_hex(encode_abi(input_types, args) )
|
94
94
|
|
95
|
-
response = web3_rpc.
|
95
|
+
response = web3_rpc.eth.call [{ to: contract_address, data: data}, 'latest']
|
96
96
|
|
97
97
|
string_data = [remove_0x_head(response)].pack('H*')
|
98
98
|
return nil if string_data.empty?
|
data/lib/web3/eth/rpc.rb
CHANGED
@@ -53,7 +53,7 @@ module Web3
|
|
53
53
|
|
54
54
|
raise "Error code #{response.code} on request #{@uri.to_s} #{request.body}" unless response.kind_of? Net::HTTPOK
|
55
55
|
|
56
|
-
body = JSON.parse(response.body)
|
56
|
+
body = JSON.parse(response.body, max_nesting: 1500)
|
57
57
|
|
58
58
|
if body['result']
|
59
59
|
body['result']
|
data/lib/web3/eth/utility.rb
CHANGED
data/lib/web3/eth/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: web3-eth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.45
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- studnev
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rlp
|