mirror of
https://github.com/lens-protocol/core.git
synced 2026-01-09 22:28:04 -05:00
fix: Ensuring empty RPC URLs values are string type
This commit is contained in:
@@ -31,7 +31,7 @@ const TRACK_GAS = process.env.TRACK_GAS === 'true';
|
||||
const BLOCK_EXPLORER_KEY = process.env.BLOCK_EXPLORER_KEY || '';
|
||||
|
||||
const getCommonNetworkConfig = (networkName: eNetwork, networkId: number) => ({
|
||||
url: NETWORKS_RPC_URL[networkName],
|
||||
url: NETWORKS_RPC_URL[networkName] ?? '',
|
||||
accounts: {
|
||||
mnemonic: MNEMONIC,
|
||||
path: MNEMONIC_PATH,
|
||||
|
||||
Reference in New Issue
Block a user