ethereum 0.3.60 → 0.3.85
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/README.md +1 -1
- data/lib/ethereum.rb +2 -0
- data/lib/ethereum/client.rb +18 -0
- data/lib/ethereum/http_client.rb +40 -0
- data/lib/ethereum/ipc_client.rb +1 -12
- data/lib/ethereum/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df055ed477097c278f02faac6e0d0202cce2fd14
|
4
|
+
data.tar.gz: 575ec4d1544985f04215a3240e8d7f45e40cc2d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b9dd2743160ec90a0eea5c7abe76531416bb93c59022e543cc49427eb8abf1ca64ec3a15ea61bd32b8421ea57ad15a84ac0d097e35526076d030d70ad56655d6
|
7
|
+
data.tar.gz: 8d5c7a02f2476e79d7414217a49701e722c56f34fc34c7ac9d1d142203f59b61b5b9cf687b49dd769bf88f7c110c35357f39a6b5fd47c6ab0d390d2092977a61
|
data/README.md
CHANGED
@@ -6,6 +6,7 @@ A simple library for Ethereum.
|
|
6
6
|
|
7
7
|
* Pure Ruby implementation
|
8
8
|
* IPC Client with batch calls support
|
9
|
+
* HTTP Client with batch calls support
|
9
10
|
* Compile and deploy Solidity contracts
|
10
11
|
* Expose deployed contracts as Ruby classes
|
11
12
|
* Test solidity contracts with a Ruby testing framework of your choice
|
@@ -105,7 +106,6 @@ simple_name_registry_instance.at("0x734533083b5fc0cd14b7cb8c8eb6ed0c9bd184d3")
|
|
105
106
|
|
106
107
|
## Roadmap
|
107
108
|
|
108
|
-
* Add JSON RPC Client support
|
109
109
|
* Add Windows IPC Client (named pipes)
|
110
110
|
* Add support for creating and sending of raw transactions
|
111
111
|
* Offline account creation
|
data/lib/ethereum.rb
CHANGED
@@ -4,7 +4,9 @@ require 'active_support/core_ext'
|
|
4
4
|
require 'sha3-pure-ruby'
|
5
5
|
|
6
6
|
module Ethereum
|
7
|
+
require 'ethereum/client'
|
7
8
|
require 'ethereum/ipc_client'
|
9
|
+
require 'ethereum/http_client'
|
8
10
|
require 'ethereum/initializer'
|
9
11
|
require 'ethereum/contract'
|
10
12
|
require 'ethereum/function'
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module Ethereum
|
2
|
+
class Client
|
3
|
+
|
4
|
+
RPC_COMMANDS = %w(eth_accounts eth_blockNumber eth_getBalance eth_protocolVersion eth_coinbase eth_mining eth_gasPrice eth_getStorage eth_storageAt eth_getStorageAt eth_getTransactionCount eth_getBlockTransactionCountByHash eth_getBlockTransactionCountByNumber eth_getUncleCountByBlockHash eth_getUncleCountByBlockNumber eth_getData eth_getCode eth_sign eth_sendRawTransaction eth_sendTransaction eth_transact eth_estimateGas eth_call eth_flush eth_getBlockByHash eth_getBlockByNumber eth_getTransactionByHash eth_getTransactionByBlockNumberAndIndex eth_getTransactionByBlockHashAndIndex eth_getUncleByBlockHashAndIndex eth_getUncleByBlockNumberAndIndex eth_getCompilers eth_compileSolidity eth_newFilter eth_newBlockFilter eth_newPendingTransactionFilter eth_uninstallFilter eth_getFilterChanges eth_getFilterLogs eth_getLogs eth_hashrate eth_getWork eth_submitWork eth_resend eth_pendingTransactions eth_getTransactionReceipt)
|
5
|
+
|
6
|
+
def get_id
|
7
|
+
@id = @id + 1
|
8
|
+
return @id
|
9
|
+
end
|
10
|
+
|
11
|
+
def clear_batch
|
12
|
+
@batch = []
|
13
|
+
end
|
14
|
+
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
|
@@ -0,0 +1,40 @@
|
|
1
|
+
require 'pry'
|
2
|
+
module Ethereum
|
3
|
+
class HttpClient < Client
|
4
|
+
attr_accessor :command, :id, :host, :port, :batch, :converted_transactions, :uri
|
5
|
+
|
6
|
+
def initialize(host, port)
|
7
|
+
@host = host
|
8
|
+
@port = port
|
9
|
+
@id = 1
|
10
|
+
@uri = URI("http://#{@host}:#{@port}")
|
11
|
+
@batch = []
|
12
|
+
end
|
13
|
+
|
14
|
+
RPC_COMMANDS.each do |rpc_command|
|
15
|
+
method_name = "#{rpc_command.split("_")[1].underscore}"
|
16
|
+
define_method method_name do |*args|
|
17
|
+
command = rpc_command
|
18
|
+
payload = {jsonrpc: "2.0", method: command, params: args, id: get_id}
|
19
|
+
http = Net::HTTP.new(@host, @port)
|
20
|
+
header = {'Content-Type' => 'application/json'}
|
21
|
+
request = Net::HTTP::Post.new(uri, header)
|
22
|
+
request.body = payload.to_json
|
23
|
+
response = http.request(request)
|
24
|
+
return JSON.parse(response.body)
|
25
|
+
end
|
26
|
+
|
27
|
+
define_method "#{method_name}_batch" do |*args|
|
28
|
+
command = rpc_command
|
29
|
+
payload = {jsonrpc: "2.0", method: command, params: args, id: get_id}
|
30
|
+
@batch << payload.to_json
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def send_batch
|
35
|
+
|
36
|
+
end
|
37
|
+
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
data/lib/ethereum/ipc_client.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
require 'socket'
|
2
2
|
module Ethereum
|
3
|
-
class IpcClient
|
3
|
+
class IpcClient < Client
|
4
4
|
attr_accessor :command, :id, :ipcpath, :batch, :converted_transactions
|
5
5
|
|
6
6
|
def initialize(ipcpath = "#{ENV['HOME']}/.ethereum/geth.ipc")
|
@@ -9,13 +9,6 @@ module Ethereum
|
|
9
9
|
@batch = []
|
10
10
|
end
|
11
11
|
|
12
|
-
def get_id
|
13
|
-
@id = @id + 1
|
14
|
-
return @id
|
15
|
-
end
|
16
|
-
|
17
|
-
RPC_COMMANDS = %w(eth_accounts eth_blockNumber eth_getBalance eth_protocolVersion eth_coinbase eth_mining eth_gasPrice eth_getStorage eth_storageAt eth_getStorageAt eth_getTransactionCount eth_getBlockTransactionCountByHash eth_getBlockTransactionCountByNumber eth_getUncleCountByBlockHash eth_getUncleCountByBlockNumber eth_getData eth_getCode eth_sign eth_sendRawTransaction eth_sendTransaction eth_transact eth_estimateGas eth_call eth_flush eth_getBlockByHash eth_getBlockByNumber eth_getTransactionByHash eth_getTransactionByBlockNumberAndIndex eth_getTransactionByBlockHashAndIndex eth_getUncleByBlockHashAndIndex eth_getUncleByBlockNumberAndIndex eth_getCompilers eth_compileSolidity eth_newFilter eth_newBlockFilter eth_newPendingTransactionFilter eth_uninstallFilter eth_getFilterChanges eth_getFilterLogs eth_getLogs eth_hashrate eth_getWork eth_submitWork eth_resend eth_pendingTransactions eth_getTransactionReceipt)
|
18
|
-
|
19
12
|
RPC_COMMANDS.each do |rpc_command|
|
20
13
|
method_name = "#{rpc_command.split("_")[1].underscore}"
|
21
14
|
define_method method_name do |*args|
|
@@ -52,10 +45,6 @@ module Ethereum
|
|
52
45
|
return collection
|
53
46
|
end
|
54
47
|
|
55
|
-
def clear_batch
|
56
|
-
@batch = []
|
57
|
-
end
|
58
|
-
|
59
48
|
end
|
60
49
|
end
|
61
50
|
|
data/lib/ethereum/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ethereum
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.85
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DigixGlobal Pte Ltd (https://dgx.io)
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-10-
|
11
|
+
date: 2015-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -116,12 +116,14 @@ files:
|
|
116
116
|
- bin/setup
|
117
117
|
- ethereum.gemspec
|
118
118
|
- lib/ethereum.rb
|
119
|
+
- lib/ethereum/client.rb
|
119
120
|
- lib/ethereum/contract.rb
|
120
121
|
- lib/ethereum/deployment.rb
|
121
122
|
- lib/ethereum/formatter.rb
|
122
123
|
- lib/ethereum/function.rb
|
123
124
|
- lib/ethereum/function_input.rb
|
124
125
|
- lib/ethereum/function_output.rb
|
126
|
+
- lib/ethereum/http_client.rb
|
125
127
|
- lib/ethereum/initializer.rb
|
126
128
|
- lib/ethereum/ipc_client.rb
|
127
129
|
- lib/ethereum/transaction.rb
|