Skip to content
Merged
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
6 changes: 3 additions & 3 deletions extension/README.md.args.mjs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
export const skipQuickStart = true;

export const extraContents = `# Example Extension (ERC-20)
export const extraContents = ({ solidityFramework }) => `# Example Extension (ERC-20)

## Checkpoint 0: 📦 Environment 📚

> Start your local network (a local instance of a blockchain):
> Start your local ${solidityFramework} network (a local instance of a blockchain):

\`\`\`
yarn chain
Expand All @@ -26,4 +26,4 @@ yarn start
`;

// If this is passed it will override the full content of the README file
export const fullContentOverride = ""
export const fullContentOverride = "";
4 changes: 2 additions & 2 deletions extension/packages/nextjs/app/page.tsx.args.mjs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export const preContent = `import { RocketLaunchIcon } from '@heroicons/react/24/outline'`;

export const description = `
export const description = ({ solidityFramework }) => `
<div className="flex mt-4 bg-green-100 gap-2 p-4 justify-center items-center rounded-lg">
<RocketLaunchIcon className="h-8 w-8 fill-green-100" />
<p>Your description block</p>
<p>ERC-20 extension example using ${solidityFramework}</p>
</div>
`;

Expand Down