Skip to content

Commit 7cd926a

Browse files
authored
Update domain
1 parent 82f07bc commit 7cd926a

17 files changed

+32
-32
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Grindery is the easiest way for people and organizations to connect Apps and dApps across chains and protocols.
88

9-
Live URL: [https://app.grindery.io/](https://app.grindery.io/)
9+
Live URL: [https://app.grindery.com/](https://app.grindery.com/)
1010

1111
## Development
1212

@@ -35,4 +35,4 @@ The `master` branch is deployed automatically:
3535
1. Merge your changes into the `master` branch
3636
2. Push branch to GitHub
3737

38-
**Deployment URL: https://app.grindery.io/**
38+
**Deployment URL: https://app.grindery.com/**

public/firebase-messaging-sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ messaging.onBackgroundMessage((payload) => {
3131
"",
3232
icon:
3333
(payload.data && payload.data.icon) ||
34-
"https://flow.grindery.io/logo192.png",
34+
"https://flow.grindery.com/logo192.png",
3535
data: {
3636
url: (payload.data && payload.data.url) || "",
3737
},

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function App() {
2222
<CircularProgress />
2323
</div>
2424
}
25-
disconnectRedirectUrl="https://www.grindery.io/sign-out?sidebar_opened=1"
25+
disconnectRedirectUrl="https://www.grindery.com/sign-out?sidebar_opened=1"
2626
>
2727
<BrowserRouter>
2828
<Routes>

src/__tests__/helpers/utils.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import helloWorldConnector from "../../samples/connectors/helloworld.json";
99
describe("getParameterByName function", () => {
1010
test("returns URL parameter value by name", () => {
1111
const name = "test";
12-
const url = "https://nexus.grindery.io?test=1";
12+
const url = "https://nexus.grindery.com?test=1";
1313

1414
const output = "1";
1515

@@ -18,7 +18,7 @@ describe("getParameterByName function", () => {
1818

1919
test("returns null if parameter not found", () => {
2020
const name = "test";
21-
const url = "https://nexus.grindery.io";
21+
const url = "https://nexus.grindery.com";
2222

2323
const output = null;
2424

@@ -35,7 +35,7 @@ describe("getParameterByName function", () => {
3535

3636
test("returns empty string if parameter has no value", () => {
3737
const name = "test";
38-
const url = "https://nexus.grindery.io?test=";
38+
const url = "https://nexus.grindery.com?test=";
3939

4040
const output = "";
4141

src/components/pages/AppsPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ const AppsPage = (props: Props) => {
231231
window.open(
232232
`https://network${
233233
isLocalOrStaging ? "-staging" : ""
234-
}.grindery.io/connector/__new__`,
234+
}.grindery.com/connector/__new__`,
235235
"_blank"
236236
);
237237
}}

src/components/pages/CompleteConnectorAuth.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import useWorkspaceContext from "../../hooks/useWorkspaceContext";
99
import { ICONS } from "../../constants";
1010

1111
const GET_OAUTH_TOKEN_ENDPOINT =
12-
"https://orchestrator.grindery.org/credentials/auth/complete";
12+
"https://orchestrator.grindery.com/credentials/auth/complete";
1313

1414
const MESSAGES = {
1515
DEFAULT: "Authenticating, please wait...",

src/components/pages/SignInPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ const SignInPage = (props: Props) => {
135135

136136
useEffect(() => {
137137
if (user && authCode) {
138-
//window.open("https://gateway.grindery.io/", "_blank", "noreferrer");
138+
//window.open("https://gateway.grindery.com/", "_blank", "noreferrer");
139139
setTimeout(() => {
140140
if (
141141
response_type &&

src/components/pages/SignInPageRedirect.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ const SignInPageRedirect = (props: Props) => {
1717
const search = document.location.search;
1818
window.location.href = `${
1919
isLocalOrStaging
20-
? "https://login-staging.grindery.io"
21-
: "https://login.grindery.io"
20+
? "https://login-staging.grindery.com"
21+
: "https://login.grindery.com"
2222
}${search}`;
2323
}, []);
2424
return <></>;

src/components/shared/AppRow.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const AppRow = (props: Props) => {
114114
window.open(
115115
`https://network${
116116
isLocalOrStaging ? "-staging" : ""
117-
}.grindery.io/clone/${
117+
}.grindery.com/clone/${
118118
item.key
119119
}?source=nexus&name=${encodeURIComponent(item.name)}`,
120120
"_blank"
@@ -135,7 +135,7 @@ const AppRow = (props: Props) => {
135135
window.open(
136136
`https://network${
137137
isLocalOrStaging ? "-staging" : ""
138-
}.grindery.io/connector/${item.key}`,
138+
}.grindery.com/connector/${item.key}`,
139139
"_blank"
140140
);
141141
},

src/components/shared/EarlyAccessModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ const EarlyAccessModal = (props: Props) => {
408408
</a>{" "}
409409
and{" "}
410410
<a
411-
href="https://www.grindery.io/privacy"
411+
href="https://www.grindery.com/privacy"
412412
target="_blank"
413413
rel="noreferrer"
414414
>

src/components/shared/SignInForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ const SignInForm = (props: Props) => {
389389
</a>{" "}
390390
and{" "}
391391
<a
392-
href="https://www.grindery.io/privacy"
392+
href="https://www.grindery.com/privacy"
393393
target="_blank"
394394
rel="noreferrer"
395395
>

src/components/workflow/GasAlert.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const GasAlert = (props: Props) => {
2929
let res;
3030
try {
3131
res = await axios.post(
32-
"https://orchestrator.grindery.org/webhook/web3/callSmartContract/getDroneAddress",
32+
"https://orchestrator.grindery.com/webhook/web3/callSmartContract/getDroneAddress",
3333
{
3434
chain: chainId,
3535
token: token,

src/components/workflow/StepAuthentication.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ import useAppContext from "../../hooks/useAppContext";
1010
import useWorkflowStepContext from "../../hooks/useWorkflowStepContext";
1111
import useWorkspaceContext from "../../hooks/useWorkspaceContext";
1212

13-
const AUTH_ENDPOINT = `https://orchestrator.grindery.org/credentials/${
13+
const AUTH_ENDPOINT = `https://orchestrator.grindery.com/credentials/${
1414
isLocalOrStaging ? "staging" : "production"
1515
}`;
1616
const GET_OAUTH_TOKEN_ENDPOINT =
17-
"https://orchestrator.grindery.org/credentials/auth/complete";
17+
"https://orchestrator.grindery.com/credentials/auth/complete";
1818

1919
const Container = styled.div`
2020
border-top: 1px solid #dcdcdc;

src/components/workflow/StepTest.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ const StepTest = ({ outputFields }: Props) => {
322322
setLoading(true);
323323

324324
// set ws connection
325-
const ws = new WebSocket("wss://orchestrator.grindery.org");
325+
const ws = new WebSocket("wss://orchestrator.grindery.com");
326326

327327
// authenticate
328328
const authRequestId = new Date();

src/constants.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const SCREEN = {
55
DESKTOP_XL: "1600px",
66
};
77

8-
export const WORKFLOW_ENGINE_URL = "https://orchestrator.grindery.org";
8+
export const WORKFLOW_ENGINE_URL = "https://orchestrator.grindery.com";
99

1010
export const CDS_EDITOR_API_ENDPOINT =
1111
"https://nexus-cds-editor-api.herokuapp.com/api";
@@ -392,33 +392,33 @@ export const HS_FORM_ID = "80ae7474-b232-4eb8-bad7-a4b2d651d643";
392392
export const isLocalOrStaging =
393393
window.location.hostname === "localhost" ||
394394
window.location.hostname === "127.0.0.1" ||
395-
window.location.hostname === "nexus-staging.grindery.io" ||
396-
window.location.hostname === "flow-staging.grindery.io" ||
397-
window.location.hostname === "nexus-staging.grindery.org" ||
398-
window.location.hostname === "flow-staging.grindery.org" ||
399-
window.location.hostname === "app-staging.grindery.io";
395+
window.location.hostname === "nexus-staging.grindery.com" ||
396+
window.location.hostname === "flow-staging.grindery.com" ||
397+
window.location.hostname === "nexus-staging.grindery.com" ||
398+
window.location.hostname === "flow-staging.grindery.com" ||
399+
window.location.hostname === "app-staging.grindery.com";
400400

401401
export const GRINDERY_APPS = [
402402
{
403-
url: "https://flow.grindery.io/",
403+
url: "https://flow.grindery.com/",
404404
name: "Grindery App",
405405
description: "Create workflows witn no-code",
406406
target: "_blank",
407407
},
408408
{
409-
url: "https://ping.grindery.io/",
409+
url: "https://ping.grindery.com/",
410410
name: "Ping",
411411
description: "Receive blockchain notifications",
412412
target: "_blank",
413413
},
414414
{
415-
url: "https://gateway.grindery.io/",
415+
url: "https://gateway.grindery.com/",
416416
name: "Gateway",
417417
description: "Your gateway to web3 no-code",
418418
target: "_blank",
419419
},
420420
{
421-
url: "https://network.grindery.io/",
421+
url: "https://network.grindery.com/",
422422
name: "CDS",
423423
description: "Create Connector Description Schema files",
424424
target: "_blank",

src/context/SignInContext.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export const SignInContextProvider = ({ children }: SignInContextProps) => {
123123
setAuthCodeLoading(true);
124124
const res = await axios
125125
.post(
126-
`https://orchestrator.grindery.org/oauth/get-login-code`,
126+
`https://orchestrator.grindery.com/oauth/get-login-code`,
127127
{},
128128
{
129129
headers: {

src/helpers/firebase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ onMessage(messaging, (payload) => {
3434
"",
3535
icon:
3636
(payload.data && payload.data.icon) ||
37-
"https://flow.grindery.io/logo192.png",
37+
"https://flow.grindery.com/logo192.png",
3838
data: {
3939
url: (payload.data && payload.data.url) || "",
4040
},

0 commit comments

Comments
 (0)