Skip to content
Open
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- added: App/device attestation for gated info-server requests
- added: Swapter swap provider
- added: "-m" tag on the version number in the Help scene for Maestro test builds
- added: StealthEX as a swap provider.
- changed: Style the entire "Already have an account? Sign in" line in the getting-started USP carousel with the tertiary link color, not just "Sign in".
- changed: Refresh the buy, sell, sort, scan-QR and FIO names icons to the updated design.
- changed: Display "MoonPay" instead of "Moonpay" wherever the partner name appears in the app.
Expand Down
1 change: 1 addition & 0 deletions src/actions/CategoriesActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,7 @@ export const pluginIdIcons: Record<string, string> = {
rango: EDGE_CONTENT_SERVER_URI + '/rango.png',
sideshift: EDGE_CONTENT_SERVER_URI + '/sideshift-logo.png',
simplex: EDGE_CONTENT_SERVER_URI + '/simplex.png',
stealthex: EDGE_CONTENT_SERVER_URI + '/exchangeIcons/stealthex/icon.png',
swapter: EDGE_CONTENT_SERVER_URI + '/exchangeIcons/swapter/icon.png',
swapuz: EDGE_CONTENT_SERVER_URI + '/swapuz.png',
thorchain: EDGE_CONTENT_SERVER_URI + '/thorchain.png',
Expand Down
5 changes: 5 additions & 0 deletions src/components/modals/SwapVerifyTermsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ const pluginData: Record<string, TermsUri> = {
kycUri:
'https://help.sideshift.ai/en/articles/6230858-sideshift-ai-s-risk-management-policy'
},
stealthex: {
termsUri: 'https://stealthex.io/terms/',
privacyUri: 'https://stealthex.io/privacy-policy/',
kycUri: 'https://stealthex.io/kyc-aml/'
},
swapuz: {
termsUri: 'https://swapuz.com/terms-of-use',
privacyUri: 'https://swapuz.com/privacy-policy',
Expand Down
4 changes: 4 additions & 0 deletions src/constants/MerchantContacts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ export const MERCHANT_CONTACTS: MerchantContact[] = [
displayName: 'Simplex',
thumbnailPath: `${EDGE_CONTENT_SERVER_URI}/simplex.png`
},
{
displayName: 'StealthEX',
thumbnailPath: `${EDGE_CONTENT_SERVER_URI}/exchangeIcons/stealthex/icon.png`
},
{
displayName: 'Swapuz',
thumbnailPath: `${EDGE_CONTENT_SERVER_URI}/swapuz.png`
Expand Down
5 changes: 5 additions & 0 deletions src/envConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,11 @@ export const asEnvConfig = asObject({
quiknodeApiKey: asOptional(asString, '')
}).withRest
),
STEALTHEX_INIT: asCorePluginInit(
asObject({
apiKey: asOptional(asString, '')
}).withRest
),
SWAPTER_INIT: asCorePluginInit(
asObject({
apiKey: asOptional(asString, '')
Expand Down
1 change: 1 addition & 0 deletions src/util/corePlugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ export const swapPlugins = {
letsexchange: ENV.LETSEXCHANGE_INIT,
nexchange: ENV.NEXCHANGE_INIT,
sideshift: ENV.SIDESHIFT_INIT,
stealthex: ENV.STEALTHEX_INIT,
swapter: ENV.SWAPTER_INIT,
swapuz: ENV.SWAPUZ_INIT,
xgram: ENV.XGRAM_INIT,
Expand Down
Loading