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
| require("dotenv").config(); | |
| const { Web3} = require("web3"); | |
| const axios = require("axios"); | |
| const fs = require("fs"); | |
| const RPC_URL = process.env.RPC_URL; | |
| const CONTRACT_ADDRESS = process.env.CONTRACT_ADDRESS; | |
| const IPFS_GATEWAY = process.env.IPFS_GATEWAY || "https://ipfs.io/ipfs"; | |
| const DATE_ENV = process.env.DATE; |