import 'package:cw_core/crypto_currency.dart';
import 'package:cw_core/wallet_type.dart';

class CommonTestConstants {
  static final pin = [0, 8, 0, 1];
  static final String sendTestAmount = '0.00008';
  static final String exchangeTestAmount = '0.01';
  static final WalletType testWalletType = WalletType.solana;
  static final String testWalletName = 'Integrated Testing Wallet';
  static final CryptoCurrency testReceiveCurrency = CryptoCurrency.usdtSol;
  static final CryptoCurrency testDepositCurrency = CryptoCurrency.sol;
  static final String testWalletAddress = '5v9gTW1yWPffhnbNKuvtL2frevAf4HpBMw8oYnfqUjhm';
}