Merge branch 'master' of https://github.com/noirofficial/bisq into noirofficial-master

This commit is contained in:
Manfred Karrer 2019-01-07 23:42:00 +01:00
commit 1d72fe2059
No known key found for this signature in database
GPG key ID: 401250966A6B2C46
3 changed files with 71 additions and 0 deletions

View file

@ -0,0 +1,27 @@
/*
* This file is part of Bisq.
*
* Bisq is free software: you can redistribute it and/or modify it
* under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at
* your option) any later version.
*
* Bisq is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
* License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
*/
package bisq.asset.coins;
import bisq.asset.Coin;
import bisq.asset.RegexAddressValidator;
public class Noir extends Coin {
public Noir() {
super("Noir", "NOR", new RegexAddressValidator("^[Z][_A-z0-9]*([_A-z0-9])*$"));
}
}

View file

@ -40,6 +40,7 @@ bisq.asset.coins.MonetaryUnit
bisq.asset.coins.MoX
bisq.asset.coins.Namecoin
bisq.asset.coins.Neos
bisq.asset.coins.Noir
bisq.asset.coins.Pinkcoin
bisq.asset.coins.PIVX
bisq.asset.coins.PZDC

View file

@ -0,0 +1,43 @@
/*
* This file is part of Bisq.
*
* Bisq is free software: you can redistribute it and/or modify it
* under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at
* your option) any later version.
*
* Bisq is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
* License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
*/
package bisq.asset.coins;
import bisq.asset.AbstractAssetWithDefaultValidatorTest;
import org.junit.Test;
public class NoirTest extends AbstractAssetWithDefaultValidatorTest {
public NoirTest() {
super(new Noir());
}
@Test
public void testValidAddresses() {
assertValidAddress("ZMZ6M64FiFjPjmzXRf7xBuyarorUmT8uyG");
assertValidAddress("ZHoMM3vccwGrAQocmmp9ZHA7Gjg9Uqkok7");
}
@Test
public void testInvalidAddresses() {
assertInvalidAddress("");
assertInvalidAddress("21HQQgsvLTgN9xD9hNmAgAreakzVzQUSLSHa");
assertInvalidAddress("ZHoMM3vccwGrAQocmmp9ZHA7Gjg9Uqkok7*");
assertInvalidAddress("ZHoMM3vccwGrAQocmmp9ZHA7Gjg9Uqkok7#jHt5jtP");
}
}