mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Merge pull request #2353 from heliumchain/list-helium-asset
List Helium (HLM)
This commit is contained in:
commit
21e29e3ed5
39
assets/src/main/java/bisq/asset/coins/Helium.java
Normal file
39
assets/src/main/java/bisq/asset/coins/Helium.java
Normal file
@ -0,0 +1,39 @@
|
||||
/*
|
||||
* 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.AddressValidationResult;
|
||||
import bisq.asset.Base58BitcoinAddressValidator;
|
||||
import bisq.asset.Coin;
|
||||
import bisq.asset.NetworkParametersAdapter;
|
||||
|
||||
public class Helium extends Coin {
|
||||
|
||||
public Helium() {
|
||||
super("Helium", "HLM", new Base58BitcoinAddressValidator(new HeliumParams()));
|
||||
}
|
||||
|
||||
public static class HeliumParams extends NetworkParametersAdapter {
|
||||
|
||||
public HeliumParams() {
|
||||
addressHeader = 63;
|
||||
p2shHeader = 5;
|
||||
acceptableAddressCodes = new int[]{addressHeader, p2shHeader};
|
||||
}
|
||||
}
|
||||
}
|
@ -39,6 +39,7 @@ bisq.asset.coins.FourtyTwo
|
||||
bisq.asset.coins.Fujicoin
|
||||
bisq.asset.coins.GambleCoin
|
||||
bisq.asset.coins.Grin
|
||||
bisq.asset.coins.Helium
|
||||
bisq.asset.coins.Horizen
|
||||
bisq.asset.coins.IdaPay
|
||||
bisq.asset.coins.Iridium
|
||||
|
43
assets/src/test/java/bisq/asset/coins/HeliumTest.java
Normal file
43
assets/src/test/java/bisq/asset/coins/HeliumTest.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.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
public class HeliumTest extends AbstractAssetTest {
|
||||
|
||||
public HeliumTest() {
|
||||
super(new Helium());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testValidAddresses() {
|
||||
assertValidAddress("SPSXRJSwzGKxSiYXePf1vnkk4v9WKVLhZp");
|
||||
assertValidAddress("SbzXDLmMfWDJZ1wEikUVAMbAzM2UnaSt4g");
|
||||
assertValidAddress("Sd14293Zhxxur2Pim7NkjxPGVaJTjGR5qY");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testInvalidAddresses() {
|
||||
assertInvalidAddress("1PSXRJSwzGKxSiYXePf1vnkk4v9WKVLhZp");
|
||||
assertInvalidAddress("SPSXRJSwzGKxSiYXePf1vnkk4v9WKVLhZpp");
|
||||
assertInvalidAddress("SPSSPSSPSGKxSiYXePf1vnkk4v9WKVLhZp");
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user