From 35d3a7aa12da55375cba7463ac20170ec4e960f3 Mon Sep 17 00:00:00 2001 From: Dincho Todorov Date: Mon, 4 Nov 2024 18:24:21 +0200 Subject: [PATCH] Add localnet .env config --- .env.example => .env.demo | 0 .env.localnet | 5 +++++ .gitignore | 3 ++- 3 files changed, 7 insertions(+), 1 deletion(-) rename .env.example => .env.demo (100%) create mode 100644 .env.localnet diff --git a/.env.example b/.env.demo similarity index 100% rename from .env.example rename to .env.demo diff --git a/.env.localnet b/.env.localnet new file mode 100644 index 0000000..e7c34ce --- /dev/null +++ b/.env.localnet @@ -0,0 +1,5 @@ +AE_FAUCET_URL="http://localhost:28030/" +AE_WALLET_URL="http://localhost:28010/" +AE_NODE_URL="http://localhost:23013/" +STAKING_CONTRACT="ct_LRbi65kmLtE7YMkG6mvG5TxAXTsPJDZjAtsPuaXtRyPA7gnfJ" +HC_ELECTION_CONTRACT="ct_t7ESuRFvGdYHwM6KJhKbSnFUJQhnB9aCFed1RWR89ShNDgwWA" diff --git a/.gitignore b/.gitignore index c52813b..e903872 100644 --- a/.gitignore +++ b/.gitignore @@ -5,5 +5,6 @@ node_modules /package .env .env.* -!.env.example +!.env.demo +!.env.localnet .idea