Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First implementation #5

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
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
5 changes: 4 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@ VITE_WAAS_CONFIG_KEY="eyJwcm9qZWN0SWQiOjEzNjM5LCJycGNTZXJ2ZXIiOiJodHRwczovL3dhYX
VITE_GOOGLE_CLIENT_ID=970987756660-35a6tc48hvi8cev9cnknp0iugv9poa23.apps.googleusercontent.com
VITE_APPLE_CLIENT_ID=com.horizon.sequence.waas
VITE_WALLET_CONNECT_ID='c65a6cb1aa83c4e24500130f23a437d8'
VITE_PROJECT_ID=13639
# Your project id can be found at https://sequence.build. You’ll see it in the URL after selecting your project
VITE_PROJECT_ID=13639
# Follow the first step in https://docs.sequence.xyz/guides/metadata-guide/
JWT_ACCESS_KEY=YOUR_JWT_ACCESS_KEY
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ dist
dist-ssr
*.local
.env
wrangler.toml
.wrangler

# Editor directories and files
.vscode/*
Expand Down
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
"type": "module",
"scripts": {
"dev": "vite",
"dev:wrangler": "wrangler dev ./functions/api/index",
"placeholders:create": "node scripts/create-placeholders.js",
"placeholders:reveal": "node scripts/reveal-placeholders.js",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 && prettier --write --ignore-path .prettierignore .",
"preview": "vite preview",
Expand All @@ -20,6 +23,7 @@
"@0xsequence/metadata": "1.10.12",
"@0xsequence/network": "^1.10.12",
"@tanstack/react-query": "^5.51.23",
"dotenv": "^16.4.5",
"ethers": "5.7.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
Expand All @@ -38,7 +42,8 @@
"eslint-plugin-react-refresh": "^0.4.9",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vite": "^5.4.1"
"vite": "^5.4.1",
"wrangler": "^3.78.12"
},
"packageManager": "[email protected]+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}
Loading