Skip to content

Commit

Permalink
Merge pull request #11977 from Gamboster/feat/shibSupportSimplexAndCh…
Browse files Browse the repository at this point in the history
…angelly

Feat: shib support for Simplex
  • Loading branch information
cmgustavo authored Dec 7, 2021
2 parents 1822847 + 109ac12 commit 1164156
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<img src="assets/img/currencies/{{wallet.coin.toLowerCase()}}.svg" />
</ion-icon>
<ion-icon *ngIf="!currencyProvider.COIN[wallet.coin | uppercase]" class="item-img" item-start>
<img [src]="currencyProvider.getLogoURI(token.symbol.toLowerCase())" (error)="currencyProvider.defaultLogoURI(img)" #img/>
<img [src]="currencyProvider.getLogoURI(wallet.coin.toLowerCase())" (error)="currencyProvider.defaultLogoURI(img)" #img/>
</ion-icon>
<span class="note-container ellipsis">{{wallet?.name}}</span>
<ion-icon [name]="isOpenSelector.destination ? 'ios-arrow-up-outline' : 'ios-arrow-down-outline'"></ion-icon>
Expand Down
3 changes: 2 additions & 1 deletion src/providers/changelly/changelly.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ export class ChangellyProvider {
'doge',
'ltc',
'usdt',
'bat'
'bat',
'shib'
];
}

Expand Down
3 changes: 2 additions & 1 deletion src/providers/simplex/simplex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ export class SimplexProvider {
'doge',
'dai',
'usdc',
'ltc'
'ltc',
'shib'
];
this.fiatAmountLimits = {
min: 50,
Expand Down

0 comments on commit 1164156

Please sign in to comment.