1 | <?php |
||
2 | |||
3 | /** |
||
4 | * Config params for the LaravelCryptoStats library. |
||
5 | */ |
||
6 | |||
7 | return [ |
||
8 | |||
9 | /* |
||
10 | * Default cryptocurrencies which user want to use in the application |
||
11 | */ |
||
12 | 'currencies' => [ |
||
13 | 'ETH', |
||
14 | 'LTC', |
||
15 | 'BTC', |
||
16 | ], |
||
17 | |||
18 | /* |
||
19 | * API key for Etherscan connection |
||
20 | */ |
||
21 | 'etherscan_api_key' => env('ETHERSCAN_API_KEY'), |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
22 | ]; |
||
23 |