diff --git a/.env.defaults b/.env.defaults new file mode 100644 index 00000000000..25dcfe67634 --- /dev/null +++ b/.env.defaults @@ -0,0 +1,33 @@ +ALCHEMY_API_KEY='key' +AMPLITUDE_EXPERIMENTS_DEPLOYMENT_KEY='key' +APPSFLYER_API_KEY='key' +APPSFLYER_APP_ID=123 +DATADOG_CLIENT_TOKEN='key' +DATADOG_PROJECT_ID=123 +INFURA_KEY='key' +ONESIGNAL_APP_ID=123 +OPENAI_API_KEY='key' +QUICKNODE_ARBITRUM_RPC_URL='https://api.uniswap.org' +QUICKNODE_BNB_RPC_URL='https://api.uniswap.org' +QUICKNODE_MAINNET_RPC_URL='https://api.uniswap.org' +QUICKNODE_SEPOLIA_RPC_URL='https://api.uniswap.org' +QUICKNODE_ZORA_RPC_URL='https://api.uniswap.org' +QUICKNODE_ZKSYNC_RPC_URL='https://api.uniswap.org' +QUICKNODE_BLAST_RPC_URL='https://api.uniswap.org' +QUICKNODE_AVAX_RPC_URL='https://api.uniswap.org' +QUICKNODE_BASE_RPC_URL='https://api.uniswap.org' +QUICKNODE_CELO_RPC_URL='https://api.uniswap.org' +QUICKNODE_OP_RPC_URL='https://api.uniswap.org' +QUICKNODE_POLYGON_RPC_URL='https://api.uniswap.org' +QUICKNODE_WORLDCHAIN_RPC_URL='https://api.uniswap.org' +QUICKNODE_ASTROCHAIN_SEPOLIA_RPC_URL='https://api.uniswap.org' +SENTRY_DSN='http://sentry.com' +SHAKE_CLIENT_ID=123 +SHAKE_CLIENT_SECRET=123 +SIMPLEHASH_API_KEY='key' +SIMPLEHASH_API_URL='https://api.simplehash.com' +STATSIG_PROXY_URL='https://api.statsig.com' +TRADING_API_KEY='key' +UNISWAP_API_KEY='key' +WALLETCONNECT_PROJECT_ID=123 +FIREBASE_APP_CHECK_DEBUG_TOKEN='token' \ No newline at end of file diff --git a/apps/web/scripts/compile-ajv-validators.js b/apps/web/scripts/compile-ajv-validators.js index 965a479d482..e407ea020ec 100644 --- a/apps/web/scripts/compile-ajv-validators.js +++ b/apps/web/scripts/compile-ajv-validators.js @@ -11,6 +11,7 @@ const tokenListAjv = new Ajv({ code: { source: true, esm: true } }) addFormats(tokenListAjv) const validateTokenList = tokenListAjv.compile(schema) let tokenListModuleCode = standaloneCode(tokenListAjv, validateTokenList) +fs.mkdirSync(path.join(__dirname, '../src/utils/__generated__'), { recursive: true }) fs.writeFileSync(path.join(__dirname, '../src/utils/__generated__/validateTokenList.js'), tokenListModuleCode) const tokensAjv = new Ajv({ code: { source: true, esm: true } })