2023-05-15 12:39:00 +00:00
|
|
|
import 'package:bitcoin_flutter/bitcoin_flutter.dart' as bitcoin;
|
2020-07-06 20:09:03 +00:00
|
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
|
|
import 'package:cake_wallet/core/validator.dart';
|
2021-12-24 12:37:24 +00:00
|
|
|
import 'package:cw_core/crypto_currency.dart';
|
2023-08-04 17:01:49 +00:00
|
|
|
import 'package:cw_core/erc20_token.dart';
|
2020-07-06 20:09:03 +00:00
|
|
|
|
|
|
|
class AddressValidator extends TextValidator {
|
2022-10-12 17:09:57 +00:00
|
|
|
AddressValidator({required CryptoCurrency type})
|
2020-07-06 20:09:03 +00:00
|
|
|
: super(
|
|
|
|
errorMessage: S.current.error_text_address,
|
2023-05-15 12:39:00 +00:00
|
|
|
useAdditionalValidation: type == CryptoCurrency.btc
|
|
|
|
? bitcoin.Address.validateAddress
|
|
|
|
: null,
|
2020-07-06 20:09:03 +00:00
|
|
|
pattern: getPattern(type),
|
|
|
|
length: getLength(type));
|
|
|
|
|
|
|
|
static String getPattern(CryptoCurrency type) {
|
2023-08-04 17:01:49 +00:00
|
|
|
if (type is Erc20Token) {
|
|
|
|
return '0x[0-9a-zA-Z]';
|
|
|
|
}
|
2020-07-06 20:09:03 +00:00
|
|
|
switch (type) {
|
|
|
|
case CryptoCurrency.xmr:
|
Cw 126 check validation for new currencies (#501)
* update address validation
xmr, ape, avaxc, eth, usdc, hbar, sc, sol, usdcsoul, usdttrc20, btt, bttsc, doge,firo, xvg, zen, tzec, zzec
* fix formating
2022-09-07 12:53:33 +00:00
|
|
|
return '^4[0-9a-zA-Z]{94}\$|^8[0-9a-zA-Z]{94}\$|^[0-9a-zA-Z]{106}\$';
|
2020-07-06 20:09:03 +00:00
|
|
|
case CryptoCurrency.ada:
|
2021-02-23 18:38:36 +00:00
|
|
|
return '^[0-9a-zA-Z]{59}\$|^[0-9a-zA-Z]{92}\$|^[0-9a-zA-Z]{104}\$'
|
|
|
|
'|^[0-9a-zA-Z]{105}\$|^addr1[0-9a-zA-Z]{98}\$';
|
2020-07-06 20:09:03 +00:00
|
|
|
case CryptoCurrency.btc:
|
2023-05-15 12:39:00 +00:00
|
|
|
return '^3[0-9a-zA-Z]{32}\$|^3[0-9a-zA-Z]{33}\$|^bc1[0-9a-zA-Z]{59}\$';
|
2020-07-06 20:09:03 +00:00
|
|
|
case CryptoCurrency.nano:
|
|
|
|
return '[0-9a-zA-Z_]';
|
2023-10-05 01:09:07 +00:00
|
|
|
case CryptoCurrency.banano:
|
|
|
|
return '[0-9a-zA-Z_]';
|
Cw 126 check validation for new currencies (#501)
* update address validation
xmr, ape, avaxc, eth, usdc, hbar, sc, sol, usdcsoul, usdttrc20, btt, bttsc, doge,firo, xvg, zen, tzec, zzec
* fix formating
2022-09-07 12:53:33 +00:00
|
|
|
case CryptoCurrency.usdc:
|
2022-10-20 17:23:36 +00:00
|
|
|
case CryptoCurrency.usdcpoly:
|
|
|
|
case CryptoCurrency.ape:
|
|
|
|
case CryptoCurrency.avaxc:
|
|
|
|
case CryptoCurrency.eth:
|
|
|
|
case CryptoCurrency.mana:
|
|
|
|
case CryptoCurrency.matic:
|
|
|
|
case CryptoCurrency.maticpoly:
|
|
|
|
case CryptoCurrency.mkr:
|
|
|
|
case CryptoCurrency.oxt:
|
|
|
|
case CryptoCurrency.paxg:
|
|
|
|
case CryptoCurrency.uni:
|
2023-07-13 14:31:45 +00:00
|
|
|
case CryptoCurrency.aave:
|
|
|
|
case CryptoCurrency.bat:
|
|
|
|
case CryptoCurrency.comp:
|
|
|
|
case CryptoCurrency.cro:
|
|
|
|
case CryptoCurrency.ens:
|
|
|
|
case CryptoCurrency.ftm:
|
|
|
|
case CryptoCurrency.frax:
|
|
|
|
case CryptoCurrency.gusd:
|
|
|
|
case CryptoCurrency.gtc:
|
|
|
|
case CryptoCurrency.grt:
|
|
|
|
case CryptoCurrency.ldo:
|
|
|
|
case CryptoCurrency.nexo:
|
|
|
|
case CryptoCurrency.pepe:
|
|
|
|
case CryptoCurrency.storj:
|
|
|
|
case CryptoCurrency.tusd:
|
|
|
|
case CryptoCurrency.wbtc:
|
|
|
|
case CryptoCurrency.weth:
|
|
|
|
case CryptoCurrency.zrx:
|
|
|
|
case CryptoCurrency.dydx:
|
|
|
|
case CryptoCurrency.steth:
|
2023-08-04 17:01:49 +00:00
|
|
|
case CryptoCurrency.shib:
|
Cw 126 check validation for new currencies (#501)
* update address validation
xmr, ape, avaxc, eth, usdc, hbar, sc, sol, usdcsoul, usdttrc20, btt, bttsc, doge,firo, xvg, zen, tzec, zzec
* fix formating
2022-09-07 12:53:33 +00:00
|
|
|
return '0x[0-9a-zA-Z]';
|
2020-07-06 20:09:03 +00:00
|
|
|
case CryptoCurrency.xrp:
|
2021-01-13 17:26:02 +00:00
|
|
|
return '^[0-9a-zA-Z]{34}\$|^X[0-9a-zA-Z]{46}\$';
|
2022-03-30 15:57:04 +00:00
|
|
|
case CryptoCurrency.xhv:
|
2022-06-01 11:12:09 +00:00
|
|
|
return '^hvx|hvi|hvs[0-9a-zA-Z]';
|
2022-03-30 15:57:04 +00:00
|
|
|
case CryptoCurrency.xag:
|
|
|
|
case CryptoCurrency.xau:
|
|
|
|
case CryptoCurrency.xaud:
|
|
|
|
case CryptoCurrency.xbtc:
|
|
|
|
case CryptoCurrency.xcad:
|
|
|
|
case CryptoCurrency.xchf:
|
|
|
|
case CryptoCurrency.xcny:
|
|
|
|
case CryptoCurrency.xeur:
|
|
|
|
case CryptoCurrency.xgbp:
|
|
|
|
case CryptoCurrency.xjpy:
|
|
|
|
case CryptoCurrency.xnok:
|
|
|
|
case CryptoCurrency.xnzd:
|
|
|
|
case CryptoCurrency.xusd:
|
2022-10-20 17:23:36 +00:00
|
|
|
case CryptoCurrency.usdt:
|
|
|
|
case CryptoCurrency.usdterc20:
|
|
|
|
case CryptoCurrency.xlm:
|
|
|
|
case CryptoCurrency.trx:
|
|
|
|
case CryptoCurrency.dai:
|
|
|
|
case CryptoCurrency.dash:
|
|
|
|
case CryptoCurrency.eos:
|
2023-10-12 22:50:16 +00:00
|
|
|
return '[0-9a-zA-Z]';
|
2022-10-20 17:23:36 +00:00
|
|
|
case CryptoCurrency.bch:
|
2023-10-12 22:50:16 +00:00
|
|
|
return '^(?!bitcoincash:)[0-9a-zA-Z]*\$|^(?!bitcoincash:)q[0-9a-zA-Z]{41}\$|^(?!bitcoincash:)q[0-9a-zA-Z]{42}\$|^bitcoincash:q[0-9a-zA-Z]{41}\$|^bitcoincash:q[0-9a-zA-Z]{42}\$';
|
2022-10-20 17:23:36 +00:00
|
|
|
case CryptoCurrency.bnb:
|
2022-03-30 15:57:04 +00:00
|
|
|
return '[0-9a-zA-Z]';
|
2023-05-24 13:48:06 +00:00
|
|
|
case CryptoCurrency.ltc:
|
|
|
|
return '^(?!(ltc|LTC)1)[0-9a-zA-Z]*\$|(^LTC1[A-Z0-9]*\$)|(^ltc1[a-z0-9]*\$)';
|
2023-05-15 12:39:00 +00:00
|
|
|
case CryptoCurrency.hbar:
|
Cw 126 check validation for new currencies (#501)
* update address validation
xmr, ape, avaxc, eth, usdc, hbar, sc, sol, usdcsoul, usdttrc20, btt, bttsc, doge,firo, xvg, zen, tzec, zzec
* fix formating
2022-09-07 12:53:33 +00:00
|
|
|
return '[0-9a-zA-Z.]';
|
|
|
|
case CryptoCurrency.zaddr:
|
2022-09-14 19:46:14 +00:00
|
|
|
return '^zs[0-9a-zA-Z]{75}';
|
Cw 126 check validation for new currencies (#501)
* update address validation
xmr, ape, avaxc, eth, usdc, hbar, sc, sol, usdcsoul, usdttrc20, btt, bttsc, doge,firo, xvg, zen, tzec, zzec
* fix formating
2022-09-07 12:53:33 +00:00
|
|
|
case CryptoCurrency.zec:
|
|
|
|
return '^t1[0-9a-zA-Z]{33}\$|^t3[0-9a-zA-Z]{33}\$';
|
2022-10-20 17:23:36 +00:00
|
|
|
case CryptoCurrency.dcr:
|
|
|
|
return 'D[ksecS]([0-9a-zA-Z])+';
|
|
|
|
case CryptoCurrency.rvn:
|
|
|
|
return '[Rr]([1-9a-km-zA-HJ-NP-Z]){33}';
|
|
|
|
case CryptoCurrency.near:
|
|
|
|
return '[0-9a-f]{64}';
|
|
|
|
case CryptoCurrency.rune:
|
|
|
|
return 'thor1[0-9a-z]{38}';
|
|
|
|
case CryptoCurrency.scrt:
|
|
|
|
return 'secret1[0-9a-z]{38}';
|
|
|
|
case CryptoCurrency.stx:
|
|
|
|
return 'S[MP][0-9a-zA-Z]+';
|
|
|
|
case CryptoCurrency.kmd:
|
|
|
|
return 'R[0-9a-zA-Z]{33}';
|
|
|
|
case CryptoCurrency.pivx:
|
|
|
|
return 'D([1-9a-km-zA-HJ-NP-Z]){33}';
|
2023-04-20 18:55:44 +00:00
|
|
|
case CryptoCurrency.btcln:
|
|
|
|
return '^(lnbc|LNBC)([0-9]{1,}[a-zA-Z0-9]+)';
|
2020-07-06 20:09:03 +00:00
|
|
|
default:
|
|
|
|
return '[0-9a-zA-Z]';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-12 17:09:57 +00:00
|
|
|
static List<int>? getLength(CryptoCurrency type) {
|
2023-08-04 17:01:49 +00:00
|
|
|
if (type is Erc20Token) {
|
|
|
|
return [42];
|
|
|
|
}
|
2020-07-06 20:09:03 +00:00
|
|
|
switch (type) {
|
|
|
|
case CryptoCurrency.xmr:
|
Cw 126 check validation for new currencies (#501)
* update address validation
xmr, ape, avaxc, eth, usdc, hbar, sc, sol, usdcsoul, usdttrc20, btt, bttsc, doge,firo, xvg, zen, tzec, zzec
* fix formating
2022-09-07 12:53:33 +00:00
|
|
|
return null;
|
2020-07-06 20:09:03 +00:00
|
|
|
case CryptoCurrency.ada:
|
2021-02-23 18:38:36 +00:00
|
|
|
return null;
|
2020-07-06 20:09:03 +00:00
|
|
|
case CryptoCurrency.btc:
|
2021-03-26 12:45:46 +00:00
|
|
|
return null;
|
2020-07-06 20:09:03 +00:00
|
|
|
case CryptoCurrency.dash:
|
|
|
|
return [34];
|
|
|
|
case CryptoCurrency.eos:
|
|
|
|
return [42];
|
|
|
|
case CryptoCurrency.eth:
|
2023-07-13 14:31:45 +00:00
|
|
|
case CryptoCurrency.usdcpoly:
|
|
|
|
case CryptoCurrency.mana:
|
|
|
|
case CryptoCurrency.matic:
|
|
|
|
case CryptoCurrency.maticpoly:
|
|
|
|
case CryptoCurrency.mkr:
|
|
|
|
case CryptoCurrency.oxt:
|
|
|
|
case CryptoCurrency.paxg:
|
|
|
|
case CryptoCurrency.uni:
|
|
|
|
case CryptoCurrency.dai:
|
|
|
|
case CryptoCurrency.ape:
|
|
|
|
case CryptoCurrency.usdc:
|
|
|
|
case CryptoCurrency.usdterc20:
|
|
|
|
case CryptoCurrency.aave:
|
|
|
|
case CryptoCurrency.bat:
|
|
|
|
case CryptoCurrency.comp:
|
|
|
|
case CryptoCurrency.cro:
|
|
|
|
case CryptoCurrency.ens:
|
|
|
|
case CryptoCurrency.ftm:
|
|
|
|
case CryptoCurrency.frax:
|
|
|
|
case CryptoCurrency.gusd:
|
|
|
|
case CryptoCurrency.gtc:
|
|
|
|
case CryptoCurrency.grt:
|
|
|
|
case CryptoCurrency.ldo:
|
|
|
|
case CryptoCurrency.nexo:
|
|
|
|
case CryptoCurrency.pepe:
|
|
|
|
case CryptoCurrency.storj:
|
|
|
|
case CryptoCurrency.tusd:
|
|
|
|
case CryptoCurrency.wbtc:
|
|
|
|
case CryptoCurrency.weth:
|
|
|
|
case CryptoCurrency.zrx:
|
|
|
|
case CryptoCurrency.dydx:
|
|
|
|
case CryptoCurrency.steth:
|
2023-08-04 17:01:49 +00:00
|
|
|
case CryptoCurrency.shib:
|
|
|
|
case CryptoCurrency.avaxc:
|
2023-10-12 22:50:16 +00:00
|
|
|
return [42];
|
2023-08-04 17:01:49 +00:00
|
|
|
case CryptoCurrency.bch:
|
2023-10-12 22:50:16 +00:00
|
|
|
return [42, 43, 44, 54, 55];
|
2023-08-04 17:01:49 +00:00
|
|
|
case CryptoCurrency.bnb:
|
2020-07-06 20:09:03 +00:00
|
|
|
return [42];
|
|
|
|
case CryptoCurrency.ltc:
|
2023-05-24 13:48:06 +00:00
|
|
|
return [34, 43, 63];
|
2020-07-06 20:09:03 +00:00
|
|
|
case CryptoCurrency.nano:
|
|
|
|
return [64, 65];
|
2023-10-05 01:09:07 +00:00
|
|
|
case CryptoCurrency.banano:
|
|
|
|
return [64, 65];
|
Cw 126 check validation for new currencies (#501)
* update address validation
xmr, ape, avaxc, eth, usdc, hbar, sc, sol, usdcsoul, usdttrc20, btt, bttsc, doge,firo, xvg, zen, tzec, zzec
* fix formating
2022-09-07 12:53:33 +00:00
|
|
|
case CryptoCurrency.sc:
|
|
|
|
return [76];
|
|
|
|
case CryptoCurrency.sol:
|
|
|
|
return [32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44];
|
2020-07-06 20:09:03 +00:00
|
|
|
case CryptoCurrency.trx:
|
|
|
|
return [34];
|
Cw 126 check validation for new currencies (#501)
* update address validation
xmr, ape, avaxc, eth, usdc, hbar, sc, sol, usdcsoul, usdttrc20, btt, bttsc, doge,firo, xvg, zen, tzec, zzec
* fix formating
2022-09-07 12:53:33 +00:00
|
|
|
case CryptoCurrency.usdcsol:
|
|
|
|
return [32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44];
|
2020-07-06 20:09:03 +00:00
|
|
|
case CryptoCurrency.usdt:
|
2022-02-08 08:57:02 +00:00
|
|
|
return [34];
|
Cw 126 check validation for new currencies (#501)
* update address validation
xmr, ape, avaxc, eth, usdc, hbar, sc, sol, usdcsoul, usdttrc20, btt, bttsc, doge,firo, xvg, zen, tzec, zzec
* fix formating
2022-09-07 12:53:33 +00:00
|
|
|
case CryptoCurrency.usdttrc20:
|
|
|
|
return [34];
|
2020-07-06 20:09:03 +00:00
|
|
|
case CryptoCurrency.xlm:
|
|
|
|
return [56];
|
|
|
|
case CryptoCurrency.xrp:
|
2021-01-13 17:26:02 +00:00
|
|
|
return null;
|
2022-03-30 15:57:04 +00:00
|
|
|
case CryptoCurrency.xhv:
|
|
|
|
case CryptoCurrency.xag:
|
|
|
|
case CryptoCurrency.xau:
|
|
|
|
case CryptoCurrency.xaud:
|
|
|
|
case CryptoCurrency.xbtc:
|
|
|
|
case CryptoCurrency.xcad:
|
|
|
|
case CryptoCurrency.xchf:
|
|
|
|
case CryptoCurrency.xcny:
|
|
|
|
case CryptoCurrency.xeur:
|
|
|
|
case CryptoCurrency.xgbp:
|
|
|
|
case CryptoCurrency.xjpy:
|
|
|
|
case CryptoCurrency.xnok:
|
|
|
|
case CryptoCurrency.xnzd:
|
|
|
|
case CryptoCurrency.xusd:
|
|
|
|
return [98, 99, 106];
|
Cw 126 check validation for new currencies (#501)
* update address validation
xmr, ape, avaxc, eth, usdc, hbar, sc, sol, usdcsoul, usdttrc20, btt, bttsc, doge,firo, xvg, zen, tzec, zzec
* fix formating
2022-09-07 12:53:33 +00:00
|
|
|
case CryptoCurrency.btt:
|
2022-11-30 19:18:12 +00:00
|
|
|
case CryptoCurrency.bttc:
|
Cw 126 check validation for new currencies (#501)
* update address validation
xmr, ape, avaxc, eth, usdc, hbar, sc, sol, usdcsoul, usdttrc20, btt, bttsc, doge,firo, xvg, zen, tzec, zzec
* fix formating
2022-09-07 12:53:33 +00:00
|
|
|
case CryptoCurrency.doge:
|
|
|
|
case CryptoCurrency.firo:
|
|
|
|
return [34];
|
|
|
|
case CryptoCurrency.hbar:
|
|
|
|
return [4, 5, 6, 7, 8, 9, 10, 11];
|
2023-05-15 12:39:00 +00:00
|
|
|
case CryptoCurrency.xvg:
|
Cw 126 check validation for new currencies (#501)
* update address validation
xmr, ape, avaxc, eth, usdc, hbar, sc, sol, usdcsoul, usdttrc20, btt, bttsc, doge,firo, xvg, zen, tzec, zzec
* fix formating
2022-09-07 12:53:33 +00:00
|
|
|
return [34];
|
2023-05-15 12:39:00 +00:00
|
|
|
case CryptoCurrency.zen:
|
Cw 126 check validation for new currencies (#501)
* update address validation
xmr, ape, avaxc, eth, usdc, hbar, sc, sol, usdcsoul, usdttrc20, btt, bttsc, doge,firo, xvg, zen, tzec, zzec
* fix formating
2022-09-07 12:53:33 +00:00
|
|
|
return [35];
|
|
|
|
case CryptoCurrency.zaddr:
|
|
|
|
return null;
|
|
|
|
case CryptoCurrency.zec:
|
|
|
|
return null;
|
2022-10-20 17:23:36 +00:00
|
|
|
case CryptoCurrency.kmd:
|
|
|
|
case CryptoCurrency.pivx:
|
|
|
|
case CryptoCurrency.rvn:
|
|
|
|
return [34];
|
|
|
|
case CryptoCurrency.dcr:
|
|
|
|
return [35];
|
|
|
|
case CryptoCurrency.stx:
|
|
|
|
return [40, 41, 42];
|
|
|
|
case CryptoCurrency.rune:
|
|
|
|
return [43];
|
|
|
|
case CryptoCurrency.scrt:
|
|
|
|
return [45];
|
|
|
|
case CryptoCurrency.near:
|
|
|
|
return [64];
|
2023-04-20 18:55:44 +00:00
|
|
|
case CryptoCurrency.btcln:
|
|
|
|
return null;
|
2020-07-06 20:09:03 +00:00
|
|
|
default:
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|
2023-01-24 18:24:46 +00:00
|
|
|
|
|
|
|
static String? getAddressFromStringPattern(CryptoCurrency type) {
|
|
|
|
switch (type) {
|
|
|
|
case CryptoCurrency.xmr:
|
|
|
|
return '([^0-9a-zA-Z]|^)4[0-9a-zA-Z]{94}([^0-9a-zA-Z]|\$)'
|
|
|
|
'|([^0-9a-zA-Z]|^)8[0-9a-zA-Z]{94}([^0-9a-zA-Z]|\$)'
|
|
|
|
'|([^0-9a-zA-Z]|^)[0-9a-zA-Z]{106}([^0-9a-zA-Z]|\$)';
|
|
|
|
case CryptoCurrency.btc:
|
|
|
|
return '([^0-9a-zA-Z]|^)1[0-9a-zA-Z]{32}([^0-9a-zA-Z]|\$)'
|
|
|
|
'|([^0-9a-zA-Z]|^)1[0-9a-zA-Z]{33}([^0-9a-zA-Z]|\$)'
|
|
|
|
'|([^0-9a-zA-Z]|^)3[0-9a-zA-Z]{32}([^0-9a-zA-Z]|\$)'
|
|
|
|
'|([^0-9a-zA-Z]|^)3[0-9a-zA-Z]{33}([^0-9a-zA-Z]|\$)'
|
|
|
|
'|([^0-9a-zA-Z]|^)bc1[0-9a-zA-Z]{39}([^0-9a-zA-Z]|\$)'
|
|
|
|
'|([^0-9a-zA-Z]|^)bc1[0-9a-zA-Z]{59}([^0-9a-zA-Z]|\$)';
|
2023-02-02 16:36:57 +00:00
|
|
|
case CryptoCurrency.ltc:
|
|
|
|
return '([^0-9a-zA-Z]|^)^L[a-zA-Z0-9]{26,33}([^0-9a-zA-Z]|\$)'
|
|
|
|
'|([^0-9a-zA-Z]|^)[LM][a-km-zA-HJ-NP-Z1-9]{26,33}([^0-9a-zA-Z]|\$)'
|
|
|
|
'|([^0-9a-zA-Z]|^)ltc[a-zA-Z0-9]{26,45}([^0-9a-zA-Z]|\$)';
|
2023-08-04 17:01:49 +00:00
|
|
|
case CryptoCurrency.eth:
|
|
|
|
return '0x[0-9a-zA-Z]{42}';
|
2023-10-09 15:18:59 +00:00
|
|
|
case CryptoCurrency.nano:
|
|
|
|
return 'nano_[0-9a-zA-Z]{60}';
|
|
|
|
case CryptoCurrency.banano:
|
|
|
|
return 'ban_[0-9a-zA-Z]{60}';
|
2023-10-12 22:50:16 +00:00
|
|
|
case CryptoCurrency.bch:
|
|
|
|
return 'bitcoincash:q[0-9a-zA-Z]{41}([^0-9a-zA-Z]|\$)'
|
|
|
|
'|bitcoincash:q[0-9a-zA-Z]{42}([^0-9a-zA-Z]|\$)'
|
|
|
|
'|([^0-9a-zA-Z]|^)q[0-9a-zA-Z]{41}([^0-9a-zA-Z]|\$)'
|
|
|
|
'|([^0-9a-zA-Z]|^)q[0-9a-zA-Z]{42}([^0-9a-zA-Z]|\$)';
|
2023-01-24 18:24:46 +00:00
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2023-09-21 14:16:27 +00:00
|
|
|
}
|