Skip to main content

Provider TLS Setup Guide

caution

All providers on lava-testnet-2 must use a domain name and TLS (1.3). You must have a domain name to continue. If you have not already, please take a moment to purchase one! You can find cheap top-level domains here or here.

๐Ÿ“Š Diagramโ€‹

Provider TLS Diagram

๐Ÿ“‹ Prerequisitesโ€‹

Required Setup?
acquired a domain nameโœ…
lavap is installed & configuredโœ…
account with ulava balanceโœ…

๐Ÿ“ Written Guide (~45m)โ€‹


๐Ÿ…ฐ๏ธ Change the A Record on your Domainโ€‹

The first step of establishing your Provider is to modify some of the DNS settings on the domain you purchased. In specific, you'll need to change the A Records on your domain. Changing your A-Record will create a subdomain that routes traffic to a specific provider process. Depending upon who you've purchased your domain through, A-Records may be visible under Advanced DNS or another label.

๐Ÿ–ง Multiple Records (Recommended)

We recommend you create a separate A-Record for each one of the chains that you plan to support. This is more secure, as the default behavior is to refuse connection unless a consumer connects on the correct subdomain.

For each chain you want to support, add an A-Record with the desired chain name as the Host, the Value will be your server IP. For example, if you wanted to support Ethereum & Lava Mainnets, Your DNS Settings should include the following :

Record TypeHostValue
A-RecordethYour-Server-Public-IP-Address-Here
A-RecordlavaYour-Server-Public-IP-Address-Here
โš€ Single Record

Alternatively, you can create one A-Record that captures traffic to all sub-domains. If you are supporting a large number of chains that frequently changes, doing this may somewhat simplify your process.

Record TypeHostValue
A-Record*Your-Server-Public-IP-Address-Here

๐Ÿ“‚ Install Required Dependenciesโ€‹

We will guide you on setting up and configuring Nginx to use a TLS certificate and handle connections to different provider processes. It is also possible to use alternative solutions for these two tasks, such as Caddy, Envoy or your preferred solution.

Run the following commands to install the required packages:

sudo apt update
sudo apt install certbot net-tools nginx python3-certbot-nginx -y

๐Ÿ“ฎ Generate Certificateโ€‹

Next, we need to actually create the TLS certificate via the certifying authority. This process is automated by certbot.

Use certbot to create a certificate:

sudo certbot certonly -d you.xyz -d lava.you.xyz -d eth.you.xyz

Note, you will need one -d flag for each subdomain you created as an A-Record. Even if you opted to create a Single Record, you still need to indicate a subdomain for each provider process you will run. We use the filler you.xyz as an example above.

You may be met with several prompts. Use nginx or Nginx Web Server Plugin when asked.


๐Ÿ’ป Validate Certificateโ€‹

Let's make sure your certificate successfully installed! โœ… Input the following command:

sudo certbot certificates

Keep track of your output. If your certificate generation was successful, it should look as following:

Found the following certs:
Certificate Name: your-site.com
Domains: your-site.com eth.your-site.com lava.your-site.com
Expiry Date: 2023-11-07 14:37:29+00:00 (VALID: 84 days)
Certificate Path: /etc/letsencrypt/live/your-site.com/fullchain.pem
Private Key Path: /etc/letsencrypt/live/your-site.com/privkey.pem

You'll need both Certificate Path and Private Key Path for your next step.


๐Ÿ—ƒ๏ธ Add an Nginx Config for Each Domainโ€‹

Lava recommends running each chain under a separate provider process. This will separate error logs and protect against complete provider failure in the case of a problematic provider process. The first step of this is to create different nginx routes for each chain.

For each chain that you want to support, you will need to create a separate nginx config file. cd into /etc/nginx/sites-available/ and create a server file for each chain. You will need to select an open port for each chain. Nginx will use these config files to create your routes.

๐ŸŸข sudo nano eth_server

server {
listen 443 ssl http2;
server_name eth.your-site.com;

ssl_certificate /etc/letsencrypt/live/your-site.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/your-site.com/privkey.pem;
error_log /var/log/nginx/debug.log debug;

location / {
proxy_pass http://127.0.0.1:2223;
grpc_pass 127.0.0.1:2223;
}
}

In most cases, after creating a configuration file in accessible sites, you need to create a symbolic link to this file in the enabled sites directory. This can be done with a command like:

sudo ln -s /etc/nginx/sites-available/lava_server /etc/nginx/sites-enabled/lava_server
caution

The above examples use ports 443 for external listening and 2223 / 2224 for internal comms, respectively. Using ports other than 443 for external listening means that some users will not be able to connect to your provider. This can result in less rewards and poorer quality of service. For internal listening, be aware that some ports on your OS may be used for internal communication and should be avoided.


๐Ÿงช Test Nginx Configurationโ€‹

Now, ensure that your nginx setup is working! โœ…

sudo nginx -t

๐Ÿ–ณ Expected Output:

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

โ™ป๏ธ Restart Nginxโ€‹

