"Owniverse-Solana" integrates Solana into the OWNiverse platform, enabling users to create and manage tokens on Solana with ease. This module combines Solana's fast, low-cost transactions with OWNiverse’s user-friendly design, making blockchain accessible to everyone.
To set up the development environment for Solana, follow these steps:
- Node.js (v14.x or higher)
- npm or yarn
- Git
- Rust (for Solana program development)
- Solana CLI
- Anchor Framework (optional but recommended)
- Install Node.js and npm/yarn: Ensure Node.js is installed. You can download it here. Verify installation with:
node -v
npm -v- Install Rust: Rust is required for building smart contracts on Solana.
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh source $HOME/.cargo/env- Install Solana CLI: Download and install the Solana CLI tool.
sh -c "$(curl -sSfL https://release.solana.com/v1.18.26/install)"After installation, run the following command to apply the PATH changes without restarting your terminal:
export PATH="/Users/your-username/.local/share/solana/install/active_release/bin:$PATH"Verify installation:
solana --version- Configure Solana CLI to use Devnet:
solana config set --url https://api.devnet.solana.com- Install Anchor Framework (Optional): Anchor simplifies the development of Solana programs.
cargo install --git https://github.com/coral-xyz/anchor avm --locked --force
avm install latest
avm use latest
- Clone the Repository: Clone the repository to start developing.
git clone https://github.com/pannatron/Owniverse-Solana.git
cd Owniverse-Solana