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

Stripeのwebhookを受け取って、ERC1155をmintするNext.jsのapiに実装 #539 #545

Merged
merged 4 commits into from
Mar 17, 2024
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
7 changes: 6 additions & 1 deletion frontend/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ NEXT_PUBLIC_FORWARDER_ADDRESS=
NEXT_PUBLIC_CONTRACT_MINT_NFT_MANAGER=
NEXT_PUBLIC_CONTRACT_EVENT_MANAGER=
NEXT_PUBLIC_CONTRACT_OPERATION_CONTROLLER=
NEXT_PUBLIC_CONTRACT_MINT_POINT=
# Openzeppelin Relayer API keys
OZ_RELAYER_API_KEYS="[""]"
OZ_RELAYER_API_SECRETS="[""]"
DEV_RELAYER_PRIVATE_KEY=
# Chain Information
NEXT_PUBLIC_CHAIN_ID=
NEXT_PUBLIC_CHAIN_NAME=
Expand All @@ -32,4 +34,7 @@ NEXT_PUBLIC_GA_MEASUREMENT_ID=
NEXT_PUBLIC_THIRDWEB_CLIENT_ID=
# Blacklist of event group and event by id
NEXT_PUBLIC_EVENT_GROUP_BLACK_LIST="0"
NEXT_PUBLIC_EVENT_BLACK_LIST="0"
NEXT_PUBLIC_EVENT_BLACK_LIST="0"
# Stripe setting
STRIPE_SK=
STRIPE_WEBHOOK_MINT_POINT_SECRET=
3 changes: 2 additions & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"typescript": "4.7.4"
},
"volta": {
"node": "18.17.1"
"node": "18.17.1",
"yarn": "1.22.19"
}
}
Loading