Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
Fix remaining nearprotocol.com in config + ci domain
Browse files Browse the repository at this point in the history
  • Loading branch information
vgrichina committed May 8, 2020
1 parent 2995329 commit 2ae1905
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function getConfig(env) {
nodeUrl: 'https://rpc.mainnet.near.org',
contractName: CONTRACT_NAME,
walletUrl: 'https://wallet.mainnet.near.org',
helperUrl: 'https://helper.mainnet.nearprotocol.com',
helperUrl: 'https://helper.mainnet.near.org',
};
case 'development':
case 'testnet':
Expand All @@ -19,23 +19,23 @@ function getConfig(env) {
nodeUrl: 'https://rpc.testnet.near.org',
contractName: CONTRACT_NAME,
walletUrl: 'https://wallet.testnet.near.org',
helperUrl: 'https://helper.testnet.nearprotocol.com',
helperUrl: 'https://helper.testnet.near.org',
};
case 'devnet':
return {
networkId: 'devnet',
nodeUrl: 'https://rpc.devnet.near.org',
contractName: CONTRACT_NAME,
walletUrl: 'https://wallet.devnet.near.org',
helperUrl: 'https://helper.devnet.nearprotocol.com',
helperUrl: 'https://helper.devnet.near.org',
};
case 'betanet':
return {
networkId: 'betanet',
nodeUrl: 'https://rpc.betanet.near.org',
contractName: CONTRACT_NAME,
walletUrl: 'https://wallet.betanet.near.org',
helperUrl: 'https://helper.betanet.nearprotocol.com',
helperUrl: 'https://helper.betanet.near.org',
};
case 'local':
return {
Expand All @@ -49,14 +49,14 @@ function getConfig(env) {
case 'ci':
return {
networkId: 'shared-test',
nodeUrl: 'http://shared-test.nearprotocol.com:3030',
nodeUrl: 'https://rpc.ci-testnet.near.org',
contractName: CONTRACT_NAME,
masterAccount: 'test.near',
};
case 'ci-betanet':
return {
networkId: 'shared-test-staging',
nodeUrl: 'http://rpc.ci-betanet.nearprotocol.com',
nodeUrl: 'https://rpc.ci-betanet.near.org',
contractName: CONTRACT_NAME,
masterAccount: 'test.near',
};
Expand Down

1 comment on commit 2ae1905

@mikedotexe
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

okay good, those ci and ci-betanet links weren't working yesterday, looks like you fixed them, phew

Please sign in to comment.