We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
use IEXBase\RippleAPI\Contracts\TransactionBuilderContract; use IEXBase\RippleAPI\Support\TransactionType; include_once 'vendor/autoload.php'; $address = "Wallet address here"; $secretKey = "ss Secret key here"; $ripple = new \IEXBase\RippleAPI\Ripple($address, $secretKey); try { $transfer = $ripple->buildTransaction(function (TransactionBuilderContract $item) { return $item ->setAmount(1) ->setDestinationTag(1) ->setDestination('Receiver address here') ->setTransactionType(TransactionType::PAYMENT) ->sign(); })->submit(); } catch (Exception $e) { die($e->getMessage()); } echo var_dump($transfer);
cURL error 7: Failed to connect to s.altnet.rippletest.net port 51234: Connection refused (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://s.altnet.rippletest.net:51234/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
cURL error 7: Failed to connect to s.altnet.rippletest.net port 51234: Connection refused (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://s.altnet.rippletest.net:51234/
The text was updated successfully, but these errors were encountered: