# How to connect

To be able to use the faucet and native bridge on Solana, you need to get [whitelisted](https://docs.lumio.io/start-building/get-whitelisted).

A Devnet is available equipped with Solana VM, Move VM, and EVM on board.&#x20;

## Solana VM

RPC endpoint + faucet:

```
https://svm.devnet.lumio.io
```

The RPC is fully compatible with Solana API v2.0.2.

Use with Solana CLI:

<pre><code><strong>solana config set --url https://svm.devnet.lumio.io
</strong></code></pre>

Create a new key if needed:

```
solana-keygen new -o ./keypair.json
```

Request faucet:

```
solana airdrop 1
```

{% hint style="warning" %}
If you see an error like this, it means your account needs to be whitelisted first:\
\
Error: airdrop request failed. This can happen when the rate limit is reached.
{% endhint %}

## Move VM

The Move VM will be available once the native bridge starts working with it, expected in June-July.

## EVM

The Ethereum VM support is coming soon.

## Universal RPC

Cross-chain calls will enable a universal RPC, allowing the use of Metamask or Phantom to execute a Move VM transaction. This universal RPC will operate by utilizing cross-VM call functionality, where call data needs to be serialized into a byte format recognized by the specific VM targeted for the call. Using the cross-VM calls module on the initial chain, the call is then executed on another chain.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.lumio.io/start-building/lumio-on-solana-devnet/how-to-connect.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
