eth 0.4.18 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/codeql.yml +2 -2
- data/.github/workflows/docs.yml +1 -1
- data/.github/workflows/{build.yml → spec.yml} +12 -7
- data/.gitignore +24 -24
- data/.gitmodules +3 -3
- data/AUTHORS.txt +16 -0
- data/Gemfile +12 -4
- data/LICENSE.txt +202 -22
- data/README.md +154 -84
- data/bin/console +4 -5
- data/bin/setup +4 -2
- data/eth.gemspec +24 -18
- data/lib/eth/abi/constant.rb +63 -0
- data/lib/eth/abi/type.rb +177 -0
- data/lib/eth/abi.rb +390 -0
- data/lib/eth/address.rb +50 -10
- data/lib/eth/chain.rb +148 -0
- data/lib/eth/eip712.rb +184 -0
- data/lib/eth/key/decrypter.rb +118 -85
- data/lib/eth/key/encrypter.rb +178 -99
- data/lib/eth/key.rb +129 -45
- data/lib/eth/signature.rb +160 -0
- data/lib/eth/tx/eip1559.rb +329 -0
- data/lib/eth/tx/eip2930.rb +321 -0
- data/lib/eth/tx/legacy.rb +293 -0
- data/lib/eth/tx.rb +279 -147
- data/lib/eth/unit.rb +49 -0
- data/lib/eth/util.rb +178 -0
- data/lib/eth/version.rb +18 -1
- data/lib/eth.rb +27 -67
- metadata +35 -84
- data/lib/eth/gas.rb +0 -7
- data/lib/eth/open_ssl.rb +0 -395
- data/lib/eth/secp256k1.rb +0 -5
- data/lib/eth/sedes.rb +0 -39
- data/lib/eth/utils.rb +0 -126
data/README.md
CHANGED
@@ -1,151 +1,221 @@
|
|
1
1
|
# Eth for Ruby
|
2
|
-
|
3
|
-
[![GitHub
|
2
|
+
|
3
|
+
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/q9f/eth.rb/Spec)](https://github.com/q9f/eth.rb/actions)
|
4
|
+
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/q9f/eth.rb)](https://github.com/q9f/eth.rb/releases)
|
4
5
|
[![Gem](https://img.shields.io/gem/v/eth)](https://rubygems.org/gems/eth)
|
5
6
|
[![Gem](https://img.shields.io/gem/dt/eth)](https://rubygems.org/gems/eth)
|
6
|
-
[![
|
7
|
-
[![
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
7
|
+
[![codecov](https://codecov.io/gh/q9f/eth.rb/branch/main/graph/badge.svg?token=IK7USBPBZY)](https://codecov.io/gh/q9f/eth.rb)
|
8
|
+
[![Maintainability](https://api.codeclimate.com/v1/badges/469e6f66425198ad7614/maintainability)](https://codeclimate.com/github/q9f/eth.rb/maintainability)
|
9
|
+
[![Yard Doc API](https://img.shields.io/badge/docs-API-blue)](https://q9f.github.io/eth.rb)
|
10
|
+
[![GitHub top language](https://img.shields.io/github/languages/top/q9f/eth.rb?color=red)](https://github.com/q9f/eth.rb/pulse)
|
11
|
+
[![GitHub](https://img.shields.io/github/license/q9f/eth.rb)](LICENSE)
|
12
|
+
|
13
|
+
A simple library to build and sign Ethereum transactions. Allows separation of key and node management. Sign transactions and handle keys anywhere you can run ruby, broadcast transactions through any node. Sign messages and recover signatures for authentication.
|
14
|
+
|
15
|
+
What you get:
|
16
|
+
- [x] Secp256k1 Key-Pairs and Encrypted Ethereum Key-Stores (JSON)
|
17
|
+
- [x] EIP-55 Checksummed Ethereum Addresses
|
18
|
+
- [x] EIP-155 Replay protection with Chain IDs (with presets)
|
19
|
+
- [x] EIP-191 Ethereum Signed Messages (with prefix and type)
|
20
|
+
- [x] EIP-712 Ethereum Signed Type Data
|
21
|
+
- [x] EIP-1559 Ethereum Type-2 Transactions (with priority fee and max gas fee)
|
22
|
+
- [x] EIP-2028 Call-data intrinsic gas cost estimates (plus access lists)
|
23
|
+
- [x] EIP-2718 Ethereum Transaction Envelopes (and types)
|
24
|
+
- [x] EIP-2930 Ethereum Type-1 Transactions (with access lists)
|
25
|
+
- [x] ABI-Encoder and Decoder (including type parser)
|
26
|
+
|
27
|
+
Soon (TM):
|
28
|
+
- [ ] RLP-Encoder and Decoder (including sedes)
|
29
|
+
- [ ] RPC-Client (HTTP) for Execution APIs and Consensus APIs
|
30
|
+
- [ ] Smart Contracts and Solidity Support
|
31
|
+
- [ ] EIP-1271 Smart-Contract Authentification
|
32
|
+
- [ ] HD-Wallets (BIP-32) and Mnemonics (BIP-39)
|
33
|
+
|
34
|
+
Contents:
|
35
|
+
- [1. Installation](#1-installation)
|
36
|
+
- [2. Usage](#2-usage)
|
37
|
+
- [2.1. Ethereum Keys and Addresses (EIP-55)](#21-ethereum-keys-and-addresses-eip-55)
|
38
|
+
- [2.2. Ethereum Signatures (EIP-191, EIP-712)](#22-ethereum-signatures-eip-191-eip-712)
|
39
|
+
- [2.3. Ethereum Chains (EIP-155)](#23-ethereum-chains-eip-155)
|
40
|
+
- [2.4. Ethereum Transactions (EIP-1559, EIP-2718, EIP-2930)](#24-ethereum-transactions-eip-1559-eip-2718-eip-2930)
|
41
|
+
- [2.5. Ethereum ABI Encoder and Decoder](#25-ethereum-abi-encoder-and-decoder)
|
42
|
+
- [3. Documentation](#3-documentation)
|
43
|
+
- [4. Testing](#4-testing)
|
44
|
+
- [5. Contributing](#5-contributing)
|
45
|
+
- [6. License and Credits](#6-license-and-credits)
|
46
|
+
|
47
|
+
## 1. Installation
|
12
48
|
|
13
49
|
Add this line to your application's Gemfile:
|
14
50
|
|
15
51
|
```ruby
|
16
|
-
gem
|
52
|
+
gem "eth"
|
17
53
|
```
|
18
54
|
|
19
|
-
And then execute:
|
20
|
-
|
21
|
-
$ bundle install
|
22
|
-
|
23
55
|
Or install it yourself as:
|
24
56
|
|
25
|
-
|
57
|
+
```shell
|
58
|
+
gem install eth
|
59
|
+
```
|
26
60
|
|
27
|
-
## Usage
|
61
|
+
## 2. Usage
|
28
62
|
|
29
|
-
### Keys
|
63
|
+
### 2.1. Ethereum Keys and Addresses (EIP-55)
|
30
64
|
|
31
|
-
|
65
|
+
Generate a random Secp256k1 key-pair.
|
32
66
|
|
33
67
|
```ruby
|
34
68
|
key = Eth::Key.new
|
35
|
-
|
36
|
-
key.public_hex
|
37
|
-
key.address # EIP55 checksummed address
|
69
|
+
# => #<Eth::Key:0x00005574a6ba80b8 @private_key=#<Secp256k1::PrivateKey:0x00005574a6b9a0a8 @data=")&\x86P\xB5\x16\xD9]\xFA;\x1F\xF6\xD9\xCF\xE3Vj/\xE2\x81\xC0\x9D\xE9\x05o!q\x82G\x9A\x10Q">, @public_key=#<Secp256k1::PublicKey:0x00005574a6b9bf98>>
|
38
70
|
```
|
39
71
|
|
40
|
-
|
72
|
+
Create an password-encrypted Ethereum key-store.
|
41
73
|
|
42
74
|
```ruby
|
43
|
-
|
75
|
+
my_key = Eth::Key.new priv: "30137644b564785d01420f8043f043d74dcca64008e57c59f8ce713a0005a54b"
|
76
|
+
key_store = Eth::Key::Encrypter.perform my_key, "secret-password-1337"
|
77
|
+
# => "{\"crypto\":{\"cipher\":\"aes-128-ctr\",\"cipherparams\":{\"iv\":\"7e5c0fe1e27f4ea61b0f4427dd63555f\"},\"ciphertext\":\"6353653bba494cdae6bcd510febc980cdc6f7b23cfbdf950d7a909a69625c8fd\",\"kdf\":\"pbkdf2\",\"kdfparams\":{\"c\":262144,\"dklen\":32,\"prf\":\"hmac-sha256\",\"salt\":\"cce96286f3c32267fc91f756365307fe6a4c83b6b2a73c69535f721fa407736c\"},\"mac\":\"3361ffd2b158a1d7bca5a5fd86a251ba3e9d80b602c867a2e0f47023a0e17a57\"},\"id\":\"642ee9fc-72e4-4d0a-902f-247c0b59bfda\",\"version\":3}"
|
78
|
+
restored_key = Eth::Key::Decrypter.perform key_store, "secret-password-1337"
|
79
|
+
# => "30137644b564785d01420f8043f043d74dcca64008e57c59f8ce713a0005a54b"
|
44
80
|
```
|
45
81
|
|
46
|
-
|
82
|
+
Manage Ethereum address objects adhering to EIP-55 checksum format.
|
47
83
|
|
48
84
|
```ruby
|
49
|
-
|
85
|
+
address = Eth::Address.new "0xd496b23d61f88a8c7758fca7560dcfac7b3b01f9"
|
86
|
+
# => #<Eth::Address:0x00005574a6bd4fc8 @address="0xd496b23d61f88a8c7758fca7560dcfac7b3b01f9">
|
87
|
+
address.valid?
|
88
|
+
# => true
|
89
|
+
address.checksummed # EIP 55
|
90
|
+
# => "0xD496b23D61F88A8C7758fca7560dCFac7b3b01F9"
|
50
91
|
```
|
51
92
|
|
52
|
-
|
53
|
-
|
54
|
-
```ruby
|
55
|
-
encrypted_key_info = Eth::Key.encrypt key, 'p455w0rD'
|
56
|
-
```
|
93
|
+
See `/spec` or [Documentation](https://q9f.github.io/eth.rb/) for more details about key-pairs, encrypting/decrypting key-stores with a secret, and checksummed addresses.
|
57
94
|
|
58
|
-
###
|
95
|
+
### 2.2. Ethereum Signatures (EIP-191, EIP-712)
|
59
96
|
|
60
|
-
|
97
|
+
Manage keypairs to sign messages in EIP-191 (`personal_sign`) format or typed data in EIP-712 (`sign_typed_data`) format.
|
61
98
|
|
62
99
|
```ruby
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
```
|
72
|
-
|
73
|
-
Or decode an encoded raw transaction:
|
74
|
-
|
75
|
-
```ruby
|
76
|
-
tx = Eth::Tx.decode hex
|
100
|
+
key = Eth::Key.new priv: "268be6f4a68c40f6862b7ac9aed8f701dc25a95ddb9a44d8b1f520b75f440a9a"
|
101
|
+
# => #<Eth::Key:0x00005574a699adc0 @private_key=#<Secp256k1::PrivateKey:0x00005574a6998200 @data="&\x8B\xE6\xF4\xA6\x8C@\xF6\x86+z\xC9\xAE\xD8\xF7\x01\xDC%\xA9]\xDB\x9AD\xD8\xB1\xF5 \xB7_D\n\x9A">, @public_key=#<Secp256k1::PublicKey:0x00005574a6998160>>
|
102
|
+
key.public_hex
|
103
|
+
# => "04b45200621c013a5fbab999ac33b0c836328a04afa0255ffbe6ea0f6fd97e187b02199886d942a9f50f7e279a2bc74c93b2afcbd7255489939f9b36a5eae5e281"
|
104
|
+
key.address.to_s
|
105
|
+
# => "0xD496b23D61F88A8C7758fca7560dCFac7b3b01F9"
|
106
|
+
key.personal_sign "Hello World!"
|
107
|
+
# => "ac6a59417d8688c8144f01a662384fa691636b48a071d4b7c13902bb87ca472b0bce1d7a758f39a5759ed5e937ce61f50dd1b83158371f8d0faeb9b7d81c194225"
|
77
108
|
```
|
78
109
|
|
79
|
-
|
110
|
+
Recover and verify personal signatures respecting EIPs 155, 191, and 712.
|
80
111
|
|
81
112
|
```ruby
|
82
|
-
|
113
|
+
address = Eth::Address.new "0xd496b23d61f88a8c7758fca7560dcfac7b3b01f9"
|
114
|
+
# => #<Eth::Address:0x00005574a6bd4fc8 @address="0xd496b23d61f88a8c7758fca7560dcfac7b3b01f9">
|
115
|
+
signature = "ac6a59417d8688c8144f01a662384fa691636b48a071d4b7c13902bb87ca472b0bce1d7a758f39a5759ed5e937ce61f50dd1b83158371f8d0faeb9b7d81c19422d"
|
116
|
+
# => "ac6a59417d8688c8144f01a662384fa691636b48a071d4b7c13902bb87ca472b0bce1d7a758f39a5759ed5e937ce61f50dd1b83158371f8d0faeb9b7d81c19422d"
|
117
|
+
recovered_key = Eth::Signature.personal_recover "Hello World!", signature, Eth::Chain::GOERLI
|
118
|
+
# => "04b45200621c013a5fbab999ac33b0c836328a04afa0255ffbe6ea0f6fd97e187b02199886d942a9f50f7e279a2bc74c93b2afcbd7255489939f9b36a5eae5e281"
|
119
|
+
Eth::Util.public_key_to_address(recovered_key).to_s
|
120
|
+
# => "0xD496b23D61F88A8C7758fca7560dCFac7b3b01F9"
|
121
|
+
Eth::Signature.verify "Hello World!", signature, address, Eth::Chain::GOERLI
|
122
|
+
# => true
|
83
123
|
```
|
84
124
|
|
85
|
-
|
125
|
+
See `/spec` or [Documentation](https://q9f.github.io/eth.rb/) for signing typed data as per EIP-712.
|
86
126
|
|
87
|
-
###
|
127
|
+
### 2.3. Ethereum Chains (EIP-155)
|
88
128
|
|
89
|
-
|
129
|
+
Manage Ethereum chain IDs for EIP-155 replay protection.
|
90
130
|
|
91
131
|
```ruby
|
92
|
-
Eth::
|
132
|
+
chain_id = Eth::Chain::OPTIMISM
|
133
|
+
# => 10
|
134
|
+
v = Eth::Chain.to_v 0, Eth::Chain::OPTIMISM
|
135
|
+
# => 55
|
136
|
+
recovery_id = Eth::Chain.to_recovery_id v, Eth::Chain::OPTIMISM
|
137
|
+
# => 0
|
138
|
+
chain_id = Eth::Chain.to_chain_id v
|
139
|
+
# => 10
|
93
140
|
```
|
94
141
|
|
95
|
-
|
142
|
+
### 2.4. Ethereum Transactions (EIP-1559, EIP-2718, EIP-2930)
|
96
143
|
|
97
|
-
|
98
|
-
Eth::Utils.format_address "0x4bc787699093f11316e819b5692be04a712c4e69" # => "0x4bc787699093f11316e819B5692be04A712C4E69"
|
99
|
-
```
|
100
|
-
|
101
|
-
### Personal Signatures
|
102
|
-
|
103
|
-
You can recover public keys and generate web3/metamask-compatible signatures:
|
144
|
+
Create an EIP-1559-conform transaction:
|
104
145
|
|
105
146
|
```ruby
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
147
|
+
payload = {
|
148
|
+
chain_id: Eth::Chain::GOERLI,
|
149
|
+
nonce: 5,
|
150
|
+
priority_fee: 3 * Eth::Unit::GWEI,
|
151
|
+
max_gas_fee: 69 * Eth::Unit::GWEI,
|
152
|
+
gas_limit: 230_420,
|
153
|
+
to: "0xCaA29806044A08E533963b2e573C1230A2cd9a2d",
|
154
|
+
value: 0.069423 * Eth::Unit::ETHER,
|
155
|
+
}
|
156
|
+
# => {:chain_id=>5, :nonce=>5, :priority_fee=>0.3e10, :max_gas_fee=>0.69e11, :gas_limit=>230420, :to=>"0xCaA29806044A08E533963b2e573C1230A2cd9a2d", :value=>0.69423e17}
|
157
|
+
tx = Eth::Tx.new payload
|
158
|
+
# => #<Eth::Tx::Eip1559:0x0000557e35fc5a68 @access_list=[], @amount=69423000000000000, @chain_id=5, @destination="CaA29806044A08E533963b2e573C1230A2cd9a2d", @gas_limit=230420, @max_fee_per_gas=69000000000, @max_priority_fee_per_gas=3000000000, @payload="", @sender="", @signature_r=0, @signature_s=0, @signature_y_parity=nil, @signer_nonce=5, @type=2>
|
159
|
+
my_key = Eth::Key.new priv: "30137644b564785d01420f8043f043d74dcca64008e57c59f8ce713a0005a54b"
|
160
|
+
# => #<Eth::Key:0x0000557e36243178 @private_key=#<Secp256k1::PrivateKey:0x0000557e36242d40 @data="0\x13vD\xB5dx]\x01B\x0F\x80C\xF0C\xD7M\xCC\xA6@\b\xE5|Y\xF8\xCEq:\x00\x05\xA5K">, @public_key=#<Secp256k1::PublicKey:0x0000557e36242cf0>>
|
161
|
+
tx.sign my_key
|
162
|
+
# => "cba302c0ebf8d0205a78ae97f560419b407e32e2426f416abc95a9bfc9dac09c"
|
163
|
+
tx.hex
|
164
|
+
# => "02f873050584b2d05e00851010b872008303841494caa29806044a08e533963b2e573c1230a2cd9a2d87f6a3d9c63df00080c080a03aa187d10b138d3e0155729adb961cd89e10f988ba2d19d6869770b9e5a23d10a04d40864600136ae214916043c7d63b849c98db757e95c86983a036982816e1af"
|
113
165
|
```
|
114
166
|
|
115
|
-
|
167
|
+
This gem also supports access lists and ABI-encoded data payloads. See `/spec` or [Documentation](https://q9f.github.io/eth.rb/) for more details about the various supported transaction types (legacy, type-1, type-2), payload parameters, and how to estimate intrinsic gas costs.
|
116
168
|
|
117
|
-
|
169
|
+
### 2.5. Ethereum ABI Encoder and Decoder
|
170
|
+
|
171
|
+
Encode and decode Ethereum application binary interface data (ABI).
|
118
172
|
|
119
173
|
```ruby
|
120
|
-
Eth.
|
121
|
-
|
122
|
-
|
174
|
+
Eth::Util.bin_to_hex Eth::Abi.encode(["string", "address"], ["Hello, Bob!", "0xd496b23d61f88a8c7758fca7560dcfac7b3b01f9"])
|
175
|
+
# => "0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000d496b23d61f88a8c7758fca7560dcfac7b3b01f9000000000000000000000000000000000000000000000000000000000000000b48656c6c6f2c20426f6221000000000000000000000000000000000000000000"
|
176
|
+
Eth::Abi.decode(["string", "address"], "0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000d496b23d61f88a8c7758fca7560dcfac7b3b01f9000000000000000000000000000000000000000000000000000000000000000b48656c6c6f2c20426f6221000000000000000000000000000000000000000000")
|
177
|
+
# => ["Hello, Bob!", "0xd496b23d61f88a8c7758fca7560dcfac7b3b01f9"]
|
123
178
|
```
|
124
179
|
|
125
|
-
##
|
126
|
-
|
127
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/se3000/ruby-eth. Tests are encouraged.
|
180
|
+
## 3. Documentation
|
128
181
|
|
129
|
-
|
182
|
+
The documentation can be found at: https://q9f.github.io/eth.rb
|
130
183
|
|
131
|
-
|
184
|
+
For any specific version, docs can be generated by `yard`:
|
132
185
|
|
133
186
|
```shell
|
134
|
-
|
187
|
+
gem install bundler rdoc yard
|
188
|
+
git checkout v0.5.0
|
189
|
+
yard doc
|
135
190
|
```
|
136
191
|
|
137
|
-
|
192
|
+
The goal is to have 100% API documentation available.
|
193
|
+
|
194
|
+
## 4. Testing
|
195
|
+
|
196
|
+
To run tests, simply use `rspec`. Note, that the Ethereum tests fixtures are required.
|
138
197
|
|
139
198
|
```shell
|
199
|
+
git submodule update --init --recursive
|
200
|
+
bundle install
|
140
201
|
rspec
|
141
202
|
```
|
142
203
|
|
143
|
-
|
204
|
+
The goal is to have 100% specification coverage for all code inside this gem.
|
205
|
+
|
206
|
+
## 5. Contributing
|
207
|
+
|
208
|
+
Pull requests are welcome! To contribute, please consider the following:
|
209
|
+
* Code should be fully documented. Run `yard doc` and make sure it does not yield any warnings or undocumented sets.
|
210
|
+
* Code should be fully covered by tests. Run `rspec` to make sure all tests pass. The CI has an integration that will assis you to identify uncovered lines of code and get coverage up to 100%.
|
211
|
+
* Code should be formatted properly. Try to eliminate the most common issues such as trailing white-spaces or duplicate new-lines. Usage of the `rufo` gem is recommended.
|
212
|
+
* Submit pull requests, questions, or issues to Github: https://github.com/q9f/eth.rb
|
144
213
|
|
145
|
-
|
214
|
+
## 6. License and Credits
|
215
|
+
The `eth` gem is licensed under the conditions of [Apache 2.0](./LICENSE.txt). Please see [AUTHORS](./AUTHORS.txt) for contributors and copyright notices.
|
146
216
|
|
147
|
-
|
217
|
+
This gem is a complete rewrite of the old `eth` gem by Steve Ellis.
|
218
|
+
* https://github.com/se3000/ruby-eth/ (MIT)
|
148
219
|
|
149
|
-
|
150
|
-
*
|
151
|
-
* Support signing with [libsecp256k1](https://github.com/bitcoin-core/secp256k1).
|
220
|
+
It also contains a revised version the ABI gem by Jan Xie and Zhang Yaning.
|
221
|
+
* https://github.com/cryptape/ruby-ethereum-abi (MIT)
|
data/bin/console
CHANGED
@@ -1,10 +1,9 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
|
-
|
4
|
-
|
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.
|
3
|
+
# use the local version of the code instead of a globally installed gem
|
4
|
+
$LOAD_PATH.unshift File.expand_path("../../lib", __FILE__)
|
8
5
|
|
6
|
+
require "eth"
|
9
7
|
require "pry"
|
8
|
+
|
10
9
|
Pry.start
|
data/bin/setup
CHANGED
data/eth.gemspec
CHANGED
@@ -12,16 +12,16 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.authors = ["Steve Ellis", "Afri Schoedon"]
|
13
13
|
spec.email = ["email@steveell.is", "ruby@q9f.cc"]
|
14
14
|
|
15
|
-
spec.summary = %q{
|
16
|
-
spec.description = %q{Library to
|
17
|
-
spec.homepage = "https://github.com/
|
18
|
-
spec.license = "
|
15
|
+
spec.summary = %q{Ruby Ethereum library.}
|
16
|
+
spec.description = %q{Library to handle Ethereum accounts, messages, and transactions.}
|
17
|
+
spec.homepage = "https://github.com/q9f/eth.rb"
|
18
|
+
spec.license = "Apache-2.0"
|
19
19
|
|
20
20
|
spec.metadata = {
|
21
|
-
"homepage_uri" => "https://github.com/
|
22
|
-
"source_code_uri" => "https://github.com/
|
23
|
-
"github_repo" => "https://github.com/
|
24
|
-
"bug_tracker_uri" => "https://github.com/
|
21
|
+
"homepage_uri" => "https://github.com/q9f/eth.rb",
|
22
|
+
"source_code_uri" => "https://github.com/q9f/eth.rb",
|
23
|
+
"github_repo" => "https://github.com/q9f/eth.rb",
|
24
|
+
"bug_tracker_uri" => "https://github.com/q9f/eth.rb/issues",
|
25
25
|
}.freeze
|
26
26
|
|
27
27
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
@@ -30,18 +30,24 @@ Gem::Specification.new do |spec|
|
|
30
30
|
spec.require_paths = ["lib"]
|
31
31
|
spec.test_files = spec.files.grep %r{^(test|spec|features)/}
|
32
32
|
|
33
|
+
spec.platform = Gem::Platform::RUBY
|
34
|
+
spec.required_ruby_version = ">= 2.6", "< 4.0"
|
35
|
+
|
36
|
+
# keccak for hashing everything in ethereum
|
33
37
|
spec.add_dependency "keccak", "~> 1.3"
|
34
|
-
|
35
|
-
|
36
|
-
spec.add_dependency "
|
38
|
+
|
39
|
+
# konstructor gem for overloading constructors
|
40
|
+
spec.add_dependency "konstructor", "~> 1.0"
|
41
|
+
|
42
|
+
# rbsecp256k1 for key-pairs and signatures
|
43
|
+
spec.add_dependency "rbsecp256k1", "~> 5.1"
|
44
|
+
|
45
|
+
# rlp for transaction encoding
|
37
46
|
spec.add_dependency "rlp", "~> 0.7"
|
38
|
-
spec.add_dependency "scrypt", "~> 3.0"
|
39
47
|
|
40
|
-
|
41
|
-
spec.
|
48
|
+
# openssl for encrypted key derivation
|
49
|
+
spec.add_dependency "openssl", "~> 3.0"
|
42
50
|
|
43
|
-
|
44
|
-
spec.
|
45
|
-
spec.add_development_dependency "rake", "~> 13.0"
|
46
|
-
spec.add_development_dependency "rspec", "~> 3.10"
|
51
|
+
# scrypt for encrypted key derivation
|
52
|
+
spec.add_dependency "scrypt", "~> 3.0"
|
47
53
|
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# Copyright (c) 2016-2022 The Ruby-Eth Contributors
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
# -*- encoding : ascii-8bit -*-
|
16
|
+
|
17
|
+
# Provides the `Eth` module.
|
18
|
+
module Eth
|
19
|
+
|
20
|
+
# Provides a Ruby implementation of the Ethereum Applicatoin Binary Interface (ABI).
|
21
|
+
module Abi
|
22
|
+
|
23
|
+
# Provides commonly used constants, such as zero bytes or zero keys.
|
24
|
+
module Constant
|
25
|
+
|
26
|
+
# The empty byte is defined as "".
|
27
|
+
BYTE_EMPTY = "".freeze
|
28
|
+
|
29
|
+
# The zero byte is 0x00.
|
30
|
+
BYTE_ZERO = "\x00".freeze
|
31
|
+
|
32
|
+
# The byte one is 0x01.
|
33
|
+
BYTE_ONE = "\x01".freeze
|
34
|
+
|
35
|
+
# The size of a 32-bit number.
|
36
|
+
TT32 = (2 ** 32).freeze
|
37
|
+
|
38
|
+
# The size of a 256-bit number.
|
39
|
+
TT256 = (2 ** 256).freeze
|
40
|
+
|
41
|
+
# The maximum possible value of an UInt256.
|
42
|
+
UINT_MAX = (2 ** 256 - 1).freeze
|
43
|
+
|
44
|
+
# The minimum possible value of an UInt256.
|
45
|
+
UINT_MIN = 0.freeze
|
46
|
+
|
47
|
+
# The maximum possible value of an Int256.
|
48
|
+
INT_MAX = (2 ** 255 - 1).freeze
|
49
|
+
|
50
|
+
# The minimum possible value of an Int256.
|
51
|
+
INT_MIN = (-2 ** 255).freeze
|
52
|
+
|
53
|
+
# A hash containing only zeros.
|
54
|
+
HASH_ZERO = ("\x00" * 32).freeze
|
55
|
+
|
56
|
+
# A private key containing only zeros.
|
57
|
+
PRIVKEY_ZERO = ("\x00" * 32).freeze
|
58
|
+
|
59
|
+
# A private key containing only zeros (hex).
|
60
|
+
PRIVKEY_ZERO_HEX = ("0" * 64).freeze
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
data/lib/eth/abi/type.rb
ADDED
@@ -0,0 +1,177 @@
|
|
1
|
+
# Copyright (c) 2016-2022 The Ruby-Eth Contributors
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
# -*- encoding : ascii-8bit -*-
|
16
|
+
|
17
|
+
# Provides the `Eth` module.
|
18
|
+
module Eth
|
19
|
+
|
20
|
+
# Provides a Ruby implementation of the Ethereum Applicatoin Binary Interface (ABI).
|
21
|
+
module Abi
|
22
|
+
|
23
|
+
# Provides a class to handle and parse common ABI types.
|
24
|
+
class Type
|
25
|
+
|
26
|
+
# Provides a specific parser error if type cannot be determined.
|
27
|
+
class ParseError < StandardError; end
|
28
|
+
|
29
|
+
# The base attribute, e.g., `string` or `bytes`
|
30
|
+
attr :base_type
|
31
|
+
|
32
|
+
# The sub-type attribute, e.g., `256` as size of an uint256.
|
33
|
+
attr :sub_type
|
34
|
+
|
35
|
+
# The dimension attribute, e.g., `[10]` for an array of size 10.
|
36
|
+
attr :dimensions
|
37
|
+
|
38
|
+
# Create a new Type object for base types, sub types, and dimensions.
|
39
|
+
# Should use the `Type.parse` parser.
|
40
|
+
#
|
41
|
+
# @param base_type [String] the base-type attribute.
|
42
|
+
# @param sub_type [String] the sub-type attribute.
|
43
|
+
# @param dimensions [Array] the dimension attribute.
|
44
|
+
# @return [Eth::Abi::Type] an ABI type object.
|
45
|
+
def initialize(base_type, sub_type, dimensions)
|
46
|
+
sub_type = sub_type.to_s
|
47
|
+
@base_type = base_type
|
48
|
+
@sub_type = sub_type
|
49
|
+
@dimensions = dimensions
|
50
|
+
end
|
51
|
+
|
52
|
+
# Converts the self.parse method into a constructor.
|
53
|
+
konstructor :parse
|
54
|
+
|
55
|
+
# Attempts to parse a string containing a common Solidity type.
|
56
|
+
# Creates a new Type upon success (using konstructor).
|
57
|
+
#
|
58
|
+
# @param type [String] a common Solidity type.
|
59
|
+
# @return [Eth::Abi::Type] a parsed Type object.
|
60
|
+
# @raise [ParseError] if it fails to parse the type.
|
61
|
+
def parse(type)
|
62
|
+
_, base_type, sub_type, dimension = /([a-z]*)([0-9]*x?[0-9]*)((\[[0-9]*\])*)/.match(type).to_a
|
63
|
+
|
64
|
+
# type dimension can only be numeric
|
65
|
+
dims = dimension.scan(/\[[0-9]*\]/)
|
66
|
+
raise ParseError, "Unknown characters found in array declaration" if dims.join != dimension
|
67
|
+
|
68
|
+
# enforce base types
|
69
|
+
validate_base_type base_type, sub_type
|
70
|
+
|
71
|
+
# return a new Type (using konstructor)
|
72
|
+
sub_type = sub_type.to_s
|
73
|
+
@base_type = base_type
|
74
|
+
@sub_type = sub_type
|
75
|
+
@dimensions = dims.map { |x| x[1...-1].to_i }
|
76
|
+
end
|
77
|
+
|
78
|
+
# Creata new uint256 type used for size.
|
79
|
+
#
|
80
|
+
# @return [Eth::Abi::Type] a uint256 size type.
|
81
|
+
def self.size_type
|
82
|
+
@size_type ||= new("uint", 256, [])
|
83
|
+
end
|
84
|
+
|
85
|
+
# Compares two types for their attributes.
|
86
|
+
#
|
87
|
+
# @param another_type [Eth::Abi::Type] another type to be compared.
|
88
|
+
# @return [Bool] true if all attributes match.
|
89
|
+
def ==(another_type)
|
90
|
+
base_type == another_type.base_type and
|
91
|
+
sub_type == another_type.sub_type and
|
92
|
+
dimensions == another_type.dimensions
|
93
|
+
end
|
94
|
+
|
95
|
+
# Computes the size of a type if possible.
|
96
|
+
#
|
97
|
+
# @return [Integer] the size of the type; or nil if not available.
|
98
|
+
def size
|
99
|
+
s = nil
|
100
|
+
if dimensions.empty?
|
101
|
+
unless ["string", "bytes"].include?(base_type) and sub_type.empty?
|
102
|
+
s = 32
|
103
|
+
end
|
104
|
+
else
|
105
|
+
unless dimensions.last == 0
|
106
|
+
unless nested_sub.is_dynamic?
|
107
|
+
s = dimensions.last * nested_sub.size
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end
|
111
|
+
@size ||= s
|
112
|
+
end
|
113
|
+
|
114
|
+
# Helper to determine whether array is of dynamic size.
|
115
|
+
#
|
116
|
+
# @return [Bool] true if array is of dynamic size.
|
117
|
+
def is_dynamic?
|
118
|
+
size.nil?
|
119
|
+
end
|
120
|
+
|
121
|
+
# Types can have nested sub-types in arrays.
|
122
|
+
#
|
123
|
+
# @return [Eth::Abi::Type] nested sub-type.
|
124
|
+
def nested_sub
|
125
|
+
@nested_sub ||= self.class.new(base_type, sub_type, dimensions[0...-1])
|
126
|
+
end
|
127
|
+
|
128
|
+
private
|
129
|
+
|
130
|
+
def validate_base_type(base_type, sub_type)
|
131
|
+
case base_type
|
132
|
+
when "string"
|
133
|
+
|
134
|
+
# string can not have any suffix
|
135
|
+
raise ParseError, "String type must have no suffix or numerical suffix" unless sub_type.empty?
|
136
|
+
when "bytes"
|
137
|
+
|
138
|
+
# bytes can be no longer than 32 bytes
|
139
|
+
raise ParseError, "Maximum 32 bytes for fixed-length string or bytes" unless sub_type.empty? || sub_type.to_i <= 32
|
140
|
+
when "uint", "int"
|
141
|
+
|
142
|
+
# integers must have a numerical suffix
|
143
|
+
raise ParseError, "Integer type must have numerical suffix" unless sub_type =~ /\A[0-9]+\z/
|
144
|
+
|
145
|
+
# integer size must be valid
|
146
|
+
size = sub_type.to_i
|
147
|
+
raise ParseError, "Integer size out of bounds" unless size >= 8 && size <= 256
|
148
|
+
raise ParseError, "Integer size must be multiple of 8" unless size % 8 == 0
|
149
|
+
when "ureal", "real", "fixed", "ufixed"
|
150
|
+
|
151
|
+
# floats must have valid dimensional suffix
|
152
|
+
raise ParseError, "Real type must have suffix of form <high>x<low>, e.g. 128x128" unless sub_type =~ /\A[0-9]+x[0-9]+\z/
|
153
|
+
high, low = sub_type.split("x").map(&:to_i)
|
154
|
+
total = high + low
|
155
|
+
raise ParseError, "Real size out of bounds (max 32 bytes)" unless total >= 8 && total <= 256
|
156
|
+
raise ParseError, "Real high/low sizes must be multiples of 8" unless high % 8 == 0 && low % 8 == 0
|
157
|
+
when "hash"
|
158
|
+
|
159
|
+
# hashs must have numerical suffix
|
160
|
+
raise ParseError, "Hash type must have numerical suffix" unless sub_type =~ /\A[0-9]+\z/
|
161
|
+
when "address"
|
162
|
+
|
163
|
+
# addresses cannot have any suffix
|
164
|
+
raise ParseError, "Address cannot have suffix" unless sub_type.empty?
|
165
|
+
when "bool"
|
166
|
+
|
167
|
+
# booleans cannot have any suffix
|
168
|
+
raise ParseError, "Bool cannot have suffix" unless sub_type.empty?
|
169
|
+
else
|
170
|
+
|
171
|
+
# we cannot parse arbitrary types such as 'decimal' or 'hex'
|
172
|
+
raise ParseError, "Unknown base type"
|
173
|
+
end
|
174
|
+
end
|
175
|
+
end
|
176
|
+
end
|
177
|
+
end
|