Skip to content

Commit

Permalink
Merge pull request #3407 from lbryio/list-lbry-asset
Browse files Browse the repository at this point in the history
List LBRY Credits (LBC)
  • Loading branch information
ripcurlx authored Nov 5, 2019
2 parents ad93606 + ab887db commit 00183db
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 0 deletions.
37 changes: 37 additions & 0 deletions assets/src/main/java/bisq/asset/coins/LBRYCredits.java
Original file line number Diff line number Diff line change
@@ -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};
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
48 changes: 48 additions & 0 deletions assets/src/test/java/bisq/asset/coins/LBRYCreditsTest.java
Original file line number Diff line number Diff line change
@@ -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");
}
}

0 comments on commit 00183db

Please sign in to comment.