Skip to content
Open

pr #4

Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
c112b63
feat: initial project setup
Feb 17, 2026
da22669
test
Feb 17, 2026
b821826
chore: clean gitignore and remove tracked junk files
Feb 17, 2026
f001d1d
chore: remove AI config files from tracking
Feb 17, 2026
e8e74ec
ROADMAP
CHAAIISE Feb 17, 2026
d7edd6c
Smart Contract
CHAAIISE Feb 17, 2026
8e317f0
front tah les fous
gamween Feb 17, 2026
e252f67
FRONT
Feb 17, 2026
7be5498
Merge branch 'Armand'
Feb 17, 2026
fb7ff52
APICALL
CHAAIISE Feb 17, 2026
d5bf27f
caca boudin
gamween Feb 17, 2026
2df2db2
Merge branch 'APICALL'
CHAAIISE Feb 17, 2026
16a3b58
gros caca boudin
gamween Feb 17, 2026
aea81f1
Merge branch 'fianso'
gamween Feb 17, 2026
5bfbe4d
x402
Feb 17, 2026
cab9a8c
on est sur un commit aberrant frero
gamween Feb 17, 2026
5b025e8
Merge branch 'fianso'
gamween Feb 17, 2026
a09fe5c
x402
Feb 17, 2026
bdb9436
Merge branch 'x402'
Feb 17, 2026
fb24db4
FRONT
gamween Feb 17, 2026
5ac13c5
Merge branch 'fianso'
gamween Feb 17, 2026
d93f0b0
Merge branch 'main' of https://github.com/DVB-ANS/monad-blitz-denver
gamween Feb 17, 2026
2bc5cb7
APICALL
CHAAIISE Feb 17, 2026
f713fc4
APICALL
CHAAIISE Feb 17, 2026
85cb15b
inegratoion back front
Feb 17, 2026
055623d
Merge branch 'F+B'
Feb 18, 2026
e00c907
cli
CHAAIISE Feb 18, 2026
9597fde
Final ??
CHAAIISE Feb 18, 2026
b84d11f
feat: merge UI features from fianso - About us button, white Launch A…
gamween Feb 18, 2026
357ff5c
merge fix
gamween Feb 18, 2026
2865987
feat: switch entire app to US mode - Fahrenheit, mph, all English text
gamween Feb 18, 2026
62920cb
fix: add retry + error handling for weather/country API fetchers (wtt…
gamween Feb 18, 2026
a30f9b1
metrics system to imperial system
gamween Feb 19, 2026
28adacf
front is fixed
gamween Feb 20, 2026
4ab930c
project context généré
gamween Feb 20, 2026
977cda2
fix: wait for anvil to be ready before deploying in CI
gamween Feb 25, 2026
8979b89
fix: capture ref value in local variable to fix exhaustive-deps lint …
gamween Feb 25, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
47 changes: 47 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Lint

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
ci:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node: [lts/*]

steps:
- name: Checkout
uses: actions/checkout@master

- name: Setup node env
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: yarn

- name: Install dependencies
run: yarn install --immutable

- name: Install foundry-toolchain
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

- name: Run foundry node, deploy contracts (& generate contracts typescript output)
env:
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
run: yarn chain & yarn deploy

- name: Run nextjs lint
run: yarn next:lint --max-warnings=0

- name: Check typings on nextjs
run: yarn next:check-types
52 changes: 52 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# dependencies
node_modules

# yarn
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# eslint
.eslintcache

# misc
.DS_Store
*.log

# IDE
.vscode
.idea

# cli
dist

# next.js
packages/nextjs/.next
packages/nextjs/out
packages/nextjs/tsconfig.tsbuildinfo

# foundry
packages/foundry/cache
packages/foundry/out
packages/foundry/broadcast
packages/foundry/foundry.lock

# env files
.env
.env.*
!.env.example

# claude / AI
.claude
AGENTS.md
CLAUDE.md

# mcp
.mcp.json
opencode.json

# lock files (keep only yarn.lock)
pnpm-lock.yaml
9 changes: 9 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[submodule "packages/foundry/lib/forge-std"]
path = packages/foundry/lib/forge-std
url = https://github.com/foundry-rs/forge-std
[submodule "packages/foundry/lib/openzeppelin-contracts"]
path = packages/foundry/lib/openzeppelin-contracts
url = https://github.com/OpenZeppelin/openzeppelin-contracts
[submodule "packages/foundry/lib/solidity-bytes-utils"]
path = packages/foundry/lib/solidity-bytes-utils
url = https://github.com/gnsps/solidity-bytes-utils
1 change: 1 addition & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
yarn lint-staged --verbose
21 changes: 21 additions & 0 deletions .lintstagedrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
const path = require("path");

const buildNextEslintCommand = (filenames) =>
`yarn next:lint --fix --file ${filenames
.map((f) => path.relative(path.join("packages", "nextjs"), f))
.join(" --file ")}`;

const checkTypesNextCommand = () => "yarn next:check-types";

const buildHardhatEslintCommand = (filenames) =>
`yarn hardhat:lint-staged --fix ${filenames
.map((f) => path.relative(path.join("packages", "hardhat"), f))
.join(" ")}`;

module.exports = {
"packages/nextjs/**/*.{ts,tsx}": [
buildNextEslintCommand,
checkTypesNextCommand,
],
"packages/hardhat/**/*.{ts,tsx}": [buildHardhatEslintCommand],
};
541 changes: 541 additions & 0 deletions .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions .yarn/plugins/@yarnpkg/plugin-typescript.cjs

