2
0
mirror of https://github.com/status-im/liquid-funding.git synced 2025-01-09 19:15:55 +00:00

38 lines
1020 B
JavaScript
Raw Normal View History

2018-12-01 17:16:58 -05:00
import StandardToken from 'Embark/contracts/StandardToken'
import SNT from 'Embark/contracts/SNT'
2019-01-04 15:52:01 -05:00
import sntIco from 'cryptocurrency-icons/svg/color/snt.svg'
2018-12-01 17:16:58 -05:00
2018-11-30 13:36:09 -05:00
export const TOKEN_ICON_API = 'https://raw.githubusercontent.com/TrustWallet/tokens/master/images'
export const TOKEN_COIN_API = 'https://raw.githubusercontent.com/TrustWallet/tokens/master/coins'
export const currencies = [
{
value: 'ETH',
label: 'Ether',
img: `${TOKEN_COIN_API}/60.png`,
},
{
value: SNT._address,
2018-11-30 13:36:09 -05:00
label: 'Status (SNT)',
2019-01-04 15:52:01 -05:00
img: sntIco
2018-11-30 13:36:09 -05:00
},
{
value: '0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359',
label: 'DAI',
},
2018-11-30 16:19:46 -05:00
{
2018-12-01 17:16:58 -05:00
value: StandardToken._address,
2018-12-01 15:32:00 -05:00
label: 'Standard Token',
icon: '🤔',
2018-11-30 16:19:46 -05:00
}
2018-11-30 13:36:09 -05:00
]
2018-11-30 16:19:46 -05:00
export const getTokenLabel = value => {
const token = currencies.find(currency => currency.value === value)
return token ? token.label : null
}
2019-01-11 15:55:42 -05:00
export const getTokenAddress = label => {
const token = currencies.find(currency => currency.label == label)
return token ? token.value : null
}