FAQ

Frequently Asked Questions

1. How much LTO do I need to have in order 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).

Last 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?

The 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.

In the future, services will pull the information from the blockchain. Please use a data transaction to set the meta properties for your node address.

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 on your system and import the account using the seed phrase. After that, you can set account data.

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

All properties, except node_name, are optional. Other settings from the community-proposed metadata standard, may also be used.

Last updated