-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c4d093
commit c33127b
Showing
166 changed files
with
1,104 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
23 changes: 23 additions & 0 deletions
23
core/src/main/java/com/verge/core/coins/families/ClamsFamily.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package com.vergepay.core.coins.families; | ||
|
||
import com.vergepay.core.messages.MessageFactory; | ||
import com.vergepay.core.wallet.families.clams.ClamsTxMessage; | ||
|
||
import javax.annotation.Nullable; | ||
|
||
/** | ||
* @author John L. Jegutanis | ||
* | ||
* This family contains Clams | ||
*/ | ||
public class ClamsFamily extends BitFamily { | ||
{ | ||
family = Families.CLAMS; | ||
} | ||
|
||
@Override | ||
@Nullable | ||
public MessageFactory getMessagesFactory() { | ||
return ClamsTxMessage.getFactory(); | ||
} | ||
} |
File renamed without changes.
12 changes: 12 additions & 0 deletions
12
core/src/main/java/com/verge/core/coins/families/NuFamily.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.vergepay.core.coins.families; | ||
|
||
/** | ||
* @author John L. Jegutanis | ||
* | ||
* This family contains NuBits, NuShares, BlockShares, etc | ||
*/ | ||
public abstract class NuFamily extends BitFamily { | ||
{ | ||
family = Families.NUBITS; | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
12 changes: 12 additions & 0 deletions
12
core/src/main/java/com/verge/core/coins/families/ReddFamily.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.vergepay.core.coins.families; | ||
|
||
/** | ||
* @author John L. Jegutanis | ||
* | ||
* This family contains Reddcoin, Cannacoin, etc | ||
*/ | ||
public abstract class ReddFamily extends BitFamily { | ||
{ | ||
family = Families.REDDCOIN; | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
core/src/main/java/com/verge/core/coins/families/VpncoinFamily.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package com.vergepay.core.coins.families; | ||
|
||
import com.vergepay.core.messages.MessageFactory; | ||
import com.vergepay.core.wallet.families.vpncoin.VpncoinTxMessage; | ||
|
||
import javax.annotation.Nullable; | ||
|
||
/** | ||
* @author John L. Jegutanis | ||
* | ||
* This family contains Vpncoin | ||
*/ | ||
public abstract class VpncoinFamily extends BitFamily { | ||
{ | ||
family = Families.VPNCOIN; | ||
} | ||
|
||
@Override | ||
@Nullable | ||
public MessageFactory getMessagesFactory() { | ||
return VpncoinTxMessage.getFactory(); | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.