Creating a Network Object 🔗︎

Lamden-js uses a Network Object which tells the Transaction Builder and Masternode API information about the Lamden Network you want to use.

Create new Network instance 🔗︎

let testnet = new Network({
    hosts: ['https://testnet-master-1.lamden.io'] // API calls choose a random entry from this list
    name: 'Lamden Testnet', // optional
    type: 'testnet', // optional
    lamden: true,  // optional
    currencySymbol: 'dTAU',  // optional
    blockExplorer: 'https://testnet.lamden.io,'  // optional
})

testnet.events.on('online', (online) => {
    console.log(online) // true or false
})
testnet.ping()

Network Object Class 🔗︎

An instance of this class can be created for any current Lamden Network or a local developer network. The masternodes provided in the hosts list must be valid Lamden Masternodes.

Class Members 🔗︎

  • hosts (array): required
    • This is a list of masternodes on the network you want to use.
    • The Network Object will use a random masternode from the list provided when creating Transactions or calling the Masternode API endpoints.
    • A list of current Lamden Masternodes can be found here.
  • host (string): getter
    • a random host returned from the hosts list
  • url (string): getter
    • returns host
  • events (object): EventEmitter
    • emits the online event
  • API (object): LamdenMasterNode_API
  • online (boolean):
    • default false
    • set with the result of ping()
  • name (string): optional
    • used for reference only
    • A reference name for this network
    • default lamden network
  • type (string): optional
    • used for reference only
    • usually mainnet, testnet
    • default custom
  • lamden (boolean): optional
    • used for reference only
    • default false
  • currencySymbol (string): optional
    • used for reference only
    • default TAU
    • Gives a token symbol to the values returned from network's currency contract
  • blockExplorer (string): optional
    • used for reference only
    • A URL for keeping track of the block explorer associated with this network.
    • default undefined

Constructor 🔗︎

Creates an instance using the properties of a Network Info Object.

Arguments 🔗︎

  • networkInfoObj (object):

validateProtocol(host) 🔗︎

Used to validate the hosts lists contains properly formatted url strings.

Arguments 🔗︎

  • host (string):
    • a masternode url string

Returns string: a validated host string

Throws error: is string does not include https:// or http://

validateProtocol(host) 🔗︎

Used to validate a masternode url has a protocol prefixed.

Arguments 🔗︎

  • host (string):
    • a masternode url string

Returns string: a validated host string

Throws error: is string does not include https:// or http://

validateHosts(hosts) 🔗︎

Calls validateProtocol on an array of masternode urls.

Arguments 🔗︎

  • hosts (array):
    • an array of masternode url strings

Returns array: a validated array of masternode urls

ping() 🔗︎

Used to set the online class member to the online status of the network.

Returns boolean: network is online

getNetworkInfo() 🔗︎

Returns this networks information

Returns

{
    name: this.name,
    lamden: this.lamden,
    type: this.type,
    hosts: this.hosts,
    url: this.url,
    online: this.online,
}