module NearApi

Constants

VERSION

Public Class Methods

config() click to toggle source
# File lib/near_api.rb, line 30
def self.config
  @config ||= Config.new
end
key() click to toggle source
# File lib/near_api.rb, line 38
def self.key
  @key ||= Key.new
end

Public Instance Methods

config=(config) click to toggle source
# File lib/near_api.rb, line 34
def config=(config)
  @config = config
end
key=(key) click to toggle source
# File lib/near_api.rb, line 42
def key=(key)
  @key = key
end