-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
DAO-556 Added links (#80)
* DAO-556 Added links * Fixed Dapp by dApp
1 parent
2cd5b14
commit 0fae2fb
Showing
3 changed files
with
28 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
const testnet = { | ||
registerRns: 'https://testnet.manager.rns.rifos.org/', | ||
tokenBridge: 'https://testnet.tokenbridge.rsk.co/', | ||
flyover: 'https://dapp.testnet.flyover.rif.technology/', | ||
readMore: 'https://dev.rootstock.io/', | ||
} | ||
|
||
const mainnet = { | ||
registerRns: 'https://manager.rns.rifos.org/', | ||
tokenBridge: 'https://tokenbridge.rsk.co/', | ||
flyover: 'https://dapp.flyover.rif.technology/', | ||
readMore: 'https://dev.rootstock.io/', | ||
} | ||
|
||
const environments = { | ||
testnet, | ||
mainnet, | ||
} | ||
// @ts-ignore | ||
export const currentLinks = environments[process.env.NEXT_PUBLIC_ENV] as typeof testnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters