From 63ec01e240f0e2a6159b84cf22868fe8c9f3627c Mon Sep 17 00:00:00 2001 From: Lucas Leclerc Date: Tue, 6 Aug 2024 14:34:51 +0200 Subject: [PATCH] feat(p2p/proxy_workshop): add .env example --- p2p/6.Create_a_proxy/utils/.env.sample | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 p2p/6.Create_a_proxy/utils/.env.sample diff --git a/p2p/6.Create_a_proxy/utils/.env.sample b/p2p/6.Create_a_proxy/utils/.env.sample new file mode 100644 index 00000000..eb246e5c --- /dev/null +++ b/p2p/6.Create_a_proxy/utils/.env.sample @@ -0,0 +1,11 @@ +# This is the private key of your account, you can get it in metamask +PRIVATE_KEY= +# This is the address of your account, the one associated with your private key +ADMIN_ADDRESS= +# Alchemy node url for ethereum sepolia network +RPC_URL= +# The address of your deployed ERC-1967 contract +PROXY= +# The address of the counter contract +CONTRACT_V1= +CONTRACT_V2= \ No newline at end of file