This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Network, Alchemy } from "alchemy-sdk"; | |
| const settings = { | |
| apiKey: process.env.ALCHEMY_API_KEY, // Replace with your Alchemy API Key. | |
| network: Network.ETH_MAINNET, // Replace with your network. | |
| }; | |
| const alchemy = new Alchemy(settings); | |
| export async function getCreatorFromContract(contractAddress) { |