diff --git a/assets/src/main/java/bisq/asset/tokens/CMBT.java b/assets/src/main/java/bisq/asset/tokens/CMBT.java new file mode 100644 index 00000000000..217a587ec79 --- /dev/null +++ b/assets/src/main/java/bisq/asset/tokens/CMBT.java @@ -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 . + */ + +package bisq.asset.tokens; + +import bisq.asset.Erc20Token; + +public class CMBT extends Erc20Token { + + public EtherStone() { + super("CMB Token", "CMBT"); + } +} 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 82a3f85a4c9..a5f1d0b0a64 100644 --- a/assets/src/main/resources/META-INF/services/bisq.asset.Asset +++ b/assets/src/main/resources/META-INF/services/bisq.asset.Asset @@ -96,6 +96,7 @@ bisq.asset.coins.Zcoin bisq.asset.coins.ZelCash bisq.asset.coins.Zero bisq.asset.tokens.AugmintEuro +bisq.asset.tokens.CMBToken bisq.asset.tokens.DaiStablecoin bisq.asset.tokens.EtherStone bisq.asset.tokens.TrueUSD diff --git a/assets/src/test/java/bisq/asset/tokens/CMBT.java b/assets/src/test/java/bisq/asset/tokens/CMBT.java new file mode 100644 index 00000000000..7d959725c3a --- /dev/null +++ b/assets/src/test/java/bisq/asset/tokens/CMBT.java @@ -0,0 +1,42 @@ +/* + * 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.tokens; + +import bisq.asset.AbstractAssetTest; + +import org.junit.Test; + +public class CMBTest extends AbstractAssetTest { + + public CMBTest () { + super(new CMBT()); + } + + @Test + public void testValidAddresses() { + assertValidAddress("0x0d81d9e21bd7c5bb095535624dcb0759e64b3899"); + assertValidAddress("0d81d9e21bd7c5bb095535624dcb0759e64b3899"); + } + + @Test + public void testInvalidAddresses() { + assertInvalidAddress("0x65767ec6d4d3d18a200842352485cdc37cbf3a216"); + assertInvalidAddress("0x65767ec6d4d3d18a200842352485cdc37cbf3a2g"); + assertInvalidAddress("65767ec6d4d3d18a200842352485cdc37cbf3a2g"); + } +}