Skip to content
Merged
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
a5f9d4d
feat: add getTransactionOutputs utility with event log parsing
luchobonatti Feb 13, 2025
b43fef2
Update CONTRIBUTING.md
fernandomg Feb 14, 2025
5a780f7
chore: bump use-debounce from 10.0.3 to 10.0.4
dependabot[bot] Feb 28, 2025
ef5efc7
Merge pull request #355 from BootNodeDev/dependabot-npm_and_yarn-use-…
gabitoesmiapodo Feb 28, 2025
202d2fc
chore: bump typedoc-plugin-missing-exports from 3.0.0 to 3.1.0
dependabot[bot] Feb 28, 2025
0a213d3
Merge pull request #356 from BootNodeDev/dependabot-npm_and_yarn-type…
gabitoesmiapodo Feb 28, 2025
7b1ac29
chore: bump @testing-library/jest-dom from 6.5.0 to 6.6.3
dependabot[bot] Feb 28, 2025
8a3892e
Merge pull request #358 from BootNodeDev/dependabot-npm_and_yarn-test…
gabitoesmiapodo Feb 28, 2025
52331bf
chore: bump typedoc-plugin-inline-sources from 1.1.0 to 1.2.1
dependabot[bot] Feb 28, 2025
fc2ee97
Merge pull request #362 from BootNodeDev/dependabot-npm_and_yarn-type…
gabitoesmiapodo Feb 28, 2025
5ce0aef
chore: bump typedoc from 0.26.7 to 0.26.11
dependabot[bot] Mar 1, 2025
12853f6
Merge pull request #363 from BootNodeDev/dependabot-npm_and_yarn-type…
dependabot[bot] Mar 7, 2025
2f67795
chore: bump next-themes from 0.3.0 to 0.4.4
dependabot[bot] Mar 7, 2025
ba1fc60
Merge pull request #364 from BootNodeDev/dependabot-npm_and_yarn-next…
dependabot[bot] Mar 7, 2025
c3f1781
chore: bump typedoc-plugin-zod from 1.2.1 to 1.4.0
dependabot[bot] Mar 7, 2025
3c2ab33
Merge pull request #367 from BootNodeDev/dependabot-npm_and_yarn-type…
dependabot[bot] Mar 7, 2025
d930439
fix: pr feedback
luchobonatti Mar 10, 2025
570a6fa
Merge branch 'develop' into feat/get-tx-outputs
luchobonatti Mar 10, 2025
bee950c
Merge pull request #361 from BootNodeDev/feat/get-tx-outputs
fernandomg Mar 11, 2025
f340b48
chore: bump @uniswap/default-token-list from 12.34.0 to 13.11.0
dependabot[bot] Mar 17, 2025
769bcd7
Merge pull request #366 from BootNodeDev/dependabot-npm_and_yarn-unis…
dependabot[bot] Mar 17, 2025
93cd9a4
fix: lintstaged path
gabitoesmiapodo Mar 25, 2025
c18d046
fix: build issues
gabitoesmiapodo Mar 25, 2025
7544dc5
fix: change title to be the same as in the landing page
gabitoesmiapodo Mar 25, 2025
0743266
fix: lint staged path
gabitoesmiapodo Mar 25, 2025
8703a19
chore: bump @tanstack/react-virtual from 3.10.8 to 3.13.6
dependabot[bot] Apr 1, 2025
7d1ce2f
chore: bump vite from 5.4.8 to 6.2.4
dependabot[bot] Apr 1, 2025
55921ab
Merge pull request #370 from BootNodeDev/dependabot-npm_and_yarn-tans…
dependabot[bot] Apr 7, 2025
9208f1d
fix: web.manifest problem
gabitoesmiapodo Apr 7, 2025
ac5dc89
Merge branch 'develop' of github.com:BootNodeDev/dAppBooster into dev…
gabitoesmiapodo Apr 7, 2025
9be3b2d
chore: bump @uniswap/default-token-list from 13.14.0 to 13.20.0
dependabot[bot] Apr 7, 2025
edd187d
Merge pull request #371 from BootNodeDev/dependabot-npm_and_yarn-unis…
dependabot[bot] Apr 7, 2025
8a0dfd4
Merge branch 'develop' into dependabot-npm_and_yarn-vite-6.2.4
gabitoesmiapodo Apr 7, 2025
0ea7f13
Merge pull request #373 from BootNodeDev/dependabot-npm_and_yarn-vite…
gabitoesmiapodo Apr 7, 2025
30af849
chore: version bump
gabitoesmiapodo Apr 7, 2025
c4c6e13
Update CONTRIBUTING.md
gabitoesmiapodo Apr 7, 2025
45ec128
Merge branch 'main' into develop
gabitoesmiapodo Apr 7, 2025
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 .lintstagedrc.mjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export default {
'*': ['stylelint --fix', 'biome check --write', 'vitest related --run --coverage=false'],
'src/**/*': ['stylelint --fix', 'biome check --write', 'vitest related --run --coverage=false'],
}
23 changes: 11 additions & 12 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Contributing

