mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-24 17:28:10 +00:00
33 lines
838 B
JavaScript
33 lines
838 B
JavaScript
export default [
|
|
{
|
|
coinName: 'Bitcoin',
|
|
url: 'https://wallet.trezor.io/#/coin/btc',
|
|
image: '../images/btc-logo.png',
|
|
},
|
|
{
|
|
coinName: 'Litecoin',
|
|
url: 'https://wallet.trezor.io/#/coin/ltc',
|
|
image: '../images/ltc-logo.png',
|
|
},
|
|
{
|
|
coinName: 'Bitcoin Cash',
|
|
url: 'https://wallet.trezor.io/#/coin/bch',
|
|
image: '../images/bch-logo.png',
|
|
},
|
|
{
|
|
coinName: 'Bitcoin Gold',
|
|
url: 'https://wallet.trezor.io/#/coin/btg',
|
|
image: '../images/btg-logo.png',
|
|
},
|
|
{
|
|
coinName: 'Dash',
|
|
url: 'https://wallet.trezor.io/#/coin/dash',
|
|
image: '../images/dash-logo.png',
|
|
},
|
|
{
|
|
coinName: 'Zcash',
|
|
url: 'https://wallet.trezor.io/#/coin/zec',
|
|
image: '../images/zec-logo.png',
|
|
},
|
|
];
|