ethereum 0.3.47 → 0.3.50

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 619380b40d2004b955dc3053487b95bab5d7ad86
4
- data.tar.gz: 97ffe5537e9127401fae43449c22caaf0c7340bc
3
+ metadata.gz: ff034ba8084a39b7005db15b28fe10b3897f1b53
4
+ data.tar.gz: 305305a60910eb69350dbbc0f6707f1036c0b45c
5
5
  SHA512:
6
- metadata.gz: ca884f158d3fd4463d1b066bae6fb208988d395a6c89378bfd11153c6418bfe62805927e69d3e6c799b9604a216e3aee08a60e67ee53723c8bdd299f995e7024
7
- data.tar.gz: 983f6e6cb8b8f16c0e9839435aa4aa82ac09943cee4e9c5cc7ae67ce4b3b1a8e87fb23e585bd5b99492190347246dec2291fe696b0e5ef112518ba428bde7bbb
6
+ metadata.gz: 492214d7ac38b5271abcbdf048f5caa362ffeb40262fc1dae77fda66e3e520791f572140c51fed474381258565a1ae336ec5882da649ee1ace0faa8ee471fa60
7
+ data.tar.gz: 892c88496a0538676852c8cab45864769502b7bb341e673f4b7af5fcc55c7a4d55a38528beb81a430c9d18966136a87837c3530ce5774eed3e1c0b905846b0df
data/README.md CHANGED
@@ -61,11 +61,34 @@ simple_name_registry_instance.deploy_and_wait
61
61
 
62
62
  ### Transacting and Calling Solidity Functions
63
63
 
64
- Solidity functions are exposed as transact_<underscore_function_name>(params) (or transact_and_wait_<underscore_function_name>(params)) and call_<underscore_function_name>(params) e.g.:
64
+ Solidity functions are exposed using the following conventions:
65
+
66
+ ```
67
+ transact_[function_name](params)
68
+ transact_and_wait_[function_name](params)
69
+ call_[function_name](params)
70
+ ```
71
+
72
+ **Example Contract in Solidity**
73
+ ```
74
+ contract SimpleNameRegistry {
75
+
76
+ mapping (address => bool) public myMapping;
77
+
78
+ function register(address _a, bytes32 _b) {
79
+ }
80
+
81
+ function getSomeValue(address _x) public constant returns(bool b, address b) {
82
+ }
83
+
84
+ }
85
+ ```
65
86
 
66
87
  ```ruby
67
88
  simple_name_registry_instance.transact_and_wait_register("0x5b6cb65d40b0e27fab87a2180abcab22174a2d45", "minter.contract.dgx")
68
89
  simple_name_registry_instance.transact_register("0x385acafdb80b71ae001f1dbd0d65e62ec2fff055", "anthony@eufemio.dgx")
90
+ simple_name_registry_instance.call_get_some_value("0x385acafdb80b71ae001f1dbd0d65e62ec2fff055")
91
+ simple_name_registry_instance.call_my_mapping("0x385acafdb80b71ae001f1dbd0d65e62ec2fff055")
69
92
  ```
70
93
 
71
94
  ### Run contracts using a different address
@@ -83,6 +106,8 @@ simple_name_registry_instance.at("0x734533083b5fc0cd14b7cb8c8eb6ed0c9bd184d3")
83
106
  ## Roadmap
84
107
 
85
108
  * Add JSON RPC Client support
109
+ * Add support for creating and sending of raw transactions
110
+ * Offline account creation
86
111
  * Add Windows IPC Client (named pipes)
87
112
  * Solidity constant function output should be properly formatted according to the ouput data type
88
113
  * Unit testing and contract testing examples
@@ -1,6 +1,7 @@
1
1
  require "ethereum/version"
2
2
  require 'active_support'
3
3
  require 'active_support/core_ext'
4
+ require 'sha3-pure-ruby'
4
5
 
5
6
  module Ethereum
6
7
  require 'ethereum/ipc_client'
@@ -1,3 +1,3 @@
1
1
  module Ethereum
2
- VERSION = "0.3.47"
2
+ VERSION = "0.3.50"
3
3
  end
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.47
4
+ version: 0.3.50
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-08 00:00:00.000000000 Z
11
+ date: 2015-10-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler