Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ You'll need to have the following tools installed in your machine:
First, install the Scaffold-ETH 2 CTF extension with create-eth:

```bash
npx create-eth@0.1.0 -e buidlguidl/ctf.buidlguidl.com:extension
npx [email protected].4 -e buidlguidl/ctf.buidlguidl.com:extension
```

This will create a new folder with all the tools you need to play the CTF locally. Afterward, you’ll be able to deploy the solutions to Optimism and capture the flags in the [live game](https://ctf.buidlguidl.com).
Expand Down
2 changes: 1 addition & 1 deletion extension/packages/foundry/script/Deploy.s.sol.args.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const deploymentsScriptsImports = `// import { DeploySolution2 } from "./DeploySolution2.s.sol";`;
export const preContent = `// import { DeploySolution2 } from "./DeploySolution2.s.sol";`;
export const deploymentsLogic = `
// Deploy Solution 2
// DeploySolution2 deploySolution2 = new DeploySolution2();
Expand Down
2 changes: 1 addition & 1 deletion extension/packages/hardhat/hardhat.config.ts.args.mjs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const imports = `import "./tasks/generateTsAbisCTFTask";`;
export const preContent = `import "./tasks/generateTsAbisCTFTask";`;
2 changes: 1 addition & 1 deletion extension/packages/nextjs/app/page.tsx.args.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const imports = `import { FlagTracker } from "~~/components/FlagTracker";`;
export const preContent = `import { FlagTracker } from "~~/components/FlagTracker";`;

export const description = `
<div className="mt-8 max-w-2xl mx-auto">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const providerNames = "FlagMintedNotifier";
export const providerSetups = ``;
export const providerImports = `import { FlagMintedNotifier } from "~~/components/FlagMintedNotifier";`;
export const providerProps = ``;
export const preContent = `import { FlagMintedNotifier } from "~~/components/FlagMintedNotifier";`;
export const extraProviders = {
FlagMintedNotifier: {},
};