Merge pull request #2430 from furszy/veil-integration

List Veil (VEIL)
This commit is contained in:
Christoph Atteneder 2019-03-05 11:11:20 +01:00 committed by GitHub
commit 07db51d2e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 103 additions and 0 deletions

View File

@ -0,0 +1,57 @@
/*
* 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.*;
import org.bitcoinj.core.Address;
import org.bitcoinj.core.AddressFormatException;
public class Veil extends Coin {
public Veil() {
super("Veil", "VEIL", new VeilAddressValidator());
}
public static class VeilAddressValidator extends Base58BitcoinAddressValidator {
public VeilAddressValidator() {
super(new VeilParams());
}
@Override
public AddressValidationResult validate(String address) {
if (address.startsWith("V")) {
return super.validate(address);
}else if (address.startsWith("bv")){
// TODO: Add bech32 support
return AddressValidationResult.invalidAddress("Bech32 addresses not supported on bisq");
}
return AddressValidationResult.invalidStructure();
}
}
public static class VeilParams extends NetworkParametersAdapter {
public VeilParams() {
addressHeader = 70;
p2shHeader = 5;
acceptableAddressCodes = new int[]{addressHeader, p2shHeader};
}
}
}

View File

@ -82,6 +82,7 @@ bisq.asset.coins.SUB1X
bisq.asset.coins.TurtleCoin bisq.asset.coins.TurtleCoin
bisq.asset.coins.UnitedCommunityCoin bisq.asset.coins.UnitedCommunityCoin
bisq.asset.coins.Unobtanium bisq.asset.coins.Unobtanium
bisq.asset.coins.Veil
bisq.asset.coins.Webchain bisq.asset.coins.Webchain
bisq.asset.coins.WrkzCoin bisq.asset.coins.WrkzCoin
bisq.asset.coins.XDR bisq.asset.coins.XDR

View File

@ -0,0 +1,45 @@
/*
* 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 VeilTest extends AbstractAssetTest {
public VeilTest() {
super(new Veil());
}
@Test
public void testValidAddresses() {
assertValidAddress("VS2oF2pouKoLPJCjY8D7E1dStmUtitACu7");
assertValidAddress("VV8VtpWTsYFBnhnvgQVnTvqoTx7XRRevte");
assertValidAddress("VRZF4Am891FS224uuNirsrEugqMyg3VxjJ");
}
@Test
public void testInvalidAddresses() {
assertInvalidAddress("17VZNX1SN5NtKa8UQFxwQbFeFc3iqRYhemqq");
assertInvalidAddress("3EktnHQD7RiAE6uzMj2ZifT9YgRrkSgzQX");
assertInvalidAddress("DRbnCYbuMXdKU4y8dya9EnocL47gFjErWeg");
assertInvalidAddress("DTPAqTryNRCE2FgsxzohTtJXfCBODnG6Rc");
assertInvalidAddress("DTPAqTryNRCE2FgsxzohTtJXfCB0DnG6Rc");
assertInvalidAddress("DTPAqTryNRCE2FgsxzohTtJXfCBIDnG6Rc");
}
}