class Laksa::Account::TransactionFactory
Attributes
provider[R]
signer[R]
Public Class Methods
new(provider, signer)
click to toggle source
# File lib/laksa/account/transaction_factory.rb, line 6 def initialize(provider, signer) @provider = provider @signer = signer end
Public Instance Methods
new(tx_params, to_ds = false)
click to toggle source
# File lib/laksa/account/transaction_factory.rb, line 11 def new(tx_params, to_ds = false) Transaction.new(tx_params, @provider, TxStatus::INITIALIZED, to_ds) end