@@ -13,7 +13,7 @@ Full documentation: http://www.rubydoc.info/gems/steem-ruby
...
@@ -13,7 +13,7 @@ Full documentation: http://www.rubydoc.info/gems/steem-ruby
The `steem-ruby` gem was written from the ground up by `@inertia`, who is also the author of [`radiator`](https://github.com/inertia186/radiator).
The `steem-ruby` gem was written from the ground up by `@inertia`, who is also the author of [`radiator`](https://github.com/inertia186/radiator).
> "I intend to continue work on `radiator` indefinitely. But in `radiator-0.5`, I intend to refactor `radiator` so that is uses `steem-ruby` as its core. This means that some features of `radiator` like Serialization will become redundant. I think it's still useful for radiator to do its own serialzation because it reduces the number of API requests." - @inertia
> "I intend to continue work on `radiator` indefinitely. But in `radiator-0.5`, I intend to refactor `radiator` so that is uses `steem-ruby` as its core. This means that some features of `radiator` like Serialization will become redundant. I think it's still useful for radiator to do its own serialization because it reduces the number of API requests." - @inertia
| `radiator` | `steem-ruby` |
| `radiator` | `steem-ruby` |
|-|-|
|-|-|
...
@@ -90,7 +90,7 @@ end
...
@@ -90,7 +90,7 @@ end
In addition to signing with multiple `wif` private keys, it is possible to also export a partially signed transaction to have signing completed by someone else.
In addition to signing with multiple `wif` private keys, it is possible to also export a partially signed transaction to have signing completed by someone else.
```ruby
```ruby
builder=TransactionBuilder.new(wif: wif1)
builder=Steem::TransactionBuilder.new(wif: wif1)
builder.put(vote: {
builder.put(vote: {
voter: voter,
voter: voter,
...
@@ -110,7 +110,7 @@ Then send the contents of `trx.json` to the other signing party so they can priv
...
@@ -110,7 +110,7 @@ Then send the contents of `trx.json` to the other signing party so they can priv