Eclipse Testnet

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 nodeInstall Cargo
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shrustc --version
cargo --versionInstall Solana CLI
sh -c "$(curl -sSfL https://release.solana.com/stable/install)"solana-keygen newsolana config set --url https://testnet.dev2.eclipsenetwork.xyzsolana airdrop 10Import 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 installBuild Smart Contract
npm run build:program-rustDeploy 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