Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ FRONTEND_BUILD_TARGET=final
VITE_JSON_RPC_SERVER_URL='http://127.0.0.1:4000/api' # if VITE_PROXY_ENABLED = 'true' change to '/api'
VITE_WS_SERVER_URL= 'ws://127.0.0.1:4000' # if VITE_PROXY_ENABLED = 'true' change to '/'
VITE_PLAUSIBLE_DOMAIN='studio.genlayer.com'
VITE_FINALITY_WINDOW_APPEAL_FAILED_REDUCTION=0.2


# GenVM Configuration
Expand Down Expand Up @@ -77,6 +78,9 @@ FRONTEND_BUILD_TARGET = 'final' # change to 'dev' to run in dev mode
HARDHAT_URL = 'http://hardhat'
HARDHAT_PORT = '8545'
HARDHAT_PRIVATE_KEY = '0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80'
HARDHAT_CHAIN_ID=61999
COMPOSE_PROFILES='hardhat'

BACKEND_BUILD_TARGET = 'debug'
VITE_FINALITY_WINDOW=1
DEFAULT_CONSENSUS_MAX_ROTATIONS=3
2 changes: 1 addition & 1 deletion esbuild.config.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default {
banner: {
js: `const _importMetaUrl = new URL(import.meta.url).pathname;`,
},
external: ["commander", "dockerode", "dotenv", "ethers", "inquirer", "update-check", "ssh2", "fs-extra"]
external: ["commander", "dockerode", "dotenv", "ethers", "inquirer", "update-check", "ssh2", "fs-extra", "esbuild"]
},
watch: true,
};
2 changes: 1 addition & 1 deletion esbuild.config.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default {
banner: {
js: `const _importMetaUrl = new URL(import.meta.url).pathname;`,
},
external: ["commander", "dockerode", "dotenv", "ethers", "inquirer", "update-check", "ssh2", "fs-extra"]
external: ["commander", "dockerode", "dotenv", "ethers", "inquirer", "update-check", "ssh2", "fs-extra", "esbuild"]
},
watch: false,
};
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"dotenv": "^16.4.5",
"ethers": "^6.13.4",
"fs-extra": "^11.3.0",
"genlayer-js": "^0.6.0",
"genlayer-js": "^0.9.0",
"inquirer": "^12.0.0",
"node-fetch": "^3.0.0",
"open": "^10.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/config/simulator.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const localnetCompatibleVersion = "v0.42.0";
export const localnetCompatibleVersion = "v0.51.0";
export const DEFAULT_JSON_RPC_URL = "http://localhost:4000/api";
export const CONTAINERS_NAME_PREFIX = "/genlayer-";
export const IMAGES_NAME_PREFIX = "yeagerai";
Expand Down