bitpay/php-bitpay-client

View on GitHub
src/Bitpay/Network/Livenet.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * @license Copyright 2011-2014 BitPay Inc., MIT License 
 * see https://github.com/bitpay/php-bitpay-client/blob/master/LICENSE
 */

namespace Bitpay\Network;

/**
 *
 * @package Bitcore
 */
class Livenet implements NetworkInterface
{
    public function getName()
    {
        return 'livenet';
    }

    public function getAddressVersion()
    {
        return 0x00;
    }

    public function getApiHost()
    {
        return 'bitpay.com';
    }

    public function getApiPort()
    {
        return 443;
    }
}