| 1 | import 'package:cw_core/crypto_currency.dart'; |
| 2 | import 'package:cw_core/wallet_type.dart'; |
| 3 | |
| 4 | class CommonTestConstants { |
| 5 | static final pin = [0, 8, 0, 1]; |
| 6 | static final String sendTestAmount = '0.00008'; |
| 7 | static final String sendTestFiatAmount = '1.00'; |
| 8 | static final String exchangeTestAmount = '0.01'; |
| 9 | static final WalletType testWalletType = WalletType.solana; |
| 10 | static final String testWalletName = 'Integrated Testing Wallet'; |
| 11 | static final CryptoCurrency sendTestReceiveCurrency = CryptoCurrency.sol; |
| 12 | static final CryptoCurrency exchangeTestReceiveCurrency = CryptoCurrency.usdtSol; |
| 13 | static final CryptoCurrency exchangeTestDepositCurrency = CryptoCurrency.sol; |
| 14 | static final String testWalletAddress = '7TSTXnQZxQDA4JoNqs4DqVqE7oNWk2kmHkMT6DD6vw2S'; |
| 15 | } |