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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Unreleased (develop)

- added: Add Unizen DEX
- changed: Show KYC warning modal when trading with Swapuz
- fixed: Using deprecated wallets to handle links
- fixed: Thorchain stake minimum amount requirements
Expand Down
1 change: 1 addition & 0 deletions src/actions/CategoriesActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -562,6 +562,7 @@ export const pluginIdIcons: Record<string, string> = {
simplex: EDGE_CONTENT_SERVER_URI + '/simplex.png',
swapuz: EDGE_CONTENT_SERVER_URI + '/swapuz.png',
thorchain: EDGE_CONTENT_SERVER_URI + '/thorchain.png',
unizen: EDGE_CONTENT_SERVER_URI + '/unizen.png',
swapkit: EDGE_CONTENT_SERVER_URI + '/swapkit.png',
tronResources: EDGE_CONTENT_SERVER_URI + '/TRON/TRON.png',
velodrome: EDGE_CONTENT_SERVER_URI + '/velodrome.png',
Expand Down
12 changes: 12 additions & 0 deletions src/components/services/ContactsLoader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,18 @@ const merchantPartners = [
familyName: '',
recordID: ''
},
{
givenName: 'Unizen',
hasThumbnail: true,
thumbnailPath: 'unizen.png',
emailAddresses: [],
postalAddresses: [],
middleName: '',
company: '',
jobTitle: '',
familyName: '',
recordID: ''
},
{
givenName: 'Velodrome',
hasThumbnail: true,
Expand Down
5 changes: 5 additions & 0 deletions src/envConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,11 @@ export const asEnvConfig = asObject({
apiKey: asOptional(asString, '')
}).withRest
),
UNIZEN_INIT: asCorePluginInit(
asObject({
apiKey: asOptional(asString, '')
}).withRest
),
MAYA_PROTOCOL_INIT: asCorePluginInit(
asObject({
affiliateFeeBasis: asOptional(asString, '50'),
Expand Down
1 change: 1 addition & 0 deletions src/util/corePlugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ export const swapPlugins = {
thorchain: ENV.THORCHAIN_INIT,
swapkit: ENV.SWAPKIT_INIT,
tombSwap: ENV.TOMB_SWAP_INIT,
unizen: ENV.UNIZEN_INIT,
velodrome: true,
xrpdex: ENV.XRPDEX_INIT,
'0xgasless': ENV['0XGASLESS_INIT'],
Expand Down
Loading