diff --git a/.env.example b/.env.example
index 323aab9..88405a0 100644
--- a/.env.example
+++ b/.env.example
@@ -16,14 +16,14 @@ REACT_APP_INFURA_IPFS_PROJECT_SECRET=
REACT_APP_WALLET_CONNECT_PROJECT_ID=
# Seller For Exchange URL (per environment)
-REACT_APP_CONTACT_SELLER_FOR_EXCHANGE_TESTING=https://interface-test.on-fleek.app/#/chat/{id}
-REACT_APP_CONTACT_SELLER_FOR_EXCHANGE_STAGING=https://interface-staging.on-fleek.app/#/chat/{id}
+REACT_APP_CONTACT_SELLER_FOR_EXCHANGE_TESTING=https://interface-a9d.pages.dev/#/chat/{id}
+REACT_APP_CONTACT_SELLER_FOR_EXCHANGE_STAGING=https://boson-dapp-staging.pages.dev/#/chat/{id}
REACT_APP_CONTACT_SELLER_FOR_EXCHANGE_PRODUCTION=https://bosonapp.io/#/chat/{id}
# Raise Dispute URL (per envionment)
-REACT_APP_RAISE_DISPUTE_FOR_EXCHANGE_TESTING=https://drcenter-test.on-fleek.app/#/exchange/{id}/raise-dispute
-REACT_APP_RAISE_DISPUTE_FOR_EXCHANGE_STAGING=https://drcenter-staging.on-fleek.app/#/exchange/{id}/raise-dispute
-REACT_APP_RAISE_DISPUTE_FOR_EXCHANGE_PRODUCTION=https://drcenter-production.on-fleek.app/#/exchange/{id}/raise-dispute
+REACT_APP_RAISE_DISPUTE_FOR_EXCHANGE_TESTING=https://boson-dr-center-testing.pages.dev/#/exchange/{id}/raise-dispute
+REACT_APP_RAISE_DISPUTE_FOR_EXCHANGE_STAGING=https://boson-dr-center-staging.pages.dev/#/exchange/{id}/raise-dispute
+REACT_APP_RAISE_DISPUTE_FOR_EXCHANGE_PRODUCTION=https://disputes.bosonprotocol.io/#/exchange/{id}/raise-dispute
# Default Dispute Period (in days)
REACT_APP_DEFAULT_DISPUTE_PERIOD_DAYS=30
diff --git a/.github/workflows/ci_reusable.yaml b/.github/workflows/ci_reusable.yaml
index bb88fb1..970d7fd 100644
--- a/.github/workflows/ci_reusable.yaml
+++ b/.github/workflows/ci_reusable.yaml
@@ -64,11 +64,11 @@ jobs:
REACT_APP_META_TX_API_IDS_MAP: ${{ inputs.REACT_APP_META_TX_API_IDS_MAP }}
REACT_APP_DEFAULT_DISPUTE_PERIOD_DAYS: "30"
REACT_APP_DEFAULT_RESOLUTION_PERIOD_DAYS: "15"
- REACT_APP_CONTACT_SELLER_FOR_EXCHANGE_TESTING: "https://interface-test.on-fleek.app/#/chat/{id}"
- REACT_APP_CONTACT_SELLER_FOR_EXCHANGE_STAGING: "https://interface-staging.on-fleek.app/#/chat/{id}"
+ REACT_APP_CONTACT_SELLER_FOR_EXCHANGE_TESTING: "https://interface-a9d.pages.dev/#/chat/{id}"
+ REACT_APP_CONTACT_SELLER_FOR_EXCHANGE_STAGING: "https://boson-dapp-staging.pages.dev/#/chat/{id}"
REACT_APP_CONTACT_SELLER_FOR_EXCHANGE_PRODUCTION: "https://bosonapp.io/#/chat/{id}"
- REACT_APP_RAISE_DISPUTE_FOR_EXCHANGE_TESTING: "https://drcenter-test.on-fleek.app/#/exchange/{id}/raise-dispute"
- REACT_APP_RAISE_DISPUTE_FOR_EXCHANGE_STAGING: "https://drcenter-staging.on-fleek.app/#/exchange/{id}/raise-dispute"
+ REACT_APP_RAISE_DISPUTE_FOR_EXCHANGE_TESTING: "https://boson-dr-center-testing.pages.dev/#/exchange/{id}/raise-dispute"
+ REACT_APP_RAISE_DISPUTE_FOR_EXCHANGE_STAGING: "https://boson-dr-center-staging.pages.dev/#/exchange/{id}/raise-dispute"
REACT_APP_RAISE_DISPUTE_FOR_EXCHANGE_PRODUCTION: "https://disputes.bosonprotocol.io/#/exchange/{id}/raise-dispute"
REACT_APP_IPFS_GATEWAY: "https://bosonprotocol.infura-ipfs.io/ipfs"
REACT_APP_BUYER_SELLER_AGREEMENT_TEMPLATE: "ipfs://QmaNj7vGuCEvaM5vyucp5z1S9VprMnZWmVxYGn6FHhgePF"
diff --git a/docs/boson-environments.md b/docs/boson-environments.md
index ac36e6b..2a78c6a 100644
--- a/docs/boson-environments.md
+++ b/docs/boson-environments.md
@@ -45,13 +45,13 @@ The following table recaps all configurations, per environment
| dApps | |
-| Marketplace | https://interface-staging.on-fleek.app |
-| Dispute Resolution Center | https://drcenter-staging.on-fleek.app/ |
+| Marketplace | https://boson-dapp-staging.pages.dev |
+| Dispute Resolution Center | https://boson-dr-center-staging.pages.dev/ |
| Widgets | |
-| Redemption | https://widgets-staging.on-fleek.app/#/redeem |
-| Finance | https://widgets-staging.on-fleek.app/#/finance |
+| Redemption | https://boson-widgets-staging.pages.dev/#/redeem |
+| Finance | https://boson-widgets-staging.pages.dev/#/finance |
| testing |
@@ -61,13 +61,13 @@ The following table recaps all configurations, per environment
| dApps | |
-| Marketplace | https://interface-test.on-fleek.app |
-| Dispute Resolution Center | https://drcenter-test.on-fleek.app/ |
+| Marketplace | https://interface-a9d.pages.dev |
+| Dispute Resolution Center | https://boson-dr-center-testing.pages.dev/ |
| Widgets | |
-| Redemption | https://widgets-test.on-fleek.app/#/redeem |
-| Finance | https://widgets-test.on-fleek.app/#/finance |
+ |
| Redemption | https://boson-widgets-testing.pages.dev/#/redeem |
+| Finance | https://boson-widgets-testing.pages.dev/#/finance |
| local |
diff --git a/public/scripts/commit-button-example.html b/public/scripts/commit-button-example.html
index c18ccb1..7151dd9 100644
--- a/public/scripts/commit-button-example.html
+++ b/public/scripts/commit-button-example.html
@@ -27,7 +27,7 @@ Commit button example
let layout = "horizontal";
const isProd =
window.location.href.startsWith("https://widgets.bosonprotocol.io") ||
- window.location.href.startsWith("https://widgets-production.on-fleek.app");
+ window.location.href.startsWith("https://boson-widgets.pages.dev");
const prodData = {
configId: "production-137-0",
productUuid: "2540b-1cf7-26e7-ddaf-4de1dcf7ebc",
|