hexters / CoinPayment

Package to handle payment of cryptocurrency
https://www.coinpayments.net/index.php?ref=3dc0c5875304cc5cc1d98782c2741cb5
MIT License
73 stars 42 forks source link

Chain coin Icons are in a different directory in Coinpayments.net #66

Open goldsvetlobby opened 3 years ago

goldsvetlobby commented 3 years ago

The Chain icons are not showing because these icons are in the /images/chained folder

How can I call them ? the following in the ajax controller is defined as $icon how to add another variable? I tried @icon1 but no luck!!!

$icon = $logos[$value['name']] ?? 'https://www.coinpayments.net/images/coins/' . $img . '.png';

I suppose I need:

$icon = $logos[$value['name']] ?? 'https://www.coinpayments.net/images/coins/chained/' . $img . '.png';

Crypto2 commented 2 years ago

The CoinPayments 'rates' API call returns the coin image URL so they can get the right image URL for the coin from there.