Cryptokom
4.61K subscribers
18.7K photos
654 videos
44 files
13.8K links
Airdrop Fokus on testnet,node & Game Nft Channel, ada kelas belajar testnet gratis bagi pemula https://t.iss.one/+MBsxheIaWXdlZGI0
For advertisement contact : @cryptonewslearn1 @Cryptokombillions
Forpartnership: @Cryptokombillions
Download Telegram
PUMPPPPPP
Forwarded from Watcher Guru
JUST IN: πŸ‡«πŸ‡· Telegram Founder & CEO Pavel Durov has been released from police custody and is now being transferred to court.

@WatcherGuru
πŸ”₯7πŸ‘2
Okx Web3 x Plume Reward $10 USDT for 300 Winners : https://app.galxe.com/quest/PlumeNetwork/GCw1dtx5XZ
πŸͺ™BERIKUT WINNER LIST GIVEAWAY SOSIAL MEDIA

πŸ—³FB 1 :
- Anton Syahputra
- dhony
πŸ—³FB 2
- Bahasa arab ( nmnya arab )
- Alika
πŸ—³FB 3
- onxlee ter
- humaira and family
πŸ“±Tiktok
- tim
-KZA
TWITTER
-Daiya
-Jackpot
πŸ“±YOUTUBE
- FAQIHQDR
-Afterzerodesign
- rhebii
- rendy raditya
- darrenjay

Silahkan dm @cryptonewslearn untuk mengclaim reward sertakan bersama foto akun
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘4πŸ”₯3
GIVEAWAY KUIS REWARD POOL 100.000 DIGRUP MAS JANGAN LUPA IKUTAN DIPIMPIN SAMA DERFYNOL ALIAS YUDO

donate from Udin
@Udinme
πŸ”₯2
Hanya punya 2 akun πŸ˜’πŸ˜”
πŸ₯°2
🎁OKX Web3 x Plume Network
🎁Reward 10 πŸ’²USDC For 300 Winners

➑️Join Now
https://app.galxe.com/quest/PlumeNetwork/GCw1dtx5XZ
βž–Claim Faucet
βž–Complete All Tasks
βœ…Done
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”ΉGIVEAWAY INVITE BATAS WAKTU SAMPAI 10 SEPTEMBER YAAAA MOHON DIINGAT UNTUK YG IKUT MASIH ADA KESEMPATAN

➑️cara ikut silahkan :
buka bot
@cryptokominvite_bot
"
/link untuk mendapatkan link invite teman"
"
/check untuk check jumlah invite"
"
/leaderboard untuk check ranking"

πŸͺ™TOTAL HADIAH 900.000 RUPIAH
Please open Telegram to view this post
VIEW IN TELEGRAM
Send nomor dana buat 5 orang tercepat fcfs silahkan reply pesan ini
Kita bulan depan sama nunggu tanggal 26 lagi bang kaya kemarinπŸ˜‚ #CURUT
πŸ”₯2πŸ‘1
How to Running Story Protocol Node
There have been no promises or expectations set by the team at this time for the rewards

Server Specifications
Minimum Requirements:
4vcpu
8GB RAM
100GB Disk
10 MBit/s
Open Port: 8545, 26657, 30303, 1317
You can check free port on this command:
sudo lsof -i:(PORT NUMBER)

Not support if you running Dill Node, because port 30303 been used

1️⃣ Install Prerequisites:
➑️ sudo apt update && sudo apt upgrade -y
➑️ sudo apt install screen
➑️ sudo apt install -y ca-certificates zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev curl git wget make jq build-essential pkg-config lsb-release libssl-dev libreadline-dev libffi-dev gcc screen unzip lz4 python3 python3-pip
➑️ sudo apt install npm
➑️ nvm install 20
➑️ nvm use 20
MAKE SURE YOU ALREADY INSTALL DOCKER


2️⃣ Node Installation:
➑️ git clone https://github.com/storyprotocol/node-utils.git

Create 2 Session of this Step :
🟒 Execute GETH:
➑️ screen -S geth
➑️ cd node-utils/story-node-cli/linux && chmod +x run_commands.sh && sudo bash run_commands.sh
➑️ Choose number: 1 ⬅️

🟒 Execute Iliad:
➑️ screen -S iliad
➑️ cd node-utils/story-node-cli/linux && sudo bash run_commands.sh
➑️ Choose number: 2 ⬅️
➑️ Submit your Moniker, for example CRYPTOKOM

3️⃣ Install SDK & Wallet:
➑️ Install SDK: npm install --save @story-protocol/core-sdk [email protected]
➑️ If there issue with your SDK Install use this command: npm audit fix --force

🟒 Create Wallet:
➑️ nano createWallet.ts
import { config } from "dotenv";
import { privateKeyToAccount } from "viem/accounts";
import type { Address } from "viem";

// Load environment variables from .env file
config();

// Get the private key from the .env file
const PRIVATE_KEY = process.env.WALLET_PRIVATE_KEY || "0x";

// Create the account object using the private key
const account = privateKeyToAccount(PRIVATE_KEY as Address);

// Export the account object for use in other parts of your project
export default account;

// For demonstration, you can log the account address (not recommended for production)
console.log(`Wallet address: ${account.address}`);

CTRL + X and save your file
➑️ nano .env
WALLET_PRIVATE_KEY=0xprivatekey


4️⃣ Running your Node:
➑️ npx ts-node createWallet.ts

🟒 Create the Client Setup Script:
➑️ nano setupClient.ts
import { config as loadEnv } from "dotenv";
import { Account, privateKeyToAccount, Address } from 'viem/accounts';
import { StoryClient, StoryConfig } from "@story-protocol/core-sdk";
import { http } from 'viem'

// Load environment variables from .env file
loadEnv();

// Get the private key from the .env file and ensure it's valid
const privateKey: Address = process.env.WALLET_PRIVATE_KEY as Address;
const account: Account = privateKeyToAccount(privateKey);

// Configure the SDK client using the environment variables and the account
const config: StoryConfig = {
transport: http(process.env.RPC_PROVIDER_URL),
account: account, // the account object from above
chainId: '1513' // change from Sepolia
};

export const client = StoryClient.newClient(config);
console.log("SDK Client is set up and ready to use.");


Update your .env file:
➑️ nano .env
WALLET_PRIVATE_KEY=0xprivatekey
RPC_PROVIDER_URL=https://rpc.partner.testnet.storyprotocol.net

CTRL + X and save your file
➑️ Run the Client Setup Script: npx ts-node setupCleint.ts
Once the script runs successfully, your SDK will be ready to use


Source:
https://docs.story.foundation/docs/node-setup
https://medium.com/@huicomm/how-i-run-story-protocol-node-98e62d74b4b4
https://medium.com/@huicomm/how-to-run-story-protocol-node-ep2-sdk-wallet-3e6e184ac4ba
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘2πŸ”₯1