Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove altcoin Network implementations #767

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 0 additions & 72 deletions src/Network/NetworkFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,76 +32,4 @@ public static function bitcoinRegtest(): NetworkInterface
{
return new Networks\BitcoinRegtest();
}

/**
* @return NetworkInterface
*/
public static function litecoin(): NetworkInterface
{
return new Networks\Litecoin();
}

/**
* @return Networks\LitecoinTestnet
*/
public static function litecoinTestnet(): NetworkInterface
{
return new Networks\LitecoinTestnet();
}

/**
* @return Networks\Viacoin
*/
public static function viacoin(): NetworkInterface
{
return new Networks\Viacoin();
}

/**
* @return Networks\ViacoinTestnet
*/
public static function viacoinTestnet(): NetworkInterface
{
return new Networks\ViacoinTestnet();
}

/**
* @return Networks\Dogecoin
*/
public static function dogecoin(): NetworkInterface
{
return new Networks\Dogecoin();
}

/**
* @return Networks\DogecoinTestnet
*/
public static function dogecoinTestnet(): NetworkInterface
{
return new Networks\DogecoinTestnet();
}

/**
* @return Networks\Dash
*/
public static function dash(): NetworkInterface
{
return new Networks\Dash();
}

/**
* @return Networks\DashTestnet
*/
public static function dashTestnet(): NetworkInterface
{
return new Networks\DashTestnet();
}

/**
* @return NetworkInterface
*/
public static function zcash()
{
return new Networks\Zcash();
}
}
50 changes: 0 additions & 50 deletions src/Network/Networks/Dash.php

This file was deleted.

49 changes: 0 additions & 49 deletions src/Network/Networks/DashTestnet.php

This file was deleted.

50 changes: 0 additions & 50 deletions src/Network/Networks/Dogecoin.php

This file was deleted.

49 changes: 0 additions & 49 deletions src/Network/Networks/DogecoinTestnet.php

This file was deleted.

57 changes: 0 additions & 57 deletions src/Network/Networks/Litecoin.php

This file was deleted.

57 changes: 0 additions & 57 deletions src/Network/Networks/LitecoinTestnet.php

This file was deleted.

Loading