Skip to content

Commit 17218e3

Browse files
committed
revert supabase key name.
1 parent b722fb7 commit 17218e3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Diff for: hardhat.config.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ const config: HardhatUserConfig = {
1010
solidity: {
1111
compilers: [
1212
{
13-
version: "0.8.17",
13+
version: "0.8.24",
1414
settings: {
1515
optimizer: {
1616
enabled: true,
1717
runs: 200,
1818
},
19+
viaIR: true,
1920
},
2021
},
2122
],

Diff for: tasks/projectCreation.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ interface ChipData {
6161

6262
// Initialize Supabase client using environment variables
6363
const supabaseUrl = process.env.SUPABASE_URL!;
64-
const supabaseAnonKey = process.env.SUPABASE_ANON_API_KEY!;
64+
const supabaseAnonKey = process.env.SUPABASE_ANON_KEY!;
6565
const supabase = createClient(supabaseUrl, supabaseAnonKey);
6666

6767
task("createProject", "Create a new project")

0 commit comments

Comments
 (0)