Observation: Network config related
about 1 year ago by defiman1729
while trying "alchemy-sdk" as a novice I had typed-
const config = {
apiKey: process.env.ALCHEMY_KEY,
network: Network.GOERLI,
};
instead or
const config = {
apiKey: process.env.ALCHEMY_KEY,
network: Network.ETH_GOERLI,
};
what i observed was that I was able to retrieve my main Net information.
shouldn't I be getting an error?