-
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 11 replies
-
@lausannel Make sure to do these changes
|
Beta Was this translation helpful? Give feedback.
-
Push to GitHub; I will look into it. |
Beta Was this translation helpful? Give feedback.
-
While trying to get more information, I wrote the callback function in getEntranceFee() |
Beta Was this translation helpful? Give feedback.
-
OKay, I found the reason here, and I am really confusing... import * as contractAddresses from "./contractAddress.json";
import * as abi from "./abi.json";
export { contractAddresses, abi }; After Change export { default as contractAddresses } from "./contractAddress.json";
export { default as abi } from "./abi.json"; |
Beta Was this translation helpful? Give feedback.
-
I could not fix this error for a long time and figured out that there was no need to It was adding a stringified version of json in my |
Beta Was this translation helpful? Give feedback.
OKay, I found the reason here, and I am really confusing...
In
constants/index.ts
Original
After Change