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

Commit

Permalink
Merge pull request #355 from near/hotfix/near-org-links
Browse files Browse the repository at this point in the history
change nodeUrl, walletUrl to use near.org
  • Loading branch information
vgrichina authored May 8, 2020
2 parents 25e75cb + c99c2a1 commit 2995329
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,34 +7,34 @@ function getConfig(env) {
case 'mainnet':
return {
networkId: 'mainnet',
nodeUrl: 'https://rpc.mainnet.nearprotocol.com',
nodeUrl: 'https://rpc.mainnet.near.org',
contractName: CONTRACT_NAME,
walletUrl: 'https://wallet.mainnet.nearprotocol.com',
walletUrl: 'https://wallet.mainnet.near.org',
helperUrl: 'https://helper.mainnet.nearprotocol.com',
};
case 'development':
case 'testnet':
return {
networkId: 'default',
nodeUrl: 'https://rpc.testnet.nearprotocol.com',
nodeUrl: 'https://rpc.testnet.near.org',
contractName: CONTRACT_NAME,
walletUrl: 'https://wallet.testnet.nearprotocol.com',
walletUrl: 'https://wallet.testnet.near.org',
helperUrl: 'https://helper.testnet.nearprotocol.com',
};
case 'devnet':
return {
networkId: 'devnet',
nodeUrl: 'https://rpc.devnet.nearprotocol.com',
nodeUrl: 'https://rpc.devnet.near.org',
contractName: CONTRACT_NAME,
walletUrl: 'https://wallet.devnet.nearprotocol.com',
walletUrl: 'https://wallet.devnet.near.org',
helperUrl: 'https://helper.devnet.nearprotocol.com',
};
case 'betanet':
return {
networkId: 'betanet',
nodeUrl: 'https://rpc.betanet.nearprotocol.com',
nodeUrl: 'https://rpc.betanet.near.org',
contractName: CONTRACT_NAME,
walletUrl: 'https://wallet.betanet.nearprotocol.com',
walletUrl: 'https://wallet.betanet.near.org',
helperUrl: 'https://helper.betanet.nearprotocol.com',
};
case 'local':
Expand Down

0 comments on commit 2995329

Please sign in to comment.