Skip to content

Commit

Permalink
Update consts.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyfilyanin authored Jan 17, 2025
1 parent 3033344 commit a266a88
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions digit-recognition/frontend/src/consts.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
export const PROJECT_ID = import.meta.env
.VITE_WALLET_CONNECT_PROJECT_ID as string;
export const GEAR_API_NODE = import.meta.env.VITE_GEAR_API_NODE as string;
export const PROJECT_ID = process.env.VITE_WALLET_CONNECT_PROJECT_ID as string;
export const GEAR_API_NODE = process.env.VITE_GEAR_API_NODE as string;
export const ETH_CHAIN_ID = 17000; // (0x4268) Holesky
export const ETH_NODE_ADDRESS = import.meta.env.VITE_ETH_NODE_ADDRESS;
export const ETH_NODE_ADDRESS = process.env.VITE_ETH_NODE_ADDRESS as string;

export const DIGIT_RECOGNITION_CONTRACT_ADDRESS = import.meta.env
export const DIGIT_RECOGNITION_CONTRACT_ADDRESS = process.env
.VITE_CONTRACT_ADDRESS_DIGIT_RECOGNITION as `0x${string}`;

console.log("log envs:", {
Expand Down

0 comments on commit a266a88

Please sign in to comment.