Modifying a Solana dApp to Support Eclipse: "Chomping Glass"
In this tutorial, we're going to take an existing Solana dApp and deploy it multichain to Eclipse Devnet. Specifically, we're going to use Jarry Xiao's Chomping Glass game as an example.
You can also take a look at the forked GitHub repo or the deployed frontend.
At a high level, developers should take the following steps:
Acquire Devnet tokens or Sepolia Testnet ETH
Deploy smart contract with the Eclipse Devnet RPC or Eclipse Testnet RPC
Set up developer wallet
Modify frontend
Test and deploy
Deploying the Smart Contracts
This part is easy, since smart contracts on Eclipse typically require few to no changes compared to the Solana deployment. We're going to use the Eclipse Devnet RPC for this example: https://staging-rpc.dev2.eclipsenetwork.xyz
The first step is to clone the Chomping Glass repo:
We assume that you've followed the Quick Start guide and configured your Solana CLI properly to point to the Eclipse Devnet RPC. Give yourself some devnet tokens: solana airdrop 10
Some programs might hardcode dependencies such as oracles or bridges. You should review your code to see where you might need to make changes and reach out to the Eclipse team if you need assistance.
Assuming there are no changes to be made, you can deploy the program as per usual:
You'll want to copy the program ID:
Deploying A New Frontend
For this section of the tutorial, we'll explore the simplest way to get the app working, which just involves creating a new frontend that interacts with Eclipse Devnet, separate from the frontend used for the Solana deployment.
Updating Hardcoded References
We start by looking through the React app to find any references to hardcoded addresses or keys.
In App.tsx:
The PROGRAM_ID
needs to be changed to the program ID from the deployment above. You might want to consider changing that address that the game is sending fees to!
Here's a spot where a block explorer link is hardcoded, which assumes that the only options are localhost or Solana mainnet:
We modify this to provide a third option:
We could have changed this reference too, but it's not really necessary for the purpose of this walkthrough:
In index.tsx, we see where the RPC connection referenced earlier is provided:
Seems like we don't need to touch this part, and instead we can just update that environment variable. You're likely familiar with how to set an environment variable given your frontend deployment. For create-react-app, you can add a .env file to the root of the project.
Suggested .env file:
Finally, we run the frontend and test it to make sure transactions are indeed going through and can be observed in the block explorer.
We run the app with npm start
. We need to add a custom config-overrides.js file to the root of the React project specified in this StackOverflow answer. We add one additional override not mentioned in the StackOverflow post:
And it works:
Adding Wallet Support
To use the dApp, you can set up an Eclipse developer wallet and modify the Solana wallet adapter to only show Eclipse compatible wallets. Note that the Solscan link that pops up on the page won't be correct since we didn't update that part, but you can check the developer console for a working link.
Deploying A Multichain Frontend
The above example was particularly simple. For a real deployment, you likely need to make the following changes as well:
Review where your smart contracts invoke other smart contracts or dependencies which might only exist on the Solana L1, and replace those with Eclipse's alternatives.
Update offchain infrastructure to support this additional RPC, possibly with a flag or a second deployment of your offchain infrastructure.
If you have any tokens deployed to Solana mainnet, you'll want to consider how you'll incorporate those into your Eclipse Mainnet deployment: maintaining the old mint authority on Solana and bridging tokens, deploying a second mint authority, or removing your application's dependency on tokens.
Modify your frontend to support both Solana and Eclipse simultaneously, rather than only supporting the Eclipse network such as the example above. This might be achieved via a toggle which changes which RPC the web app sends transactions to, and a prompt to tell the user to switch networks.
Last updated