Skip to content
Open

pr #4

Show file tree
Hide file tree
Changes from all 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
  •  
  •  
  •  
58 changes: 58 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
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 &
echo "Waiting for anvil to be ready..."
for i in $(seq 1 30); do
if curl -s -X POST --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}' -H "Content-Type: application/json" http://127.0.0.1:8545 > /dev/null 2>&1; then
echo "Anvil is ready!"
break
fi
echo "Attempt $i: anvil not ready yet, waiting..."
sleep 1
done
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
21 changes: 21 additions & 0 deletions LICENCE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 BuidlGuidl

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading