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

chore: add sepolia config on testing & staging env #130

Merged
merged 1 commit into from
Mar 21, 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
2 changes: 2 additions & 0 deletions docs/boson-environments.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ The following table recaps all configurations, per environment
<tr><th>Configuration</th><th>Blockchain</th><th>Subgraph</th></tr>
<tr><td>staging-80001-0 </td><td>Polygon Mumbai (testnet)</td><td>https://api.thegraph.com/subgraphs/name/bosonprotocol/mumbai-staging</td></tr>
<tr><td>staging-5-0 </td><td>Ethereum Goerli (testnet)</td><td>https://api.thegraph.com/subgraphs/name/bosonprotocol/goerli-staging</td></tr>
<tr><td>staging-11155111-0 </td><td>Ethereum Sepolia (testnet)</td><td>https://api.thegraph.com/subgraphs/name/bosonprotocol/sepolia-staging</td></tr>
</table>
<table>
<tr><th>dApps</th><th></th></tr>
Expand All @@ -58,6 +59,7 @@ The following table recaps all configurations, per environment
<tr><th>Configuration</th><th>Blockchain</th><th>Subgraph</th></tr>
<tr><td>testing-80001-0</td><td>Polygon Mumbai (testnet)</td><td>https://api.thegraph.com/subgraphs/name/bosonprotocol/mumbai-testing</td></tr>
<tr><td>testing-5-0 </td><td>Ethereum Goerli (testnet)</td><td>https://api.thegraph.com/subgraphs/name/bosonprotocol/goerli-testing</td></tr>
<tr><td>testing-11155111-0 </td><td>Ethereum Sepolia (testnet)</td><td>https://api.thegraph.com/subgraphs/name/bosonprotocol/sepolia-testing</td></tr>
</table>
<table>
<tr><th>dApps</th><th></th></tr>
Expand Down
66 changes: 33 additions & 33 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@bosonprotocol/react-kit": "^0.29.0-alpha.1",
"@bosonprotocol/react-kit": "^0.29.0-alpha.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
Expand Down
1 change: 1 addition & 0 deletions tests/www/test1.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@
<body>
<button type="button" id="boson-redeem-1" class="bosonButton" data-config-id="testing-80001-0">Redeem (Mumbai)</button>
<button type="button" id="boson-redeem-2" class="bosonButton" data-config-id="testing-5-0">Redeem (Goerli)</button>
<button type="button" id="boson-redeem-3" class="bosonButton" data-config-id="testing-11155111-0">Redeem (Sepolia)</button>
</body>
</html>
Loading