diff --git a/apps/dapp/src/helpers/getRemoteConfig.ts b/apps/dapp/src/helpers/getRemoteConfig.ts index 436e2b6..13c2486 100644 --- a/apps/dapp/src/helpers/getRemoteConfig.ts +++ b/apps/dapp/src/helpers/getRemoteConfig.ts @@ -1,7 +1,6 @@ -import axios from 'axios' -import localDeployment from '../../../contracts/.soroban/testnet.contracts.json'; import { configFile } from '@/constants/constants'; const isLocal = process.env.NEXT_PUBLIC_IS_LOCAL +const localDeployment = require('../../../contracts/.soroban/deployments.json') export const getRemoteConfig = async (network: string) => { if(isLocal === 'true') { return localDeployment