for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace BitWasp\Bitcoin\Networking\Settings;
use BitWasp\Bitcoin\Networking\DnsSeeds\TestNetDnsSeeds;
class Testnet3Settings extends NetworkSettings
{
protected $defaultP2PPort = 18333;
public function __construct()
$this->dnsSeeds = new TestNetDnsSeeds();
}