Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix missing files #7806

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
33 changes: 33 additions & 0 deletions .env.defaults
Original file line number Diff line number Diff line change
@@ -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'
1 change: 1 addition & 0 deletions apps/web/scripts/compile-ajv-validators.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 } })
Expand Down