Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.86 KB | None | 0 0
  1. return [
  2. 'btc' => [
  3. 'abbr' => 'btc',
  4. 'name' => 'bitcoin',
  5. 'icon' => KERNEL_CONFIG['static_host'] . '/img/currencies/bitcoin.png',
  6. 'can_generate' => true,
  7. 'type' => 'crypto',
  8. 'color' => '#fff',
  9. 'gradient' => ['#fff', '#fff']
  10. ],
  11. 'eth' => [
  12. 'abbr' => 'eth',
  13. 'name' => 'ethereum',
  14. 'icon' => KERNEL_CONFIG['static_host'] . '/img/currencies/ethereum.png',
  15. 'can_generate' => true,
  16. 'type' => 'crypto',
  17. ],
  18. 'ltc' => [
  19. 'abbr' => 'ltc',
  20. 'name' => 'litecoin',
  21. 'icon' => KERNEL_CONFIG['static_host'] . '/img/currencies/litecoin.png',
  22. 'can_generate' => true,
  23. 'type' => 'crypto',
  24. ],
  25. 'xrp' => [
  26. 'abbr' => 'xrp',
  27. 'name' => 'ripple',
  28. 'icon' => KERNEL_CONFIG['static_host'] . '/img/currencies/ripple.png',
  29. 'can_generate' => false,
  30. 'type' => 'crypto',
  31. ],
  32. 'bchabc' => [
  33. 'abbr' => 'bchabc',
  34. 'name' => 'Bitcoin Cash ABC',
  35. 'icon' => KERNEL_CONFIG['static_host'] . '/img/currencies/bitcoincash.png',
  36. 'can_generate' => false,
  37. 'type' => 'crypto',
  38. ],
  39. 'usdt' => [
  40. 'abbr' => 'usdt',
  41. 'name' => 'Tether',
  42. 'icon' => KERNEL_CONFIG['static_host'] . '/img/currencies/dollar.png',
  43. 'can_generate' => false,
  44. 'type' => 'crypto',
  45. ],
  46. 'usd' => [
  47. 'abbr' => 'usd',
  48. 'name' => 'Dollars',
  49. 'icon' => KERNEL_CONFIG['static_host'] . '/img/currencies/dollar.png',
  50. 'can_generate' => false,
  51. 'type' => 'fiat',
  52. ],
  53. 'eur' => [
  54. 'abbr' => 'eur',
  55. 'name' => 'Euro',
  56. 'icon' => KERNEL_CONFIG['static_host'] . '/img/currencies/euro.png',
  57. 'can_generate' => false,
  58. 'type' => 'fiat',
  59. ],
  60. 'rub' => [
  61. 'abbr' => 'rub',
  62. 'name' => 'Rubles',
  63. 'icon' => KERNEL_CONFIG['static_host'] . '/img/currencies/rubles.png',
  64. 'can_generate' => false,
  65. 'type' => 'fiat',
  66. ],
  67. 'idr' => [
  68. 'abbr' => 'idr',
  69. 'name' => 'Indonesian Rupiah',
  70. 'icon' => KERNEL_CONFIG['static_host'] . '/img/currencies/indonesian-rupiah.png',
  71. 'can_generate' => false,
  72. 'type' => 'fiat',
  73. ],
  74. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement