Class: Minter::UnbondTx

Inherits:
Transaction show all
Defined in:
lib/minter/transactions/unbond_tx.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Transaction

#multisign, #sign, #tx_hash

Constructor Details

#initialize(pubkey:, coin:, value:, nonce:, chain_id:, gas_coin:, gas_price:) ⇒ UnbondTx

rubocop:disable Metrics/ParameterLists



7
8
9
10
11
12
13
14
15
# File 'lib/minter/transactions/unbond_tx.rb', line 7

def initialize(pubkey:, coin:, value:, nonce:, chain_id:, gas_coin:, gas_price:) # rubocop:disable Metrics/ParameterLists
  @pubkey = pubkey
  @coin = coin
  @value = value
  @nonce = nonce
  @chain_id = chain_id
  @gas_coin = gas_coin
  @gas_price = gas_price
end

Instance Attribute Details

#chain_idObject

Returns the value of attribute chain_id.



5
6
7
# File 'lib/minter/transactions/unbond_tx.rb', line 5

def chain_id
  @chain_id
end

#coinObject

Returns the value of attribute coin.



5
6
7
# File 'lib/minter/transactions/unbond_tx.rb', line 5

def coin
  @coin
end

#gas_coinObject

Returns the value of attribute gas_coin.



5
6
7
# File 'lib/minter/transactions/unbond_tx.rb', line 5

def gas_coin
  @gas_coin
end

#gas_priceObject

Returns the value of attribute gas_price.



5
6
7
# File 'lib/minter/transactions/unbond_tx.rb', line 5

def gas_price
  @gas_price
end

#nonceObject

Returns the value of attribute nonce.



5
6
7
# File 'lib/minter/transactions/unbond_tx.rb', line 5

def nonce
  @nonce
end

#pubkeyObject

Returns the value of attribute pubkey.



5
6
7
# File 'lib/minter/transactions/unbond_tx.rb', line 5

def pubkey
  @pubkey
end

#valueObject

Returns the value of attribute value.



5
6
7
# File 'lib/minter/transactions/unbond_tx.rb', line 5

def value
  @value
end

Instance Method Details

#to_paramsObject



17
18
19
20
21
22
23
24
25
# File 'lib/minter/transactions/unbond_tx.rb', line 17

def to_params
  { PubKey: pubkey,
    Coin: coin,
    Value: value,
    Nonce: nonce,
    ChainId: chain_id,
    GasCoin: gas_coin,
    GasPrice: gas_price }
end