-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(contracts): update .env files and README for deployment
Updated the .env.localhost and .env.example with new keys and URLs. Enhanced the README to clarify deployment commands. Added the `EntitlementsManager` facet address to deployments.
- Loading branch information
Showing
4 changed files
with
31 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,27 @@ | ||
# RPC_URL is the URL of the Ethereum node to use for deployment | ||
BASE_ANVIL_RPC_URL="http://127.0.0.1:8545" | ||
BASE_SEPOLIA_RPC_URL= | ||
BASE_ANVIL_RPC_URL="${BASE_ANVIL_RPC_URL:-http://127.0.0.1:8545}" | ||
RIVER_ANVIL_RPC_URL="${RIVER_ANVIL_RPC_URL:-http://127.0.0.1:8546}" | ||
|
||
# PRIVATE_KEY is the private key of the account to use for deployment | ||
LOCAL_PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 | ||
PRODUCTION_ADDRESS=0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 | ||
SENDER_ADDRESS= | ||
HD_PATH="m/44\'/60\'/0\'/0/0" | ||
|
||
# ETHERSCAN_API_KEY is the API key for Etherscan | ||
# API Keys to use when verifying contracts on etherscan | ||
ETHERSCAN_API_KEY= | ||
BASESCAN_URL= | ||
BASESCAN_API_KEY= | ||
|
||
BLOCKSCOUT_SEPOLIA_URL= | ||
BASESCAN_SEPOLIA_API_KEY= | ||
BLOCKSCOUT_BASE_API_KEY= | ||
BLOCKSCOUT_SEPOLIA_API_KEY= | ||
RIVERSCAN_API_KEY= | ||
|
||
# URLs foundry will use to verify contracts | ||
BASESCAN_URL="https://api.basescan.org/api" | ||
BASESCAN_SEPOLIA_URL="https://api-sepolia.basescan.org/api/v2" | ||
BLOCKSCOUT_BASE_URL="https://base.blockscout.com/api" | ||
BLOCKSCOUT_SEPOLIA_URL="https://base-sepolia.blockscout.com/api/v2" | ||
RIVERSCAN_URL= | ||
RIVERSCAN_API_KEY= | ||
RIVERSCAN_DEVNET_URL= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
contracts/deployments/gamma/base/addresses/entitlementsManagerFacet.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"address": "0x629EF193c7d626EC7C6AEf4c650c8fe268b1d21f" | ||
} |