From 5f3c9fccf03a2f4d6012bf1fd5dc84d14ab0a354 Mon Sep 17 00:00:00 2001 From: Drew Stone Date: Wed, 8 Jul 2026 17:36:46 -0600 Subject: [PATCH] chore(tangle-cloud): point testnet Envio endpoint at the Tempo indexer (HTTPS) The box indexer was repointed from Base-Sepolia to the live tnt-core 0.19 Tempo deploy (chain 42431) and is now served over TLS via Caddy at https://indexer-178-104-232-124.sslip.io/v1/graphql (Hasura moved off :80). The old http://178.104.232.124/v1/graphql no longer resolves (mixed-content-blocked from the https app anyway). Updates all three Netlify deploy contexts. --- apps/tangle-cloud/netlify.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/tangle-cloud/netlify.toml b/apps/tangle-cloud/netlify.toml index 0faf429d0..7c5c00605 100644 --- a/apps/tangle-cloud/netlify.toml +++ b/apps/tangle-cloud/netlify.toml @@ -30,7 +30,7 @@ # blocks if we ever need to differ between staging and production. [context.production.environment] - VITE_ENVIO_TESTNET_ENDPOINT = "http://178.104.232.124/v1/graphql" + VITE_ENVIO_TESTNET_ENDPOINT = "https://indexer-178-104-232-124.sslip.io/v1/graphql" # Production is iframe-on. Falls back to link-out automatically for any # blueprint that doesn't satisfy publisher + host + metadata gates, so # this flag is safe to leave on once the in-app trust gates are doing @@ -39,14 +39,14 @@ VITE_BLUEPRINT_IFRAME_ENABLED = "true" [context.deploy-preview.environment] - VITE_ENVIO_TESTNET_ENDPOINT = "http://178.104.232.124/v1/graphql" + VITE_ENVIO_TESTNET_ENDPOINT = "https://indexer-178-104-232-124.sslip.io/v1/graphql" # Preview deploys (PR builds) inherit production's iframe-on default # so contributors testing iframe-mode manifests on a PR-preview URL # see the same surface production users will. VITE_BLUEPRINT_IFRAME_ENABLED = "true" [context.branch-deploy.environment] - VITE_ENVIO_TESTNET_ENDPOINT = "http://178.104.232.124/v1/graphql" + VITE_ENVIO_TESTNET_ENDPOINT = "https://indexer-178-104-232-124.sslip.io/v1/graphql" # Same default for any non-master branch deploy. The primary branch # deploy is `develop`, which serves as our staging environment. VITE_BLUEPRINT_IFRAME_ENABLED = "true"