/**
* Returns true if addresses are equals.
* Note: It will compare the string in lowercase
* @param {Address} [a]
* @param {Address} [b]
*/exportfunctionisAddressesEquals(a, b) {
return a !== undefined && a?.toString().toLowerCase() === b?.toString().toLowerCase();
}