Skip to content

Commit 6c64506

Browse files
committed
Clean
1 parent c47f370 commit 6c64506

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

packages/sharing-smart-contract/config/env.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Hardhat Ignition does not support ESM modules, so we use CommonJS syntax.
22
// TODO refactor this to use ESM syntax when Hardhat Ignition supports it.
33

4-
require('dotenv/config');
4+
require('dotenv/config.js');
55
const { z } = require('zod');
66

77
const addressRegex = /(^|\b)(0x)?[0-9a-fA-F]{64}(\b|$)/;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import env from './env.cjs';
1+
import _env from './env.cjs';
22

3-
export const env = env.env;
3+
export const env = _env.env;

packages/sharing-smart-contract/hardhat.config.cjs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,6 @@ module.exports = {
5555
],
5656
blockGasLimit: 30_000_000,
5757
},
58-
'local-bellecour-fork': {
59-
...bellecourBase,
60-
url: 'http://127.0.0.1:8545',
61-
},
6258
// poco-chain native config
6359
'dev-native': {
6460
chainId: 65535,

0 commit comments

Comments
 (0)