class ArkEcosystem::Client::API::Node

Methods for the Node API

Public Instance Methods

configuration() click to toggle source

Get the loader configuration.

@return [Faraday::Response]

# File lib/arkecosystem/client/api/node.rb, line 25
def configuration
  @client.get('node/configuration')
end
status() click to toggle source

Get the loader status.

@return [Faraday::Response]

# File lib/arkecosystem/client/api/node.rb, line 11
def status
  @client.get('node/status')
end
syncing() click to toggle source

Get the loader syncing status.

@return [Faraday::Response]

# File lib/arkecosystem/client/api/node.rb, line 18
def syncing
  @client.get('node/syncing')
end