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 { ethers } from "ethers"; | |
| import fs from "fs"; | |
| import path from "path"; | |
| // Define the callback function type | |
| type ProcessJsonCallback = (json: any, path: string) => void; | |
| // Function to process a JSON file | |
| const processJsonFile = (filePath: string, callback: ProcessJsonCallback) => { | |
| try { |
OlderNewer