Skip to content

Instantly share code, notes, and snippets.

@Niweera
Last active February 26, 2022 18:58
Show Gist options
  • Save Niweera/f433d570df40918d870b522406abde5f to your computer and use it in GitHub Desktop.
Save Niweera/f433d570df40918d870b522406abde5f to your computer and use it in GitHub Desktop.
Upload image to OpenSea
const createAssetURL = `https://opensea.io/collection/${config.COLLECTION_NAME}/assets/create`
const uploadImage = async (page, filepath) => {
await page.bringToFront();
await page.goto(createAssetURL);
await page.waitForSelector("#media");
const elementHandle = await page.$("#media");
await elementHandle.uploadFile(filepath);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment