We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b722fb7 commit 17218e3Copy full SHA for 17218e3
hardhat.config.ts
@@ -10,12 +10,13 @@ const config: HardhatUserConfig = {
10
solidity: {
11
compilers: [
12
{
13
- version: "0.8.17",
+ version: "0.8.24",
14
settings: {
15
optimizer: {
16
enabled: true,
17
runs: 200,
18
},
19
+ viaIR: true,
20
21
22
],
tasks/projectCreation.ts
@@ -61,7 +61,7 @@ interface ChipData {
61
62
// Initialize Supabase client using environment variables
63
const supabaseUrl = process.env.SUPABASE_URL!;
64
-const supabaseAnonKey = process.env.SUPABASE_ANON_API_KEY!;
+const supabaseAnonKey = process.env.SUPABASE_ANON_KEY!;
65
const supabase = createClient(supabaseUrl, supabaseAnonKey);
66
67
task("createProject", "Create a new project")
0 commit comments