## Table of Contents

1. [Naming conventions](#naming-conventions)
Expand All @@ -20,9 +19,9 @@ Some things you should know before cloning the repository and making changes:
```mermaid
graph TD
A[Naming]
A1[`main`: Production code only]
A2[`staging`: Step before merging into production]
A3[`develop`: Development, anything goes]
A1[main: Production code only]
A2[staging: Step before merging into production]
A3[develop: Development, anything goes]

A --> A1
A --> A2
Expand Down Expand Up @@ -89,12 +88,12 @@ git push -u origin fix/something
```mermaid
graph LR
B[New feature or bug fix]
B1[Create new branch from `develop`]
B1[Create new branch from develop]
B2[Name branch descriptively]
B3[Work on the branch]
B4[Create pull request]
B5[Pull request approved]
B6[Merge branch into `develop`]
B6[Merge branch into develop]

B --> B1
B1 --> B2
Expand Down Expand Up @@ -127,14 +126,14 @@ That's it, everybody can see now that a new version is ready to use and if somet
```mermaid
graph TD
C[Staging Process]
C1[Merge `develop` into `staging`]
C2[Test and fix bugs in `staging`]
C3[Merge `staging` into `develop`]
C4[Merge `staging` into `main`]
C1[Merge develop into staging]
C2[Test and fix bugs in staging]
C3[Merge staging into develop]
C4[Merge staging into main]

D[Releasing a New Version]
D0[Commit a version bump to `package.json`]
D1[Tag `main` following Semantic Versioning]
D0[Commit a version bump to package.json]
D1[Tag main following Semantic Versioning]
D2[Create a new release using the tag]
D3[New version is available]

Expand Down
86 changes: 23 additions & 63 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,58 +1,37 @@
<!doctype html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>dAppBooster</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
dAppBooster - Web3 Template For All Your Blockchain Development Needs
</title>
<!-- Standard meta tags -->
<meta
content="A modern blockchain boilerplate built to quickly get you started with your next project."
content="dAppBooster is a modern blockchain boilerplate built to quickly get you started with the development of your next Web3 project."
name="description"
/>
<!-- Open graph meta tags -->
<meta
content="dAppBooster"
content="dAppBooster - Web3 Template For All Your Blockchain Development Needs"
property="og:title"
/>
<meta content="" property="og:url" />
<meta content="/share/ogImage.jpg" property="og:image" />
<meta content="website" property="og:type" />
<meta
content=""
property="og:url"
/>
<meta
content="/share/ogImage.jpg"
property="og:image"
/>
<meta
content="website"
property="og:type"
/>
<meta
content="A modern blockchain boilerplate built to quickly get you started with your next project."
content="dAppBooster is a modern blockchain boilerplate built to quickly get you started with the development of your next Web3 project."
property="og:description"
/>
<!-- Twitter meta tags -->
<meta content="summary_large_image" name="twitter:card" />
<meta
content="summary_large_image"
name="twitter:card"
/>
<meta
content="dAppBooster"
content="dAppBooster - Web3 Template For All Your Blockchain Development Needs"
name="twitter:site"
/>
<meta
content="@"
name="twitter:creator"
/>
<meta content="@" name="twitter:creator" />
<!-- Favicons -->
<link
rel="icon"
type="image/svg+xml"
href="/favicon/favicon.svg"
/>
<link rel="icon" type="image/svg+xml" href="/favicon/favicon.svg" />
<link
rel="apple-touch-icon"
sizes="180x180"
Expand All @@ -71,36 +50,21 @@
href="/favicon/favicon-16x16.png"
/>
<link
rel="manifest"
crossorigin="use-credentials"
href="/favicon/site.webmanifest"
rel="manifest"
/>
<link
rel="mask-icon"
href="/favicon/safari-pinned-tab.svg"
color="#5bbad5"
/>
<meta
name="msapplication-config"
content="/favicon/browserconfig.xml"
/>
<meta
name="msapplication-TileColor"
content="#da532c"
/>
<meta
name="theme-color"
content="#ffffff"
/>
<meta name="msapplication-config" content="/favicon/browserconfig.xml" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<!-- Fonts -->
<link
rel="preconnect"
href="https://fonts.googleapis.com"
/>
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap"
rel="stylesheet"
Expand All @@ -109,10 +73,6 @@

<body>
<div id="root"></div>
<script
type="module"
src="/src/main.tsx"
></script>
<script type="module" src="/src/main.tsx"></script>
</body>

</html>
</html>
38 changes: 25 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dappbooster",
"private": true,
"version": "0.9.14",
"version": "0.9.20",
"type": "module",
"scripts": {
"build": "tsc --noEmit && vite build",
Expand Down Expand Up @@ -30,20 +30,20 @@
"@t3-oss/env-core": "^0.11.1",
"@tanstack/react-query": "^5.62.0",
"@tanstack/react-router": "^1.58.7",
"@tanstack/react-virtual": "^3.10.8",
"@uniswap/default-token-list": "^12.34.0",
"@tanstack/react-virtual": "^3.13.6",
"@uniswap/default-token-list": "^13.20.0",
"@vercel/analytics": "^1.3.1",
"connectkit": "^1.8.2",
"modern-normalize": "^3.0.1",
"next-themes": "^0.3.0",
"next-themes": "^0.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-hot-toast": "^2.4.1",
"react-jazzicon": "^1.0.4",
"react-number-format": "^5.4.2",
"styled-components": "^6.1.13",
"use-debounce": "^10.0.3",
"use-debounce": "^10.0.4",
"viem": "^2.22.1",
"wagmi": "^2.12.14",
"zod": "^3.23.8"
Expand All @@ -57,7 +57,7 @@
"@tanstack/router-cli": "^1.58.1",
"@tanstack/router-devtools": "^1.58.7",
"@tanstack/router-vite-plugin": "^1.93.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.8",
Expand All @@ -66,21 +66,33 @@
"@vitest/coverage-v8": "^2.1.1",
"@wagmi/cli": "^2.1.16",
"change-case": "^5.4.4",
"husky": "^9.1.6",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"postcss-styled-syntax": "^0.6.4",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"ts-node": "^10.9.2",
"typedoc": "^0.26.7",
"typedoc-plugin-inline-sources": "^1.1.0",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc": "^0.26.11",
"typedoc-plugin-inline-sources": "^1.2.1",
"typedoc-plugin-missing-exports": "^3.1.0",
"typedoc-plugin-rename-defaults": "^0.7.1",
"typedoc-plugin-zod": "^1.2.1",
"typedoc-plugin-zod": "^1.4.0",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite": "^6.2.4",
"vitest": "^2.1.1",
"vocs": "1.0.0-alpha.59"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@swc/core",
"bigint-buffer",
"bufferutil",
"esbuild",
"keccak",
"secp256k1",
"utf-8-validate"
]
}
}
}
Loading