removed .env-secret; fixed .gitignore; updated package.json for deploy pool script

This commit is contained in:
tim
2025-12-10 12:30:13 -04:00
parent b2abf2073e
commit 1c2e267136
3 changed files with 4 additions and 11 deletions

View File

@@ -1,11 +0,0 @@
# Secret environment variables - DO NOT COMMIT TO GIT
# Add this file to .gitignore
# RPC Node Connection
MAINNET_RPC_URL=https://eth-1.dxod.org/joEnzz51UH6Bc2yU
ALCHEMY_RPC_URL=https://eth-mainnet.g.alchemy.com/v2/o_eQWfo1Rb7qZKpl_vBRL
# Receiver Address
RECEIVER_ADDRESS=0xd3b310bd32d782f89eea49cb79656bcaccde7213
PRIVATE_KEY=89c8f2542b5ff7f3cf0b73255e0a8d79d89c2be598e7f272a275a380ff56a212

3
.gitignore vendored
View File

@@ -5,6 +5,9 @@
/.pnp /.pnp
.pnp.js .pnp.js
*secret*
.env
# testing # testing
/coverage /coverage

View File

@@ -8,6 +8,7 @@
"create-pool": "node create_pool_from_prices.js" "create-pool": "node create_pool_from_prices.js"
}, },
"dependencies": { "dependencies": {
"dotenv": "^17.2.3",
"ethers": "^5.7.2" "ethers": "^5.7.2"
} }
} }