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
| const solanaWeb3 = require('@solana/web3.js'); | |
| const { Connection, programs } = require('@metaplex/js') | |
| const axios = require('axios'); | |
| // Check if the env variables have been set | |
| if(!process.env.PROJECT_ADDRESS || !process.env.DISCORD_URL) { | |
| console.log("Please set your environment variables!") | |
| return; | |
| } |