@@ -3,15 +3,15 @@  | 
                                                    ||
| 3 | 3 | namespace Vrajroham\LaravelBitpay\Commands;  | 
                                                        
| 4 | 4 | |
| 5 | 5 | use Bitpay\Bitpay;  | 
                                                        
| 6 | -use Bitpay\SinKey;  | 
                                                        |
| 7 | -use Bitpay\PublicKey;  | 
                                                        |
| 8 | -use Bitpay\PrivateKey;  | 
                                                        |
| 6 | +use Bitpay\Client\Adapter\CurlAdapter;  | 
                                                        |
| 7 | +use Bitpay\Client\BitpayException;  | 
                                                        |
| 8 | +use Bitpay\Client\Client as BitpayClient;  | 
                                                        |
| 9 | 9 | use Bitpay\Network\Livenet;  | 
                                                        
| 10 | 10 | use Bitpay\Network\Testnet;  | 
                                                        
| 11 | +use Bitpay\PrivateKey;  | 
                                                        |
| 12 | +use Bitpay\PublicKey;  | 
                                                        |
| 13 | +use Bitpay\SinKey;  | 
                                                        |
| 11 | 14 | use Illuminate\Console\Command;  | 
                                                        
| 12 | -use Bitpay\Client\BitpayException;  | 
                                                        |
| 13 | -use Bitpay\Client\Adapter\CurlAdapter;  | 
                                                        |
| 14 | -use Bitpay\Client\Client as BitpayClient;  | 
                                                        |
| 15 | 15 | use Vrajroham\LaravelBitpay\Traits\CreateKeypairTrait;  | 
                                                        
| 16 | 16 | |
| 17 | 17 | class CreateKeypair extends Command  | 
                                                        
@@ -2,11 +2,11 @@  | 
                                                    ||
| 2 | 2 | |
| 3 | 3 | namespace Vrajroham\LaravelBitpay\Traits;  | 
                                                        
| 4 | 4 | |
| 5 | -use Bitpay\Token;  | 
                                                        |
| 6 | -use Bitpay\Network\Livenet;  | 
                                                        |
| 7 | -use Bitpay\Network\Testnet;  | 
                                                        |
| 8 | 5 | use Bitpay\Client\Adapter\CurlAdapter;  | 
                                                        
| 9 | 6 | use Bitpay\Client\Client as BitpayClient;  | 
                                                        
| 7 | +use Bitpay\Network\Livenet;  | 
                                                        |
| 8 | +use Bitpay\Network\Testnet;  | 
                                                        |
| 9 | +use Bitpay\Token;  | 
                                                        |
| 10 | 10 | use Vrajroham\LaravelBitpay\Exceptions\InvalidConfigurationException;  | 
                                                        
| 11 | 11 | |
| 12 | 12 | trait LaravelBitpayTrait  |