File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed
packages/sharing-smart-contract Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 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 ' ) ;
55const { z } = require ( 'zod' ) ;
66
77const addressRegex = / ( ^ | \b ) ( 0 x ) ? [ 0 - 9 a - f A - F ] { 64 } ( \b | $ ) / ;
Original file line number Diff line number Diff line change 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 ;
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments