Class: CryptoApis::DecodeRawTransactionHexRISE
- Inherits:
-
Object
- Object
- CryptoApis::DecodeRawTransactionHexRISE
- Defined in:
- lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb
Overview
Ethereum
Instance Attribute Summary collapse
-
#approximate_fee ⇒ Object
Defines the approximate fee value.
-
#approximate_minimum_required_fee ⇒ Object
Defines the approximate minimum fee that is required for the transaction.
-
#gas_limit ⇒ Object
Represents the amount of gas used by this specific transaction alone.
-
#gas_paid_for_data ⇒ Object
Represents the amount of gas paid for the data in the transaction.
-
#gas_price ⇒ Object
Represents the price offered to the miner to purchase this amount of gas.
-
#input_data ⇒ Object
Represents additional information that is required for the transaction.
-
#max_fee_per_gas ⇒ Object
Defines the maximum amount that customer is willing to pay per unit of gas to get his transaction included in a block.
-
#max_fee_priority_per_gas ⇒ Object
Represents determined by the user value that is paid directly to miners.
-
#nonce ⇒ Object
Represents the sequential running number for an address, starting from 0 for the first transaction.
-
#r ⇒ Object
Represents output of an ECDSA signature.
-
#recipient ⇒ Object
The address which receives this transaction.
-
#s ⇒ Object
Represents output of an ECDSA signature.
-
#sender ⇒ Object
Represents the address which sends this transaction.
-
#type ⇒ Object
Specifies the transaction type as one from three options: if response returns a ‘"0"` it means the raw transaction includes legacy transaction data, if it is `"1"` - includes access lists for EIP2930, and if it is `"2"` - EIP1559 data.
-
#v ⇒ Object
Defines the the recovery id.
-
#value ⇒ Object
Represents the sent/received amount.
Class Method Summary collapse
-
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about.
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.build_from_hash(attributes) ⇒ Object
Builds the object from hash.
-
.openapi_nullable ⇒ Object
List of attributes with nullable: true.
-
.openapi_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Integer
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ DecodeRawTransactionHexRISE
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ DecodeRawTransactionHexRISE
Initializes the object
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 124 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `CryptoApis::DecodeRawTransactionHexRISE` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| if (!self.class.attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `CryptoApis::DecodeRawTransactionHexRISE`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect end h[k.to_sym] = v } if attributes.key?(:'approximate_fee') self.approximate_fee = attributes[:'approximate_fee'] end if attributes.key?(:'approximate_minimum_required_fee') self.approximate_minimum_required_fee = attributes[:'approximate_minimum_required_fee'] end if attributes.key?(:'gas_limit') self.gas_limit = attributes[:'gas_limit'] end if attributes.key?(:'gas_paid_for_data') self.gas_paid_for_data = attributes[:'gas_paid_for_data'] end if attributes.key?(:'gas_price') self.gas_price = attributes[:'gas_price'] end if attributes.key?(:'input_data') self.input_data = attributes[:'input_data'] end if attributes.key?(:'max_fee_per_gas') self.max_fee_per_gas = attributes[:'max_fee_per_gas'] end if attributes.key?(:'max_fee_priority_per_gas') self.max_fee_priority_per_gas = attributes[:'max_fee_priority_per_gas'] end if attributes.key?(:'nonce') self.nonce = attributes[:'nonce'] end if attributes.key?(:'r') self.r = attributes[:'r'] end if attributes.key?(:'recipient') self.recipient = attributes[:'recipient'] end if attributes.key?(:'s') self.s = attributes[:'s'] end if attributes.key?(:'sender') self.sender = attributes[:'sender'] end if attributes.key?(:'type') self.type = attributes[:'type'] end if attributes.key?(:'v') self.v = attributes[:'v'] end if attributes.key?(:'value') self.value = attributes[:'value'] end end |
Instance Attribute Details
#approximate_fee ⇒ Object
Defines the approximate fee value. When isConfirmed is True - Defines the amount of the transaction fee When isConfirmed is False - For ETH-based blockchains this attribute represents the max fee value.
20 21 22 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 20 def approximate_fee @approximate_fee end |
#approximate_minimum_required_fee ⇒ Object
Defines the approximate minimum fee that is required for the transaction.
23 24 25 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 23 def approximate_minimum_required_fee @approximate_minimum_required_fee end |
#gas_limit ⇒ Object
Represents the amount of gas used by this specific transaction alone.
26 27 28 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 26 def gas_limit @gas_limit end |
#gas_paid_for_data ⇒ Object
Represents the amount of gas paid for the data in the transaction.
29 30 31 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 29 def gas_paid_for_data @gas_paid_for_data end |
#gas_price ⇒ Object
Represents the price offered to the miner to purchase this amount of gas.
32 33 34 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 32 def gas_price @gas_price end |
#input_data ⇒ Object
Represents additional information that is required for the transaction.
35 36 37 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 35 def input_data @input_data end |
#max_fee_per_gas ⇒ Object
Defines the maximum amount that customer is willing to pay per unit of gas to get his transaction included in a block.
38 39 40 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 38 def max_fee_per_gas @max_fee_per_gas end |
#max_fee_priority_per_gas ⇒ Object
Represents determined by the user value that is paid directly to miners.
41 42 43 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 41 def max_fee_priority_per_gas @max_fee_priority_per_gas end |
#nonce ⇒ Object
Represents the sequential running number for an address, starting from 0 for the first transaction. E.g., if the nonce of a transaction is 10, it would be the 11th transaction sent from the sender’s address.
44 45 46 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 44 def nonce @nonce end |
#r ⇒ Object
Represents output of an ECDSA signature.
47 48 49 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 47 def r @r end |
#recipient ⇒ Object
The address which receives this transaction. In UTXO-based protocols like Bitcoin there could be several senders while in account-based protocols like Ethereum there is always only one recipient.
50 51 52 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 50 def recipient @recipient end |
#s ⇒ Object
Represents output of an ECDSA signature.
53 54 55 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 53 def s @s end |
#sender ⇒ Object
Represents the address which sends this transaction. In UTXO-based protocols like Bitcoin there could be several senders while in account-based protocols like Ethereum there is always only one sender.
56 57 58 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 56 def sender @sender end |
#type ⇒ Object
Specifies the transaction type as one from three options: if response returns a ‘"0"` it means the raw transaction includes legacy transaction data, if it is `"1"` - includes access lists for EIP2930, and if it is `"2"` - EIP1559 data.
59 60 61 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 59 def type @type end |
#v ⇒ Object
Defines the the recovery id.
62 63 64 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 62 def v @v end |
#value ⇒ Object
Represents the sent/received amount.
65 66 67 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 65 def value @value end |
Class Method Details
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about
90 91 92 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 90 def self.acceptable_attributes attribute_map.values end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 68 def self.attribute_map { :'approximate_fee' => :'approximateFee', :'approximate_minimum_required_fee' => :'approximateMinimumRequiredFee', :'gas_limit' => :'gasLimit', :'gas_paid_for_data' => :'gasPaidForData', :'gas_price' => :'gasPrice', :'input_data' => :'inputData', :'max_fee_per_gas' => :'maxFeePerGas', :'max_fee_priority_per_gas' => :'maxFeePriorityPerGas', :'nonce' => :'nonce', :'r' => :'r', :'recipient' => :'recipient', :'s' => :'s', :'sender' => :'sender', :'type' => :'type', :'v' => :'v', :'value' => :'value' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
278 279 280 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 278 def self.build_from_hash(attributes) new.build_from_hash(attributes) end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
117 118 119 120 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 117 def self.openapi_nullable Set.new([ ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 95 def self.openapi_types { :'approximate_fee' => :'String', :'approximate_minimum_required_fee' => :'String', :'gas_limit' => :'String', :'gas_paid_for_data' => :'String', :'gas_price' => :'String', :'input_data' => :'String', :'max_fee_per_gas' => :'String', :'max_fee_priority_per_gas' => :'String', :'nonce' => :'Integer', :'r' => :'String', :'recipient' => :'String', :'s' => :'String', :'sender' => :'String', :'type' => :'Integer', :'v' => :'String', :'value' => :'String' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 242 def ==(o) return true if self.equal?(o) self.class == o.class && approximate_fee == o.approximate_fee && approximate_minimum_required_fee == o.approximate_minimum_required_fee && gas_limit == o.gas_limit && gas_paid_for_data == o.gas_paid_for_data && gas_price == o.gas_price && input_data == o.input_data && max_fee_per_gas == o.max_fee_per_gas && max_fee_priority_per_gas == o.max_fee_priority_per_gas && nonce == o.nonce && r == o.r && recipient == o.recipient && s == o.s && sender == o.sender && type == o.type && v == o.v && value == o.value end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 309 def _deserialize(type, value) case type.to_sym when :Time Time.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :Boolean if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model # models (e.g. Pet) or oneOf klass = CryptoApis.const_get(type) klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value) end end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
380 381 382 383 384 385 386 387 388 389 390 391 392 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 380 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 285 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) attributes = attributes.transform_keys(&:to_sym) self.class.openapi_types.each_pair do |key, type| if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key) self.send("#{key}=", nil) elsif type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) }) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) end end self end |
#eql?(o) ⇒ Boolean
265 266 267 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 265 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
271 272 273 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 271 def hash [approximate_fee, approximate_minimum_required_fee, gas_limit, gas_paid_for_data, gas_price, input_data, max_fee_per_gas, max_fee_priority_per_gas, nonce, r, recipient, s, sender, type, v, value].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 204 def list_invalid_properties invalid_properties = Array.new if @gas_limit.nil? invalid_properties.push('invalid value for "gas_limit", gas_limit cannot be nil.') end if @nonce.nil? invalid_properties.push('invalid value for "nonce", nonce cannot be nil.') end if @recipient.nil? invalid_properties.push('invalid value for "recipient", recipient cannot be nil.') end if @sender.nil? invalid_properties.push('invalid value for "sender", sender cannot be nil.') end if @type.nil? invalid_properties.push('invalid value for "type", type cannot be nil.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
356 357 358 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 356 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
362 363 364 365 366 367 368 369 370 371 372 373 374 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 362 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) if value.nil? is_nullable = self.class.openapi_nullable.include?(attr) next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
350 351 352 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 350 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
231 232 233 234 235 236 237 238 |
# File 'lib/crypto_apis/models/decode_raw_transaction_hex_rise.rb', line 231 def valid? return false if @gas_limit.nil? return false if @nonce.nil? return false if @recipient.nil? return false if @sender.nil? return false if @type.nil? true end |