module Berycoin::RawTransactions

Public Class Methods

combinerawtransaction(opt) click to toggle source
# File lib/berycoin/gem.rb, line 220
def RawTransactions.combinerawtransaction(opt)
  H.combinerawtransaction opt
end
createrawtransaction(*opt) click to toggle source
# File lib/berycoin/gem.rb, line 223
def RawTransactions.createrawtransaction(*opt)
  H.createrawtransaction(opt)
end
decoderawtransaction(hexstring) click to toggle source
# File lib/berycoin/gem.rb, line 226
def RawTransactions.decoderawtransaction(hexstring)
  H.decoderawtransaction(hexstring)
end
decodescript(hex) click to toggle source
# File lib/berycoin/gem.rb, line 229
def RawTransactions.decodescript(hex)
  H.decodescript(hex)
end
fromhexaddress(hexaddress) click to toggle source
# File lib/berycoin/gem.rb, line 235
def RawTransactions.fromhexaddress(hexaddress)
  H.fromhexaddress hexaddress
end
fundrawtransaction(hex) click to toggle source
# File lib/berycoin/gem.rb, line 232
def RawTransactions.fundrawtransaction(hex)
  H.fundrawtransaction(hex)
end
gethexaddress(address) click to toggle source
# File lib/berycoin/gem.rb, line 241
def RawTransactions.gethexaddress(address)
  H.gethexaddress address
end
getrawtransaction(txid) click to toggle source
# File lib/berycoin/gem.rb, line 238
def RawTransactions.getrawtransaction(txid)
  H.getrawtransaction(txid)
end
sendrawtransaction(hex) click to toggle source
# File lib/berycoin/gem.rb, line 244
def RawTransactions.sendrawtransaction(hex)
  H.sendrawtransaction(hex)
end
signrawtransaction(hex) click to toggle source
# File lib/berycoin/gem.rb, line 247
def RawTransactions.signrawtransaction(hex)
  H.signrawtransaction(hex)
end