Module: Berycoin::Gem::RawTransactions

Defined in:
lib/berycoin/gem.rb

Class Method Summary collapse

Class Method Details

.createrawtransaction(*opt) ⇒ Object



157
158
159
# File 'lib/berycoin/gem.rb', line 157

def RawTransactions.createrawtransaction(*opt)
  H.createrawtransaction(opt)
end

.decoderawtransaction(hexstring) ⇒ Object



160
161
162
# File 'lib/berycoin/gem.rb', line 160

def RawTransactions.decoderawtransaction(hexstring)
  H.decoderawtransaction(hexstring)
end

.decodescript(hex) ⇒ Object



163
164
165
# File 'lib/berycoin/gem.rb', line 163

def RawTransactions.decodescript(hex)
  H.decodescript(hex)
end

.fundrawtransaction(hex) ⇒ Object



166
167
168
# File 'lib/berycoin/gem.rb', line 166

def RawTransactions.fundrawtransaction(hex)
  H.fundrawtransaction(hex)
end

.getrawtransaction(txid) ⇒ Object



169
170
171
# File 'lib/berycoin/gem.rb', line 169

def RawTransactions.getrawtransaction(txid)
  H.getrawtransaction(txid)
end

.sendrawtransaction(hex) ⇒ Object



172
173
174
# File 'lib/berycoin/gem.rb', line 172

def RawTransactions.sendrawtransaction(hex)
  H.sendrawtransaction(hex)
end

.signrawtransaction(hex) ⇒ Object



175
176
177
# File 'lib/berycoin/gem.rb', line 175

def RawTransactions.signrawtransaction(hex)
  H.signrawtransaction(hex)
end