Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
orpheuslummis committed May 8, 2024
1 parent 514f091 commit 71a286e
Show file tree
Hide file tree
Showing 5 changed files with 84 additions and 1,344 deletions.
26 changes: 19 additions & 7 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
# local, base_sepolia, base_mainnet
CHAIN_SELECTION="local"
# specify the USDC address for the selected chain
USDC_ADDRESS_LOCAL="0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512" # not sure how replicable this one is
USDC_ADDRESS_BASE_SEPOLIA="0x967AB65ef14c58bD4DcfFeaAA1ADb40a022140E5"
USDC_ADDRESS_BASE_MAINNET="0x036CbD53842c5426634e7929541eC2318f3dCF7e"
# specify the ASTAVERDE address for the selected chain
ASTAVERDE_ADDRESS_LOCAL="0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512"
ASTAVERDE_ADDRESS_BASE_SEPOLIA=""
ASTAVERDE_ADDRESS_BASE_MAINNET=""
# RPC and services
ALCHEMY_APIKEY="iLBP5cYsA21h9sQw1rBl9_n7sng_zlMZ"
WALLET_CONNECT_PROJECT_ID="0ae1a048225917dfb3d8047f884465f1"
NODE_HTTPS_URL="https://base-sepolia.g.alchemy.com/v2/"
NODE_WSS_URL="wss://base-sepolia.g.alchemy.com/v2/"
#
MNEMONIC="test test test test test test test test test test test junk"
ALCHEMY_APIKEY="zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz"
PRIVATE_KEY="TBD"
ALCHEMY_APIKEY="TBD"
CHAIN_SELECTION="base-sepolia"
USDC_ADDRESS="TBD"
EMAIL=""
CONTRACT_ADDRESS=""
ETHERSCAN_BASE_SEPOLIA_API_KEY=""
ETHERSCAN_BASE_API_KEY=""
# for minting
IMAGE_FOLDER="./example_nftdata/images/"
CSV_PATH="./example_nftdata/ok.csv"
CSV_PATH="./example_nftdata/ok.csv"
EMAIL=""
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@
"task:mint": "node ./scripts/mint.mjs",
"task:events": "node ./scripts/events/index.mjs",
"typechain": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain",
"webapp:dev": "cd webapp && npm run dev",
"webapp:build": "cd webapp && npm run build",
"webapp:dev": "source .env && cd webapp && npm run dev",
"webapp:build": "source .env && cd webapp && npm run build",
"webapp:install": "cd webapp && npm install",
"watch": "nodemon --watch ./contracts --exec 'npm run compile && npm run test'",
"watch:dev": "nodemon --watch ./contracts --ext sol --exec 'npm run compile && npm run deploy:local'",
Expand Down
4 changes: 0 additions & 4 deletions webapp/src/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,3 @@ export const navigationLinks = [
];

export const IPFS_GATEWAY_URL = "https://gateway.pinata.cloud/ipfs/";

export const CHAIN_SELECTION = process.env.NEXT_PUBLIC_CHAIN_SELECTION ||
process.env.CHAIN_SELECTION;
console.log("config: CHAIN_SELECTION", CHAIN_SELECTION);
Loading

0 comments on commit 71a286e

Please sign in to comment.