Large diffs are not rendered by default.

783 changes: 783 additions & 0 deletions .yarn/releases/yarn-3.2.3.cjs

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
enableColors: true

nmHoistingLimits: workspaces

nodeLinker: node-modules

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs
spec: "@yarnpkg/plugin-typescript"
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"

yarnPath: .yarn/releases/yarn-3.2.3.cjs
86 changes: 86 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
# Welcome to Scaffold-ETH 2 Contributing Guide

Thank you for investing your time in contributing to Scaffold-ETH 2!

This guide aims to provide an overview of the contribution workflow to help us make the contribution process effective for everyone involved.

## About the Project

Scaffold-ETH 2 is a minimal and forkable repo providing builders with a starter kit to build decentralized applications on Ethereum.

Read the [README](README.md) to get an overview of the project.

### Vision

The goal of Scaffold-ETH 2 is to provide the primary building blocks for a decentralized application.

The repo can be forked to include integrations and more features, but we want to keep the master branch simple and minimal.

### Project Status

The project is under active development.

You can view the open Issues, follow the development process and contribute to the project.

## Getting started

You can contribute to this repo in many ways:

- Solve open issues
- Report bugs or feature requests
- Improve the documentation

Contributions are made via Issues and Pull Requests (PRs). A few general guidelines for contributions:

- Search for existing Issues and PRs before creating your own.
- Contributions should only fix/add the functionality in the issue OR address style issues, not both.
- If you're running into an error, please give context. Explain what you're trying to do and how to reproduce the error.
- Please use the same formatting in the code repository. You can configure your IDE to do it by using the prettier / linting config files included in each package.
- If applicable, please edit the README.md file to reflect the changes.

### Issues

Issues should be used to report problems, request a new feature, or discuss potential changes before a PR is created.

#### Solve an issue

Scan through our [existing issues](https://github.com/scaffold-eth/scaffold-eth-2/issues) to find one that interests you.

If a contributor is working on the issue, they will be assigned to the individual. If you find an issue to work on, you are welcome to assign it to yourself and open a PR with a fix for it.

#### Create a new issue

If a related issue doesn't exist, you can open a new issue.

Some tips to follow when you are creating an issue:

- Provide as much context as possible. Over-communicate to give the most details to the reader.
- Include the steps to reproduce the issue or the reason for adding the feature.
- Screenshots, videos etc., are highly appreciated.

### Pull Requests

#### Pull Request Process

We follow the ["fork-and-pull" Git workflow](https://github.com/susam/gitpr)

1. Fork the repo
2. Clone the project
3. Create a new branch with a descriptive name
4. Commit your changes to the new branch
5. Push changes to your fork
6. Open a PR in our repository and tag one of the maintainers to review your PR

Here are some tips for a high-quality pull request:

- Create a title for the PR that accurately defines the work done.
- Structure the description neatly to make it easy to consume by the readers. For example, you can include bullet points and screenshots instead of having one large paragraph.
- Add the link to the issue if applicable.
- Have a good commit message that summarises the work done.

Once you submit your PR:

- We may ask questions, request additional information or ask for changes to be made before a PR can be merged. Please note that these are to make the PR clear for everyone involved and aims to create a frictionless interaction process.
- As you update your PR and apply changes, mark each conversation resolved.

Once the PR is approved, we'll "squash-and-merge" to keep the git commit history clean.
Loading