class Lisk::Raw

Implements raw APIs of the Lisk Core node.

Attributes

client[RW]

A “lisk/client” connecting to a Lisk Core API node.

Public Class Methods

new(client) click to toggle source

Initializing the API with a Lisk Core API client.

# File lib/lisk/raw.rb, line 11
def initialize client
  if not client.nil?
    @client = client
    return self
  else
    return nil
  end
end

Public Instance Methods

accounts() click to toggle source

The “accounts” API

# File lib/lisk/raw.rb, line 25
def accounts
  todo "#{self}::#{__method__} UNIMPLEMENTED"
end
blocks() click to toggle source

The “blocks” API

# File lib/lisk/raw.rb, line 30
def blocks
  todo "#{self}::#{__method__} UNIMPLEMENTED"
end
dapps() click to toggle source

The “dapps” API

# File lib/lisk/raw.rb, line 35
def dapps
  todo "#{self}::#{__method__} UNIMPLEMENTED"
end
delegates() click to toggle source

The “delegates” API

# File lib/lisk/raw.rb, line 40
def delegates
  todo "#{self}::#{__method__} UNIMPLEMENTED"
end
delegates_forgers() click to toggle source

The “delegates/forgers” API

# File lib/lisk/raw.rb, line 45
def delegates_forgers
  todo "#{self}::#{__method__} UNIMPLEMENTED"
end
delegates_forging() click to toggle source

The “delegates/forging” API

# File lib/lisk/raw.rb, line 50
def delegates_forging
  todo "#{self}::#{__method__} UNIMPLEMENTED"
end
method_missing(name, *args, &block) click to toggle source

Handles unimplemented methods

# File lib/lisk/raw.rb, line 185
def method_missing name, *args, &block
  todo "#{self}::#{name} METHOD MISSING"
end
node_constants() click to toggle source

The “node/constants” API

# File lib/lisk/raw.rb, line 55
def node_constants
  todo "#{self}::#{__method__} UNIMPLEMENTED"
end
node_status() click to toggle source

The “node/status” API

# File lib/lisk/raw.rb, line 60
def node_status
  todo "#{self}::#{__method__} UNIMPLEMENTED"
end
peers() click to toggle source

The “peers” API

# File lib/lisk/raw.rb, line 65
def peers
  todo "#{self}::#{__method__} UNIMPLEMENTED"
end
signatures() click to toggle source

The “signatures” API

# File lib/lisk/raw.rb, line 70
def signatures
  todo "#{self}::#{__method__} UNIMPLEMENTED"
end
transactions() click to toggle source

The “transactions” API

# File lib/lisk/raw.rb, line 75
def transactions
  todo "#{self}::#{__method__} UNIMPLEMENTED"
end
transactions_unconfirmed() click to toggle source

The “transactions/unconfirmed” API

# File lib/lisk/raw.rb, line 85
def transactions_unconfirmed
  todo "#{self}::#{__method__} UNIMPLEMENTED"
end
transactions_unprocessed() click to toggle source

The “transactions/unprocessed” API

# File lib/lisk/raw.rb, line 90
def transactions_unprocessed
  todo "#{self}::#{__method__} UNIMPLEMENTED"
end
transactions_unsigned() click to toggle source

The “transactions/unsigned” API

# File lib/lisk/raw.rb, line 80
def transactions_unsigned
  todo "#{self}::#{__method__} UNIMPLEMENTED"
end
voters() click to toggle source

The “voters” API

# File lib/lisk/raw.rb, line 100
def voters
  todo "#{self}::#{__method__} UNIMPLEMENTED"
end
votes() click to toggle source

The “votes” API

# File lib/lisk/raw.rb, line 95
def votes
  todo "#{self}::#{__method__} UNIMPLEMENTED"
end