Or (optionally) just pass the operation(s) you want as the only arguments. This is semantic sugar for when you want specific types and take all of the defaults.
```ruby
stream=Steem::Stream.new
stream.operations(:vote_operation)do|op|
puts"#{op.type}: #{op.value}"
end
```
To also include virtual operations:
```ruby
stream=Steem::Stream.new
stream.operations(include_virtual: true)do|op|
puts"#{op.type}: #{op.value}"
end
```
### Multisig
You can use multisignature to broadcast an operation.