mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 15:00:30 +01:00
Merge branch 'master' of https://github.com/noirofficial/bisq into noirofficial-master
This commit is contained in:
commit
1d72fe2059
3 changed files with 71 additions and 0 deletions
27
assets/src/main/java/bisq/asset/coins/Noir.java
Normal file
27
assets/src/main/java/bisq/asset/coins/Noir.java
Normal 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])*$"));
|
||||||
|
}
|
||||||
|
}
|
|
@ -40,6 +40,7 @@ bisq.asset.coins.MonetaryUnit
|
||||||
bisq.asset.coins.MoX
|
bisq.asset.coins.MoX
|
||||||
bisq.asset.coins.Namecoin
|
bisq.asset.coins.Namecoin
|
||||||
bisq.asset.coins.Neos
|
bisq.asset.coins.Neos
|
||||||
|
bisq.asset.coins.Noir
|
||||||
bisq.asset.coins.Pinkcoin
|
bisq.asset.coins.Pinkcoin
|
||||||
bisq.asset.coins.PIVX
|
bisq.asset.coins.PIVX
|
||||||
bisq.asset.coins.PZDC
|
bisq.asset.coins.PZDC
|
||||||
|
|
43
assets/src/test/java/bisq/asset/coins/NoirTest.java
Normal file
43
assets/src/test/java/bisq/asset/coins/NoirTest.java
Normal 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");
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue