mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-21 14:24:06 +01:00
Merge pull request #1706 from Mentors4EDU/List-EtherStone-(ETHS)
List EtherStone (ETHS)
This commit is contained in:
commit
2133b37837
3 changed files with 70 additions and 0 deletions
27
assets/src/main/java/bisq/asset/tokens/EtherStone.java
Normal file
27
assets/src/main/java/bisq/asset/tokens/EtherStone.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.tokens;
|
||||
|
||||
import bisq.asset.Erc20Token;
|
||||
|
||||
public class EtherStone extends Erc20Token {
|
||||
|
||||
public EtherStone() {
|
||||
super("EtherStone", "ETHS");
|
||||
}
|
||||
}
|
|
@ -145,6 +145,7 @@ bisq.asset.coins.ZeroOneCoin
|
|||
bisq.asset.tokens.BetterBetting
|
||||
bisq.asset.tokens.DaiStablecoin
|
||||
bisq.asset.tokens.Ellaism
|
||||
bisq.asset.tokens.EtherStone
|
||||
bisq.asset.tokens.Exceed
|
||||
bisq.asset.tokens.GeoCoin
|
||||
bisq.asset.tokens.Grans
|
||||
|
|
42
assets/src/test/java/bisq/asset/tokens/EtherStoneTest.java
Normal file
42
assets/src/test/java/bisq/asset/tokens/EtherStoneTest.java
Normal file
|
@ -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 <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package bisq.asset.tokens;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
public class EtherStoneTest extends AbstractAssetTest {
|
||||
|
||||
public EtherStoneTest () {
|
||||
super(new EtherStone());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testValidAddresses() {
|
||||
assertValidAddress("0x0d81d9e21bd7c5bb095535624dcb0759e64b3899");
|
||||
assertValidAddress("0d81d9e21bd7c5bb095535624dcb0759e64b3899");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testInvalidAddresses() {
|
||||
assertInvalidAddress("0x65767ec6d4d3d18a200842352485cdc37cbf3a216");
|
||||
assertInvalidAddress("0x65767ec6d4d3d18a200842352485cdc37cbf3a2g");
|
||||
assertInvalidAddress("65767ec6d4d3d18a200842352485cdc37cbf3a2g");
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue