Content pfp
Content
@
0 reply
0 recast
0 reaction

L U K K Z ꧁IP꧂ pfp
L U K K Z ꧁IP꧂
@0xlukkz
How to Run a Story Protocol Node 🌐 Since ive seen a lot of people struggle, I wanted to help and teach you how to set up a node on Story Protocol so here we go πŸŽ‰ 1️⃣ Choose Your VPS A Virtual Private Server (VPS) is essential for hosting your node. Popular options include: - Contabo: Affordable and reliable. - Aeza: High-performance servers. πŸ›  Recommended Specs: CPU: 4 cores RAM: 8GB SSD: At least 100GB. πŸ’‘ Tip: Choose a server location close to your target audience for optimal performance. πŸ‘‡ πŸ‘‡Thread continues in comments πŸ‘‡ πŸ‘‡
1 reply
0 recast
2 reactions

L U K K Z ꧁IP꧂ pfp
L U K K Z ꧁IP꧂
@0xlukkz
2️⃣ Set Up the Environment Once you have your VPS: - Access your server via SSH. (Paste this code on your cmd πŸ‘‡ ) ----------------------------- ssh user@your_server_ip ----------------------------- - Install required dependencies. (Paste this code on your cmd πŸ‘‡ ) ----------------------------- sudo apt update && sudo apt install -y git curl wget build-essential ----------------------------- - Install Docker. (Paste this code on your cmd πŸ‘‡ ) ----------------------------- curl -fsSL https://get.docker.com | sh sudo usermod -aG docker $USER ----------------------------- - Install Node.js & Yarn. (Paste this code on your cmd πŸ‘‡ ) ----------------------------- curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash - sudo apt install -y nodejs npm install --global yarn -----------------------------
1 reply
0 recast
0 reaction

L U K K Z ꧁IP꧂ pfp
L U K K Z ꧁IP꧂
@0xlukkz
3️⃣ Clone the Story Protocol Repo - Get the official code from GitHub: (Paste this code on your cmd πŸ‘‡ ) ----------------------------- git clone https://github.com/storyprotocol/protocol-core-v1.git cd protocol-core-v1 ----------------------------- 4️⃣ Set Up Your Environment Variables You'll need to configure the .env file with the required details for deployment. - Create or edit your .env file ----------------------------- RPC_URL=https://rpc.storychain.network PRIVATE_KEY=your_private_key ----------------------------- 5️⃣ Deploy the Contracts - Navigate to the deployment script: ----------------------------- cd deploy ----------------------------- - Run the main deployment script: ----------------------------- forge script Main.s.sol --rpc-url $RPC_URL --private-key $PRIVATE_KEY --broadcast -----------------------------
1 reply
0 recast
0 reaction