Eclipse Testnet

This marks a significant step towards bringing the Solana Virtual Machine (SVM) to Ethereum L2.

Docs Official : https://docs.eclipse.builders/building-on-eclipse/getting-started

Twitter : https://twitter.com/EclipseFND

Discord :

Install Tools

sudo apt install npm
npm install -g yarn 
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
source ~/.bashrc
nvm install node

Install Cargo

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustc --version
cargo --version

Install Solana CLI

sh -c "$(curl -sSfL https://release.solana.com/stable/install)"
solana-keygen new
solana config set --url https://testnet.dev2.eclipsenetwork.xyz
solana airdrop 10

Import address to Salmon Wallet

Fund eth sepolia tou your address and Get Faucet Eclipse

Next, we'll clone the Solana Hello World repository and install the dependencies

git clone https://github.com/solana-labs/example-helloworld
cd example-helloworld
npm install

Build Smart Contract

npm run build:program-rust

Deploy Smart Contract

solana program deploy dist/program/helloworld.so

Save Program ID and Fill Form

npm run start

Check on https://explorer.dev.eclipsenetwork.xyz/ paste Program ID and scroll down on transaction history

Example Deploy Success : https://explorer.dev.eclipsenetwork.xyz/tx/5kA5XinBduPkm1Po8uKqA5zxPqVPPF7HVQHETNqcMWWvRxwzMXpRGjP8WdZkjGM5SQdWrx8bTYKTagcFRrQockcQ?cluster=testnet

Last updated