Merge pull request #3407 from lbryio/list-lbry-asset

List LBRY Credits (LBC)
This commit is contained in:
Christoph Atteneder 2019-11-05 09:16:40 +01:00 committed by GitHub
commit 00183db573
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 86 additions and 0 deletions

View File

@ -0,0 +1,37 @@
/*
* 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.Base58BitcoinAddressValidator;
import bisq.asset.Coin;
import bisq.asset.NetworkParametersAdapter;
public class LBRYCredits extends Coin {
public LBRYCredits() {
super("LBRY Credits", "LBC", new Base58BitcoinAddressValidator(new LBRYCreditsMainNetParams()), Network.MAINNET);
}
public static class LBRYCreditsMainNetParams extends NetworkParametersAdapter {
public LBRYCreditsMainNetParams() {
this.addressHeader = 0x55;
this.p2shHeader = 0x7a;
this.acceptableAddressCodes = new int[]{this.addressHeader, this.p2shHeader};
}
}
}

View File

@ -61,6 +61,7 @@ bisq.asset.coins.Kekcoin
bisq.asset.coins.KnowYourDeveloper
bisq.asset.coins.Kore
bisq.asset.coins.Krypton
bisq.asset.coins.LBRYCredits
bisq.asset.coins.Litecoin
bisq.asset.coins.LitecoinPlus
bisq.asset.coins.LitecoinZ

View File

@ -0,0 +1,48 @@
/*
* 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 LBRYCreditsTest extends AbstractAssetTest {
public LBRYCreditsTest() {
super(new LBRYCredits());
}
@Test
public void testValidAddresses() {
assertValidAddress("bYqg2q19uWmp3waRwptzj6o8e9viHgcA9z");
assertValidAddress("bZEnLbYb3D29Sbo8QJdiQ2PQ3En6em31gt");
assertValidAddress("rQ26jd9mqdfPizHZUdyMjUPgK6rRANPjne");
}
@Test
public void testInvalidAddresses() {
assertInvalidAddress("");
assertInvalidAddress("Don'tBeSilly");
assertInvalidAddress("_rQ26jd9mqdfPizHZUdyMjUPgK6rRANPjne");
assertInvalidAddress("mzYvN2WuVLyp6RZE94rzzvZwBDfCdCse6i");
assertInvalidAddress("17VZNX1SN5NtKa8UQFxwQbFeFc3iqRYhem");
assertInvalidAddress("3EktnHQD7RiAE6uzMj2ZifT9YgRrkSgzQX");
assertInvalidAddress("bYqg2q19uWmp3waRwptzj6o8e9viHgcA9a");
assertInvalidAddress("bYqg2q19uWmp3waRwptzj6o8e9viHgcA9za");
}
}