eth 0.5.14 → 0.5.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/CHANGELOG.md +33 -0
- data/CODE_OF_CONDUCT.md +3 -5
- data/Gemfile +3 -3
- data/README.md +5 -3
- data/SECURITY.md +2 -2
- data/eth.gemspec +1 -1
- data/lib/eth/abi/decoder.rb +16 -5
- data/lib/eth/abi/encoder.rb +10 -21
- data/lib/eth/abi/function.rb +124 -0
- data/lib/eth/abi/type.rb +66 -5
- data/lib/eth/abi.rb +2 -0
- data/lib/eth/chain.rb +3 -0
- data/lib/eth/client.rb +37 -36
- data/lib/eth/contract/error.rb +62 -0
- data/lib/eth/contract/function.rb +21 -0
- data/lib/eth/contract/function_output.rb +11 -3
- data/lib/eth/contract.rb +55 -4
- data/lib/eth/eip712.rb +48 -13
- data/lib/eth/key.rb +1 -1
- data/lib/eth/tx/eip1559.rb +32 -7
- data/lib/eth/tx/eip2930.rb +31 -6
- data/lib/eth/tx/eip4844.rb +389 -0
- data/lib/eth/tx/eip7702.rb +34 -9
- data/lib/eth/tx/legacy.rb +30 -6
- data/lib/eth/tx.rb +42 -4
- data/lib/eth/util.rb +19 -7
- data/lib/eth/version.rb +1 -1
- metadata +10 -16
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steve Ellis
|
8
8
|
- Afri Schoedon
|
9
|
-
autorequire:
|
10
9
|
bindir: exe
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: bigdecimal
|
@@ -85,22 +84,16 @@ dependencies:
|
|
85
84
|
name: openssl
|
86
85
|
requirement: !ruby/object:Gem::Requirement
|
87
86
|
requirements:
|
88
|
-
- - "
|
89
|
-
- !ruby/object:Gem::Version
|
90
|
-
version: '2.2'
|
91
|
-
- - "<"
|
87
|
+
- - "~>"
|
92
88
|
- !ruby/object:Gem::Version
|
93
|
-
version: '
|
89
|
+
version: '3.3'
|
94
90
|
type: :runtime
|
95
91
|
prerelease: false
|
96
92
|
version_requirements: !ruby/object:Gem::Requirement
|
97
93
|
requirements:
|
98
|
-
- - "
|
99
|
-
- !ruby/object:Gem::Version
|
100
|
-
version: '2.2'
|
101
|
-
- - "<"
|
94
|
+
- - "~>"
|
102
95
|
- !ruby/object:Gem::Version
|
103
|
-
version: '
|
96
|
+
version: '3.3'
|
104
97
|
- !ruby/object:Gem::Dependency
|
105
98
|
name: scrypt
|
106
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -151,6 +144,7 @@ files:
|
|
151
144
|
- lib/eth/abi/decoder.rb
|
152
145
|
- lib/eth/abi/encoder.rb
|
153
146
|
- lib/eth/abi/event.rb
|
147
|
+
- lib/eth/abi/function.rb
|
154
148
|
- lib/eth/abi/packed/encoder.rb
|
155
149
|
- lib/eth/abi/type.rb
|
156
150
|
- lib/eth/address.rb
|
@@ -161,6 +155,7 @@ files:
|
|
161
155
|
- lib/eth/client/ipc.rb
|
162
156
|
- lib/eth/constant.rb
|
163
157
|
- lib/eth/contract.rb
|
158
|
+
- lib/eth/contract/error.rb
|
164
159
|
- lib/eth/contract/event.rb
|
165
160
|
- lib/eth/contract/function.rb
|
166
161
|
- lib/eth/contract/function_input.rb
|
@@ -185,6 +180,7 @@ files:
|
|
185
180
|
- lib/eth/tx.rb
|
186
181
|
- lib/eth/tx/eip1559.rb
|
187
182
|
- lib/eth/tx/eip2930.rb
|
183
|
+
- lib/eth/tx/eip4844.rb
|
188
184
|
- lib/eth/tx/eip7702.rb
|
189
185
|
- lib/eth/tx/legacy.rb
|
190
186
|
- lib/eth/unit.rb
|
@@ -199,7 +195,6 @@ metadata:
|
|
199
195
|
documentation_uri: https://q9f.github.io/eth.rb/
|
200
196
|
github_repo: https://github.com/q9f/eth.rb
|
201
197
|
source_code_uri: https://github.com/q9f/eth.rb
|
202
|
-
post_install_message:
|
203
198
|
rdoc_options: []
|
204
199
|
require_paths:
|
205
200
|
- lib
|
@@ -218,8 +213,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
218
213
|
- !ruby/object:Gem::Version
|
219
214
|
version: '0'
|
220
215
|
requirements: []
|
221
|
-
rubygems_version: 3.
|
222
|
-
signing_key:
|
216
|
+
rubygems_version: 3.6.7
|
223
217
|
specification_version: 4
|
224
218
|
summary: Ruby Ethereum library.
|
225
219
|
test_files: []
|