forked from ubiquity/ubiquity-dollar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
32 additions
and
13 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
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,11 +1,15 @@ | ||
# admin private key (grants access to restricted contracts methods) | ||
ADMIN_PRIVATE_KEY="" | ||
# Admin private key (grants access to restricted contracts methods). | ||
# By default set to the private key from the 0x70997970c51812dc3a010c7d01b50e0d17dc79c8 address | ||
# which is the 2nd address derived from test mnemonic "test test test test test test test test test test test junk". | ||
ADMIN_PRIVATE_KEY="0x59c6995e998f97a5a0044966f0945389dc9e86dae88c7a8412f4603b6b78690d" | ||
|
||
# owner private key (grants access to updating Diamond facets and setting TWAP oracle address) | ||
OWNER_PRIVATE_KEY="" | ||
# Owner private key (grants access to updating Diamond facets and setting TWAP oracle address). | ||
# By default set to the private key from the 0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266 address | ||
# which is the 1st address derived from test mnemonic "test test test test test test test test test test test junk". | ||
OWNER_PRIVATE_KEY="0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80" | ||
|
||
# RPC URL (used in contract migrations) | ||
# - anvil: http://127.0.0.1:8545 | ||
# - testnet: https://ethereum-sepolia.publicnode.com | ||
# - mainnet: https://eth.ubq.fi/v1/mainnet | ||
RPC_URL="" | ||
RPC_URL="http://127.0.0.1:8545" |