From 3105189d4c7b41bbfb5d5c73cb5bccbc933591c2 Mon Sep 17 00:00:00 2001 From: aitbc Date: Mon, 11 May 2026 13:54:15 +0200 Subject: [PATCH] refactor: convert deploy_aitoken_staging.js to ES6 module syntax - Changed require("hardhat") to import statement - Updated from CommonJS to ES6 module format --- contracts/scripts/deploy_aitoken_staging.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/scripts/deploy_aitoken_staging.js b/contracts/scripts/deploy_aitoken_staging.js index bf24bdc3..94952c15 100644 --- a/contracts/scripts/deploy_aitoken_staging.js +++ b/contracts/scripts/deploy_aitoken_staging.js @@ -1,4 +1,4 @@ -const hre = require("hardhat"); +import hre from "hardhat"; async function main() { console.log("Deploying AIToken to testnet...");