You will need to refresh the Nginx server:

sudo systemctl restart nginx

โš™๏ธ Create the Provider Configurationโ€‹

tip

Need a template? A default rpcprovider.yml configuration is available in ~/lava/config

Per earlier advisement, we'll create one .yml per chain we plan to support. Each one of these .yml files will function as the configuration for a distinct provider process. In case of our example, we'll create a lava-provider.yml and a eth-provider.yml.

nano lava-provider.yml


endpoints:
- api-interface: tendermintrpc
chain-id: LAV1
network-address:
address: 127.0.0.1:2224
disable-tls: true
node-urls:
- url: ws://127.0.0.1:26657/websocket
- url: http://127.0.0.1:26657
- api-interface: grpc
chain-id: LAV1
network-address:
address: 127.0.0.1:2224
disable-tls: true
node-urls:
url: 127.0.0.1:9090
- api-interface: rest
chain-id: LAV1
network-address:
address: 127.0.0.1:2224
disable-tls: true
node-urls:
url: http://127.0.0.1:1317

Once we've created these files we can move onto starting the processes!


๐Ÿ Start the Provider Process(es)โ€‹

In this example, we use the built-in terminal multiplexer screen to run multiple provider processes. Begin by typing screen. But you can also use a different multiplexer, e.g. tmux.

โซ To start the Ethereum process

screen -S eth-provider

# This will take us to a separate terminal where we can start the provider process:

lavap rpcprovider eth-provider.yml --from your_key_name_here --geolocation 1 --chain-id lava-testnet-2 --log_level debug

Press CTRL+ad to detach from the eth-provider screen.
โซ To start the Lava provider process

screen -S lava-provider

# This will take us to a separate terminal where we can start the provider process:

lavap rpcprovider lava-provider.yml --from your_key_name_here --geolocation 1 --chain-id lava-testnet-2 --log_level debug

Some notes:

  • --from should be followed by the key name of your funded account that you will use to stake your provider
  • --log_level debug gives us verbose output so we can diagnose any issues that may arise
  • --chain-id may or may not be necessary, depending upon your setup, but we can default to --lava-testnet-2
  • --node may or may not be necessary
caution

The syntax on your .yml files must be precise. Misplaced or invisible characters or inconsistent indentation can cause errors.


โ˜‘๏ธ Test the Provider Process!โ€‹

Run the following commands one at a time!

lavap test rpcprovider --from your_key_name_here --endpoints "your-site:443,LAV1"

๐Ÿ–ณ Expected output:

๐Ÿ“„----------------------------------------โœจSUMMARYโœจ----------------------------------------๐Ÿ“„

๐Ÿ”ต Tests Passed:
๐Ÿ”นLAV1-grpclatest block: 0x4ca8c
๐Ÿ”นLAV1-restlatest block: 0x4ca8c
๐Ÿ”นLAV1-tendermintrpclatest block: 0x4ca8c

๐Ÿ”ต Tests Failed:
๐Ÿ”นNone ๐ŸŽ‰! all tests passed โœ…

๐Ÿ”ต Provider Port Validation:
๐Ÿ”นโœ… All Ports are valid! โœ…

lavap test rpcprovider --from your_key_name_here --endpoints "your-site:443,ETH1"

๐Ÿ–ณ Expected output:

๐Ÿ“„----------------------------------------โœจSUMMARYโœจ----------------------------------------๐Ÿ“„

๐Ÿ”ต Tests Passed:
๐Ÿ”นETH1-jsonrpclatest block: 0x1115fe9

๐Ÿ”ต Tests Failed:
๐Ÿ”นNone ๐ŸŽ‰! all tests passed โœ…

๐Ÿ”ต Provider Port Validation:
๐Ÿ”นโœ… All Ports are valid! โœ…

๐Ÿ”—โ€๐Ÿ’ฅ Stake the Provider on Chainโ€‹

Use a variation of the following command to stake on chain; the minimum stake is 50000000000ulava

lavap tx pairing stake-provider ETH1 "50000000000ulava" "eth.your-site:443,1" 1 validator -y --from your_key_name_here --provider-moniker your-provider-moniker-1 --delegate-limit "0ulava" --gas-adjustment "1.5" --gas "auto" --gas-prices "0.0001ulava"
  • validator - active validator address
lavap tx pairing stake-provider LAV1 "50000000000ulava" "lava.your-site:443,1" 1 validator -y --from your_key_name_here --provider-moniker your-provider-moniker-1 --delegate-limit "0ulava" --gas-adjustment "1.5" --gas "auto" --gas-prices "0.0001ulava"

โ˜‘๏ธ Test the Providers again!โ€‹

lavap test rpcprovider --from your_key_name_here --endpoints "lava.your-site:443,LAV1"

lavap test rpcprovider --from your_key_name_here --endpoints "eth.your-site:443,ETH1"

You can also get useful information on the setup using:

lavap q pairing account-info --from your_key_name

โ— If you have any further issues, do not hesitate to venture to our discord where you can get better assistance!