diff --git a/assets/src/main/java/bisq/asset/coins/Mogwaicoin.java b/assets/src/main/java/bisq/asset/coins/Mogwaicoin.java new file mode 100644 index 00000000000..17946ad0219 --- /dev/null +++ b/assets/src/main/java/bisq/asset/coins/Mogwaicoin.java @@ -0,0 +1,36 @@ +/* + * 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 . + */ + +package bisq.asset.coins; + +import bisq.asset.Base58BitcoinAddressValidator; +import bisq.asset.Coin; +import bisq.asset.NetworkParametersAdapter; + +public class Mogwaicoin extends Coin { + public Mogwaicoin() { + super("Mogwaicoin", "MOG", new Base58BitcoinAddressValidator(new MogwaicoinMainNetParams()), Network.MAINNET); + } + + public static class MogwaicoinMainNetParams extends NetworkParametersAdapter { + public MogwaicoinMainNetParams() { + this.addressHeader = 50; + this.p2shHeader = 16; + this.acceptableAddressCodes = new int[]{this.addressHeader, this.p2shHeader}; + } + } +} diff --git a/assets/src/main/resources/META-INF/services/bisq.asset.Asset b/assets/src/main/resources/META-INF/services/bisq.asset.Asset index c50ae587255..6b0ed043cc5 100644 --- a/assets/src/main/resources/META-INF/services/bisq.asset.Asset +++ b/assets/src/main/resources/META-INF/services/bisq.asset.Asset @@ -71,6 +71,7 @@ bisq.asset.coins.Mask bisq.asset.coins.Mile bisq.asset.coins.MirQuiX bisq.asset.coins.MobitGlobal +bisq.asset.coins.Mogwaicoin bisq.asset.coins.Monero bisq.asset.coins.MonetaryUnit bisq.asset.coins.MoX diff --git a/assets/src/test/java/bisq/asset/coins/MogwaicoinTest.java b/assets/src/test/java/bisq/asset/coins/MogwaicoinTest.java new file mode 100644 index 00000000000..49bbcb95383 --- /dev/null +++ b/assets/src/test/java/bisq/asset/coins/MogwaicoinTest.java @@ -0,0 +1,44 @@ +/* + * 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 . + */ + +package bisq.asset.coins; + +import bisq.asset.AbstractAssetTest; + +import org.junit.Test; + +public class MogwaicoinTest extends AbstractAssetTest { + + public MogwaicoinTest() { + super(new Mogwaicoin()); + } + + @Test + public void testValidAddresses() { + assertValidAddress("MFCFYwNnHcyxwBgJkioCRjURU2hjugG99R"); + assertValidAddress("MLh6N4sDZBjbMbQYVDKRiCk8szbuvTrVEt"); + assertValidAddress("M9pS7XLU3rWRmJB6aWxT8SYp66h95H1Q6F"); + + } + + @Test + public void testInvalidAddresses() { + assertInvalidAddress("MXnaJzoAKTNa67Fpt1tLxD5bFMcyN4tCvTT"); + assertInvalidAddress("MnaJzoAKTNa67Fpt1tLxD5bFMcyN4tCvTTd"); + assertInvalidAddress("MnaJzoAKTNa67Fpt1tLxD5bFMcyN4tCvTT#"); + } +}