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 +4 -4
- data/README.md +26 -1
- data/lib/ethereum.rb +1 -0
- data/lib/ethereum/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff034ba8084a39b7005db15b28fe10b3897f1b53
|
4
|
+
data.tar.gz: 305305a60910eb69350dbbc0f6707f1036c0b45c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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
|
data/lib/ethereum.rb
CHANGED
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.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-
|
11
|
+
date: 2015-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|