@@ -40,6 +40,15 @@ interface Config {
4040 defaultAccount ?: string // strictly for dev use
4141}
4242
43+ const desktopUrls = {
44+ windows :
45+ 'https://github.com/celo-tools/celo-web-wallet/releases/download/v0.9.0/Celo-Wallet-0.9.0-win.exe' ,
46+ mac :
47+ 'https://github.com/celo-tools/celo-web-wallet/releases/download/v0.9.0/Celo-Wallet-0.9.0-mac.dmg' ,
48+ linux :
49+ 'https://github.com/celo-tools/celo-web-wallet/releases/download/v0.9.0/Celo-Wallet-0.9.0-linux-x86_64.AppImage' ,
50+ }
51+
4352// TODO find a nice way to switch btwn configs at build/run time
4453// eslint-disable-next-line @typescript-eslint/no-unused-vars
4554const configMainnet : Config = {
@@ -51,11 +60,7 @@ const configMainnet: Config = {
5160 gatewayFeeRecipient : '0x97a5fF70483F9320aFA72e04AbA148Aa1c26946C' ,
5261 blockscoutUrl : 'https://explorer.celo.org' ,
5362 discordUrl : 'https://discord.com/channels/600834479145353243/812471799585439794' ,
54- desktopUrls : {
55- windows : 'TODO' ,
56- mac : 'https://www.dropbox.com/s/wl563lcl24mop3u/Celo%20Wallet-0.9.0-mac.dmg?dl=1' ,
57- linux : 'TODO' ,
58- } ,
63+ desktopUrls,
5964 chainId : 42220 ,
6065 contractAddresses : {
6166 [ CeloContract . Accounts ] : '0x7d21685C17607338b313a7174bAb6620baD0aaB7' ,
@@ -84,11 +89,7 @@ const configAlfajores: Config = {
8489 jsonRpcUrlPrimary : 'https://alfajores-forno.celo-testnet.org' ,
8590 blockscoutUrl : 'https://alfajores-blockscout.celo-testnet.org' ,
8691 discordUrl : 'https://discord.com/channels/600834479145353243/812471799585439794' ,
87- desktopUrls : {
88- windows : 'TODO' ,
89- mac : 'TODO' ,
90- linux : 'TODO' ,
91- } ,
92+ desktopUrls,
9293 chainId : 44787 ,
9394 contractAddresses : {
9495 [ CeloContract . Accounts ] : '0xed7f51A34B4e71fbE69B3091FcF879cD14bD73A9' ,
0 commit comments