Skip to content

Commit

Permalink
Merge pull request #152 from multiversx/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
CiprianDraghici committed Oct 31, 2023
2 parents 9d038ba + f2c9be9 commit dacaccd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineConfig } from 'cypress';

export default defineConfig({
e2e: {
baseUrl: 'https://integration-template-dapp.multiversx.com',
baseUrl: 'https://integration.template-dapp.multiversx.com/',
defaultCommandTimeout: 30000,
responseTimeout: 70000,
requestTimeout: 70000,
Expand Down
3 changes: 2 additions & 1 deletion src/config/config.mainnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { EnvironmentsEnum } from 'types';

export * from './sharedConfig';

export const contractAddress = '';
export const contractAddress =
'erd1qqqqqqqqqqqqqpgq6wvtphapx0xju6mgk65aryzecat4fcry9l5qycup8h';
export const API_URL = 'https://template-api.multiversx.com';
export const sampleAuthenticatedDomains = [API_URL];
export const environment = EnvironmentsEnum.mainnet;
3 changes: 2 additions & 1 deletion src/config/config.testnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { EnvironmentsEnum } from 'types';

export * from './sharedConfig';

export const contractAddress = '';
export const contractAddress =
'erd1qqqqqqqqqqqqqpgq4rnqmppypqdy263c9qjsy8uwurts47uv9l5q028464';
export const API_URL = 'https://testnet-template-api.multiversx.com';
export const sampleAuthenticatedDomains = [API_URL];
export const environment = EnvironmentsEnum.testnet;

0 comments on commit dacaccd

Please sign in to comment.