FAQs
This section is the same as the #FAQ channel in Discord. If you need further help hop on to our support channels there.
Dictionaryβ
Keyringβ
The keyring holds the private/public keypairs used to interact with a node. For instance, a validator key needs to be set up before running the blockchain node, so that blocks can be correctly signed. The private key can be stored in different locations, called "backends", such as a file or the operating system's own key storage. (learn more here)
Nodes, Validators and Providersβ
I have problems running the install scriptsβ
Troubleshooting:
lavad
command not found- Try running
source ~/.profile
- Try running
- The node is stuck on βWaiting for node to catch upβ
- This process might take some time based on your internet connection, compute capabilities and the height of the latest block on the network
- Please allow 5-20 minutes for this procedure to catch up with the latest block in the network
- curl or unzip commands are not found
sudo apt update && sudo apt install curl unzip -y
- sudo command not found
apt install sudo -y
- When running
stake_validator
you get the erroraccount lava@XYZ not found: key not found
- Make sure your account is funded from Lava side before you try to stake as a validator
Providersβ
How can I update/edit my provider information?β
To update your provider information on chain, send the provider-stake
transaction with the updated information and an additional stake of minimum 1 ulava.
I get ERR_stake_provider_endpoints: invalid provider endpoints
error when trying to stake as a providerβ
In your stake-provider transaction you need to specify all required provider endpoints based on the chain you are staking on. For example to provide for cosmos chains you need both tendermint-rpc and rest as follows: "IP:port,tendermintrpc,1 IP:port,rest,1"
.
Is there an unboding period for providers?β
Yes, it's currently configured to 21 days.
How can I see my current provider state (incl. unbonding)?β
You can use the following query: lavad q pairing providers <CHAIN_ID>
When running my provider process lavad server
I get the following error provider endpoint mismatch
β
This error means that you have used different geolocations when using the provider-stake
transaction and when running lavad server
, please ensure they match and the problem should be resolved.
Developerβ
Using Lava with Other RPC Clientsβ
Lava easily integrates with other RPC clients. Simply create an account on the gateway, and replace your client's RPC URL with the appopriate one.
How to change the RPC url which Cosmjs uses?β
If you want a native integration to use seamlessly, please check out the cosmolava-client created by one of our community members: MELLIFERA-Labs/cosmolava-client
If you just want to switch the RPC URL you can do so using the HttpEndpoint interface on stargate or cosmwasm-stargate. Be sure you've grabbed the TendermintRPC endpoint from Lava or you may encounter errors.