Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions env.example.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@
"X_FIO_INIT": {
"fioRegApiToken": ""
},
"X_SIDESHIFT_INIT": {
"affiliateId": ""
},

"-------- app options --------": 0,
"DEBUG_CORE_BRIDGE": false,
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/assets/images/exchange/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import coinswitchFullLogo from './exchange_logo_coinswitch.png'
import faastFullLogo from './exchange_logo_faast.png'
import foxExchangeFullLogo from './exchange_logo_fox_exchange.png'
import godexFullLogo from './exchange_logo_godex.png'
import sideshiftFullLogo from './exchange_logo_sideshiftai.png'
import switchainFullLogo from './exchange_logo_switchain.png'
import totleFullLogo from './exchange_logo_totle.png'
import changellyLogo from './settingsExchangeChangelly.png'
Expand All @@ -17,6 +18,7 @@ import defaultLogo from './settingsExchangeDefault.png'
import faastLogo from './settingsExchangeFaast.png'
import foxExchangeLogo from './settingsExchangeFoxExchange.png'
import godexLogo from './settingsExchangeGodex.png'
import sideshiftLogo from './settingsExchangeSideShiftAI.png'
import switchainLogo from './settingsExchangeSwitchain.png'
import totleLogo from './settingsExchangeTotle.png'

Expand All @@ -38,6 +40,7 @@ export const swapThemePluginIcons = (pluginId: string, theme: Theme) => {
foxExchange: theme.settingsFoxExchangeLogo,
godex: theme.settingsGodexLogo,
switchain: theme.settingsSwitchainLogo,
sideshift: theme.settingsSideshiftLogo,
totle: theme.settingsTotleLogo,
default: theme.settingsDefaultLogo
}
Expand All @@ -53,6 +56,7 @@ export const swapPluginIcons = {
faast: faastLogo,
foxExchange: foxExchangeLogo,
godex: godexLogo,
sideshift: sideshiftLogo,
switchain: switchainLogo,
totle: totleLogo
}
Expand All @@ -65,6 +69,7 @@ export const swapPluginLogos = {
faast: faastFullLogo,
foxExchange: foxExchangeFullLogo,
godex: godexFullLogo,
sideshift: sideshiftFullLogo,
switchain: switchainFullLogo,
totle: totleFullLogo,
transfer: transferFullLogo
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/theme/variables/edgeDark.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import defaultLogo from '../../assets/images/exchange/settingsExchangeDefault.pn
import faastLogo from '../../assets/images/exchange/settingsExchangeFaast.png'
import foxExchangeLogo from '../../assets/images/exchange/settingsExchangeFoxExchange.png'
import godexLogo from '../../assets/images/exchange/settingsExchangeGodex.png'
import sideshiftLogo from '../../assets/images/exchange/settingsExchangeSideShiftAI.png'
import switchainLogo from '../../assets/images/exchange/settingsExchangeSwitchain.png'
import totleLogo from '../../assets/images/exchange/settingsExchangeTotle.png'
import { type Theme } from '../../types/Theme.js'
Expand Down Expand Up @@ -191,6 +192,7 @@ export const edgeDark: Theme = {
settingsFaastLogo: faastLogo,
settingsFoxExchangeLogo: foxExchangeLogo,
settingsGodexLogo: godexLogo,
settingsSideshiftLogo: sideshiftLogo,
settingsSwitchainLogo: switchainLogo,
settingsTotleLogo: totleLogo
}
2 changes: 2 additions & 0 deletions src/theme/variables/edgeLight.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import defaultLogo from '../../assets/images/exchange/settingsExchangeDefault.pn
import faastLogo from '../../assets/images/exchange/settingsExchangeFaast.png'
import foxExchangeLogo from '../../assets/images/exchange/settingsExchangeFoxExchange.png'
import godexLogo from '../../assets/images/exchange/settingsExchangeGodex.png'
import sideshiftLogo from '../../assets/images/exchange/settingsExchangeSideShiftAI.png'
import switchainLogo from '../../assets/images/exchange/settingsExchangeSwitchain.png'
import totleLogo from '../../assets/images/exchange/settingsExchangeTotle.png'
import { type Theme } from '../../types/Theme.js'
Expand Down Expand Up @@ -190,6 +191,7 @@ export const edgeLight: Theme = {
settingsFaastLogo: faastLogo,
settingsFoxExchangeLogo: foxExchangeLogo,
settingsGodexLogo: godexLogo,
settingsSideshiftLogo: sideshiftLogo,
settingsSwitchainLogo: switchainLogo,
settingsTotleLogo: totleLogo
}
1 change: 1 addition & 0 deletions src/types/Theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,5 +147,6 @@ export type Theme = {
settingsFoxExchangeLogo: string,
settingsGodexLogo: string,
settingsSwitchainLogo: string,
settingsSideshiftLogo: string,
settingsTotleLogo: string
}
1 change: 1 addition & 0 deletions src/util/corePlugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ export const swapPlugins = {
foxExchange: ENV.FOX_INIT,
godex: ENV.GODEX_INIT,
// shapeshift: ENV.SHAPESHIFT_INIT,
sideshift: ENV.SIDESHIFT_INIT,
switchain: ENV.SWITCHAIN_INIT,
totle: ENV.TOTLE_INIT,
transfer: true
Expand Down