From de3e586e41ac0ccea2733bde121888d5cbdb7af3 Mon Sep 17 00:00:00 2001 From: darkfriend77 Date: Tue, 17 Dec 2019 22:37:22 +0100 Subject: [PATCH 1/2] List Mogwaicoin (MOG) --- .../java/bisq/asset/coins/Mogwaicoin.java | 36 +++++++++++++++ .../META-INF/services/bisq.asset.Asset | 1 + .../java/bisq/asset/coins/MogwaicoinTest.java | 44 +++++++++++++++++++ 3 files changed, 81 insertions(+) create mode 100644 assets/src/main/java/bisq/asset/coins/Mogwaicoin.java create mode 100644 assets/src/test/java/bisq/asset/coins/MogwaicoinTest.java 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#"); + } +} From e5f5a5539abc465a5fd06267f4530b87f3400cc0 Mon Sep 17 00:00:00 2001 From: darkfriend77 Date: Tue, 17 Dec 2019 22:37:22 +0100 Subject: [PATCH 2/2] List Mogwaicoin (MOG) Signed-off-by: darkfriend77 --- .../java/bisq/asset/coins/Mogwaicoin.java | 36 +++++++++++++++ .../META-INF/services/bisq.asset.Asset | 1 + .../java/bisq/asset/coins/MogwaicoinTest.java | 44 +++++++++++++++++++ 3 files changed, 81 insertions(+) create mode 100644 assets/src/main/java/bisq/asset/coins/Mogwaicoin.java create mode 100644 assets/src/test/java/bisq/asset/coins/MogwaicoinTest.java 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#"); + } +}