I wouldike to know how can I convert variable from my env file :
.env :
ID=10 .js :
export const injectedConnector = new InjectedConnector({ supportedChainIds: [1, process.env["ID"];], }); Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about CollectivesStack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
Explore Stack InternalI wouldike to know how can I convert variable from my env file :
.env :
ID=10 .js :
export const injectedConnector = new InjectedConnector({ supportedChainIds: [1, process.env["ID"];], });
parseInt(process.env["ID"], 10)