Class: Steem::Operation
Direct Known Subclasses
AccountCreate, AccountCreateWithDelegation, AccountUpdate, AccountWitnessProxy, AccountWitnessVote, CancelTransferFromSavings, ChallengeAuthority, ChangeRecoveryAccount, ClaimAccount, ClaimRewardBalance, Comment, CommentOptions, Convert, CreateClaimedAccount, Custom, CustomBinary, CustomJson, DeclineVotingRights, DelegateVestingShares, DeleteComment, EscrowApprove, EscrowDispute, EscrowRelease, EscrowTransfer, FeedPublish, LimitOrderCancel, LimitOrderCreate, LimitOrderCreate2, ProveAuthority, RecoverAccount, ReportOverProduction, RequestAccountRecovery, ResetAccount, SetResetAccount, SetWithdrawVestingRoute, Transfer, TransferFromSavings, TransferToSavings, TransferToVesting, Vote, WithdrawVesting, WitnessSetProperties, WitnessUpdate
Defined Under Namespace
Classes: AccountCreate, AccountCreateWithDelegation, AccountUpdate, AccountWitnessProxy, AccountWitnessVote, CancelTransferFromSavings, ChallengeAuthority, ChangeRecoveryAccount, ClaimAccount, ClaimRewardBalance, Comment, CommentOptions, Convert, CreateClaimedAccount, Custom, CustomBinary, CustomJson, DeclineVotingRights, DelegateVestingShares, DeleteComment, EscrowApprove, EscrowDispute, EscrowRelease, EscrowTransfer, FeedPublish, LimitOrderCancel, LimitOrderCreate, LimitOrderCreate2, ProveAuthority, RecoverAccount, ReportOverProduction, RequestAccountRecovery, ResetAccount, SetResetAccount, SetWithdrawVestingRoute, Transfer, TransferFromSavings, TransferToSavings, TransferToVesting, Vote, WithdrawVesting, WitnessSetProperties, WitnessUpdate
Constant Summary
collapse
- IDS =
[
:vote_operation,
:comment_operation,
:transfer_operation,
:transfer_to_vesting_operation,
:withdraw_vesting_operation,
:limit_order_create_operation,
:limit_order_cancel_operation,
:feed_publish_operation,
:convert_operation,
:account_create_operation,
:account_update_operation,
:witness_update_operation,
:account_witness_vote_operation,
:account_witness_proxy_operation,
:pow_operation,
:custom_operation,
:report_over_production_operation,
:delete_comment_operation,
:custom_json_operation,
:comment_options_operation,
:set_withdraw_vesting_route_operation,
:limit_order_create2_operation,
:claim_account_operation,
:create_claimed_account_operation,
:request_account_recovery_operation,
:recover_account_operation,
:change_recovery_account_operation,
:escrow_transfer_operation,
:escrow_dispute_operation,
:escrow_release_operation,
:pow2_operation,
:escrow_approve_operation,
:transfer_to_savings_operation,
:transfer_from_savings_operation,
:cancel_transfer_from_savings_operation,
:custom_binary_operation,
:decline_voting_rights_operation,
:reset_account_operation,
:set_reset_account_operation,
:claim_reward_balance_operation,
:delegate_vesting_shares_operation,
:account_create_with_delegation_operation,
:witness_set_properties_operation,
:claim_reward_balance2_operation,
:smt_setup_operation,
:smt_cap_reveal_operation,
:smt_refund_operation,
:smt_setup_emissions_operation,
:smt_set_setup_parameters_operation,
:smt_set_runtime_parameters_operation,
:smt_create_operation,
:fill_convert_request_operation,
:author_reward_operation,
:curation_reward_operation,
:comment_reward_operation,
:liquidity_reward_operation,
:interest_operation,
:fill_vesting_withdraw_operation,
:fill_order_operation,
:shutdown_witness_operation,
:fill_transfer_from_savings_operation,
:hardfork_operation,
:comment_payout_update_operation,
:return_vesting_delegation_operation,
:comment_benefactor_reward_operation,
:producer_reward_operation,
:clear_null_account_balance_operation
]
Serializable::KNOWN_TYPES, Serializable::NUMERIC_TYPES
Class Method Summary
collapse
Instance Method Summary
collapse
Methods included from Utils
#hexlify, #unhexlify
included
Methods included from JSONable
#as_json, included, #to_json
Class Method Details
.op_id(op) ⇒ Object
94
95
96
|
# File 'lib/steem/operation.rb', line 94
def self.op_id(op)
IDS.find_index op
end
|
Instance Method Details
#==(other_op) ⇒ Object
131
132
133
134
135
136
137
138
139
|
# File 'lib/steem/operation.rb', line 131
def ==(other_op)
return false if self.class != other_op.class
self.class.attributes.each do |prop|
return false if self[prop] != other_op[prop]
end
true
end
|
#[](key) ⇒ Object
114
115
116
117
|
# File 'lib/steem/operation.rb', line 114
def [](key)
key = key.to_sym
send(key) if self.class.attributes.include?(key)
end
|
#[]=(key, value) ⇒ Object
119
120
121
122
123
124
125
126
127
128
129
|
# File 'lib/steem/operation.rb', line 119
def []=(key, value)
key = key.to_sym
if self.class.attributes.include?(key)
if self.class.numeric? key
send("#{key}=", value.to_i)
else
send("#{key}=", value)
end
end
end
|
#inspect ⇒ Object
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
# File 'lib/steem/operation.rb', line 98
def inspect
properties = self.class.attributes.map do |prop|
unless (v = instance_variable_get("@#{prop}")).nil?
v = if v.respond_to? :strftime
v.strftime('%Y-%m-%dT%H:%M:%S')
else
v
end
"@#{prop}=#{v}"
end
end.compact.join(', ')
"#<#{self.class.name} [#{properties}]>"
end
|