Skip to content

Instantly share code, notes, and snippets.

View gsw85's full-sized avatar
💭
I may be slow but I am getting there

SW. G. gsw85

💭
I may be slow but I am getting there
View GitHub Profile
@gsw85
gsw85 / getCreatorFromContract.js
Created September 22, 2022 18:09
Alchemy NFT API JS Version - Script to Get NFT Contract Creator Address
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) {