PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
mycred
/
addons
/
buy-creds
/
gateways
/
Bitpay
/
Network
<?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 */ interface NetworkInterface { /** * Name of network, currently on livenet and testnet * * @return string */ public function getName(); /** * @return string */ public function getAddressVersion(); /** * The host that is used to interact with this network * * @see https://github.com/bitpay/insight * @see https://github.com/bitpay/insight-api * * @return string */ public function getApiHost(); /** * The port of the host * * @return integer */ public function getApiPort(); }
[+]
..
[-] Customnet.php
[edit]
[-] NetworkAwareInterface.php
[edit]
[-] NetworkAware.php
[edit]
[-] Testnet.php
[edit]
[-] Livenet.php
[edit]
[-] NetworkInterface.php
[edit]