示例#1
0
 /**
  * Fund an address with faucet.
  * The faucet endpoint is only available on BlockCypher’s Test Blockchain and Bitcoin Testnet3
  *
  * @param string $address Address to fund
  * @param int $amount
  * @param ApiContext $apiContext is the APIContext for this call. It can be used to pass dynamic configuration and credentials.
  * @param BlockCypherRestCall $restCall is the Rest Call Service that is used to make rest calls
  * @return FaucetResponse
  */
 public function fundAddress($address, $amount, $apiContext = null, $restCall = null)
 {
     ArgumentValidator::validate($address, 'address');
     NumericValidator::validate($amount, 'amount');
     $faucet = new Faucet();
     $faucet->setAddress($address);
     $faucet->setAmount($amount);
     return $this->turnOn($faucet, $apiContext, $restCall);
 }