FAQ

Frequently Asked Questions

1. How much LTO do I need to start the mining process?

In order to activate mining, the node needs not less than 1000 LTO (for testnet we can always provide you with that, do not hesitate to contact us).

2. What is the current mainnet state?

Current mainnet state.

3. What is the incentive to run my own full node instead of leasing my coins?

More revenue if you have enough people leasing to you and payout is not 100%. Also you can provide services on LTO Network with your node. Running a node might be profitable later on but it's not at the moment. If it is it's only marginal.

4. I want to automatically send my tokens to multiple wallets on the LTO platform. Is there a program or bot?

Yes, there are payout scripts that node owners can use to pay leasers. These can also be used/adjusted to do other automated transfers, e.g., LTOLPoSDistributor. These scripts are provided and maintained by LTO community members.

5. How can I list my community node?

Services like universal wallet pull the information about community nodes from the LTO public blockchain. Please use a data transaction to set the meta properties for your node address.

The node_name and payout_sharingproperties are required. All other properties are optional. Additional settings from the community-proposed metadata standard may also be used.

Use either the LTO CLI Client or the REST API of your node to set the account data.

Store the node information in a JSON file.

{
  "node_name": "My node name",
  "node_description": "Full description about your node",
  "branding:logo_svg": "https://example.com/logo.svg",
  "website": "https://example.com",
  "social:telegram": "@telegram_handle",
  "social:twitter": "@twitter_handle",
  "payout_sharing": "95%",
  "payout_schedule": "Every week"
}

Install the LTO CLI Client and import the account using the seed phrase of your node. After that, you can set the account data.

lto account seed <<< "$LTO_WALLET_SEED"
lto data set < nodeinfo.json

Additionally; the web wallet uses a static JSON file to list the community nodes for leasing. Please edit the file communityNodes.json on GitHub and issue a pull request.

Last updated