From 758a30a1d075c87f4d37d59f4aa1097e8f559ce6 Mon Sep 17 00:00:00 2001 From: Tanya S <120410716+stubbsta@users.noreply.github.com> Date: Fri, 8 Aug 2025 11:23:00 +0200 Subject: [PATCH] chore: Add missing variable for eth client address and examples for rln cred (#174) --- .env.example.rln => .env.example.publisher | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) rename .env.example.rln => .env.example.publisher (67%) diff --git a/.env.example.rln b/.env.example.publisher similarity index 67% rename from .env.example.rln rename to .env.example.publisher index 998e639..7ce80ee 100644 --- a/.env.example.rln +++ b/.env.example.publisher @@ -1,12 +1,16 @@ ## RLN Credentials - EXPERIMENTAL ## If you have/want an RLN membership to send messages +# RPC URL for accessing testnet via HTTP. +# e.g. https://linea-sepolia.infura.io/v3/123aa110320f4aec179150fba1e1b1b1 +RLN_RELAY_ETH_CLIENT_ADDRESS=https://linea-sepolia.infura.io/v3/ + # Account of testnet where you have Linea Sepolia ETH that would be staked into RLN contract. # e.g.: ETH_TESTNET_ACCOUNT=0xbecd1546a397a6bad875247d51c4c6da0e469021 ETH_TESTNET_ACCOUNT= # Address of the RLN Membership Token contract on Linea Sepolia used to pay for membership. -TOKEN_CONTRACT_ADDRESS= +TOKEN_CONTRACT_ADDRESS=0xd17e184e3c1941585a3edcb3a10367da6326d844 # Private key of testnet where you have Linea Sepolia ETH that would be staked into RLN contract. # Note: make sure you don't use the '0x' prefix. @@ -14,6 +18,5 @@ TOKEN_CONTRACT_ADDRESS= # e.g. ETH_TESTNET_KEY=abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234abcd1234 ETH_TESTNET_KEY= -# Path and password to the keystore file -RLN_RELAY_CRED_PATH= -RLN_RELAY_CRED_PASSWORD= \ No newline at end of file +# Password you would like to use to protect your RLN membership. +RLN_RELAY_CRED_PASSWORD="my_secure_keystore_password" \ No newline at end of file