@@ -2,6 +2,8 @@ import React, {ReactElement} from 'react';
2
2
import BtcIcon from '../../assets/img/currencies/btc.svg' ;
3
3
import BchIcon from '../../assets/img/currencies/bch.svg' ;
4
4
import EthIcon from '../../assets/img/currencies/eth.svg' ;
5
+ import RbtcIcon from '../../assets/img/currencies/rbtc.svg' ;
6
+ import XUSDIcon from '../../assets/img/currencies/xusd.svg' ;
5
7
import DogeIcon from '../../assets/img/currencies/doge.svg' ;
6
8
import LtcIcon from '../../assets/img/currencies/ltc.svg' ;
7
9
import XrpIcon from '../../assets/img/currencies/xrp.svg' ;
@@ -32,6 +34,8 @@ export const CurrencyListIcons: {
32
34
btc : props => < BtcIcon { ...props } /> ,
33
35
bch : props => < BchIcon { ...props } /> ,
34
36
eth : props => < EthIcon { ...props } /> ,
37
+ rbtc : props => < RbtcIcon { ...props } /> ,
38
+ xusd : props => < XUSDIcon { ...props } /> ,
35
39
doge : props => < DogeIcon { ...props } /> ,
36
40
ltc : props => < LtcIcon { ...props } /> ,
37
41
xrp : props => < XrpIcon { ...props } /> ,
@@ -71,6 +75,14 @@ export const SupportedCurrencyOptions: Array<SupportedCurrencyOption> = [
71
75
hasMultisig : false , // TODO
72
76
imgSrc : require ( '../../assets/img/currencies/png/ETH.png' ) ,
73
77
} ,
78
+ {
79
+ id : 'rbtc' ,
80
+ img : CurrencyListIcons . rbtc ,
81
+ currencyName : 'RSK' ,
82
+ currencyAbbreviation : 'RBTC' ,
83
+ hasMultisig : false , // TODO
84
+ imgSrc : require ( '../../assets/img/currencies/png/RBTC.png' ) ,
85
+ } ,
74
86
{
75
87
id : 'doge' ,
76
88
img : CurrencyListIcons . doge ,
@@ -142,6 +154,14 @@ export const SupportedCurrencyOptions: Array<SupportedCurrencyOption> = [
142
154
isToken : true ,
143
155
imgSrc : require ( '../../assets/img/currencies/png/BUSD.png' ) ,
144
156
} ,
157
+ {
158
+ id : 'xusd' ,
159
+ img : CurrencyListIcons . xusd ,
160
+ currencyName : 'Sovryn XUSD' ,
161
+ currencyAbbreviation : 'XUSD' ,
162
+ isToken : true ,
163
+ imgSrc : require ( '../../assets/img/currencies/png/xusd.png' ) ,
164
+ } ,
145
165
{
146
166
id : 'dai' ,
147
167
img : CurrencyListIcons . dai ,
0 commit comments