2023-05-16 10:39:52 +00:00
|
|
|
require('dotenv').config({ path: './.env.local' })
|
|
|
|
|
2024-02-06 09:27:58 +00:00
|
|
|
if (!process.env.NEXT_PUBLIC_NETWORK) {
|
|
|
|
throw 'NEXT_PUBLIC_NETWORK is not defined. Set ot to "mainnet" or "testnet".'
|
2023-07-17 09:01:00 +00:00
|
|
|
}
|
2024-01-03 14:50:38 +00:00
|
|
|
if (!process.env.NEXT_PUBLIC_WALLET_CONNECT_ID) {
|
2024-02-06 09:27:58 +00:00
|
|
|
throw 'NEXT_PUBLIC_WALLET_CONNECT_ID is not defined. Get a WalletConnect project ID from https://walletconnect.com/.'
|
2023-11-16 10:16:16 +00:00
|
|
|
}
|
2023-07-17 09:01:00 +00:00
|
|
|
|
|
|
|
console.log('✅ Required env variables set')
|