class Nis::Transaction::Multisig

@attr [Nis::Transaction::*] otherTrans @attr [String] signer @attr [Integer] type @attr [Integer] fee @attr [Integer] deadline @attr [Integer] timeStamp @attr [Integer] version @see nemproject.github.io/#multisigTransaction

Constants

TYPE

Attributes

deadline[RW]
fee[R]
network[RW]
otherTrans[RW]
other_trans[RW]
other_trans=[RW]
signer[RW]
timeStamp[RW]
timestamp[RW]
type[R]
version[RW]

Public Class Methods

new(tx, signer, network: :testnet) click to toggle source
# File lib/nis/transaction/multisig.rb, line 24
def initialize(tx, signer, network: :testnet)
  @type = TYPE
  @network = network

  @otherTrans = tx
  @signer = signer
  @fee = Nis::Fee::Multisig.new(self)
end