Skip to content

Commit

Permalink
update domain
Browse files Browse the repository at this point in the history
  • Loading branch information
milukove committed Feb 13, 2024
1 parent 27ef555 commit c7885f3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const options = {
info: {
version: '1.0.1',
title: 'Grindery Delight API',
description: 'API for Grindery Delight App: https://delight.grindery.io',
description: 'API for Grindery Delight App: https://delight.grindery.com',
license: {
name: 'MIT',
},
Expand All @@ -29,7 +29,7 @@ const options = {
},
servers: [
{
url: 'https://delight-api.grindery.org',
url: 'https://delight-api.grindery.com',
description: 'Production server',
},
],
Expand Down
2 changes: 1 addition & 1 deletion src/test/utils/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dotenv.config();
async function getAccessToken() {
try {
const res = await axios.post(
'https://orchestrator.grindery.org/oauth/token',
'https://orchestrator.grindery.com/oauth/token',
{
grant_type: 'refresh_token',
refresh_token: process.env.GRINDERY_NEXUS_REFRESH_TOKEN,
Expand Down
8 changes: 4 additions & 4 deletions src/test/utils/variables.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export const mockSearchActiveOfferValidator = {
export const mockBlockchain = {
caipId: 'eip155:534',
chainId: '534',
icon: 'https://www.grindery.io/hubfs/delight-assets/icons/blockchains/eip155-534.png',
icon: 'https://www.grindery.com/hubfs/delight-assets/icons/blockchains/eip155-534.png',
isActive: true,
isEvm: true,
isTestnet: true,
Expand All @@ -203,7 +203,7 @@ export const mockUsefulAddress = {
export const mockToken = {
coinmarketcapId: '4543',
symbol: 'mySymbol',
icon: 'https://www.grindery.io/hubfs/delight-assets/icons/tokens/bnb.png',
icon: 'https://www.grindery.com/hubfs/delight-assets/icons/tokens/bnb.png',
chainId: '544',
address: '0x0',
isNative: false,
Expand All @@ -230,7 +230,7 @@ export const mockUpdateTokenLiquidityWallet = {
export const mockBlockchainGoerli = {
caipId: 'eip155:5',
chainId: '5',
icon: 'https://www.grindery.io/hubfs/delight-assets/icons/blockchains/eip155-5.png',
icon: 'https://www.grindery.com/hubfs/delight-assets/icons/blockchains/eip155-5.png',
isActive: true,
isEvm: true,
isTestnet: true,
Expand All @@ -247,7 +247,7 @@ export const mockBlockchainGoerli = {
export const mockBlockchainBscTestnet = {
caipId: 'eip155:97',
chainId: '97',
icon: 'https://www.grindery.io/hubfs/delight-assets/icons/blockchains/eip155-97.svg',
icon: 'https://www.grindery.com/hubfs/delight-assets/icons/blockchains/eip155-97.svg',
isActive: true,
isEvm: true,
isTestnet: true,
Expand Down
2 changes: 1 addition & 1 deletion src/utils/auth-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import jwt_decode from 'jwt-decode';
export const checkToken = async (token, workspaceKey) => {
try {
await axios.post(
'https://orchestrator.grindery.org',
'https://orchestrator.grindery.com',
{
jsonrpc: '2.0',
method: 'or_listWorkflows',
Expand Down

0 comments on commit c7885f3

Please sign in to comment.