4
There is a variant of viewing the transaction history at a certain address: http://ripplerm.github.io/ripple-wallet/
Dont forget to switch the network to the test in the upper left corner. Good luck =)
0
This may not be as user friendly as you would want/expect, but you can hit rippled APIs with curl. Here's a way to look up a specific transaction on test net, if you know the transaction's hash:
curl -s -X POST "https://s.altnet.rippletest.net:51234" -d @- <<-END
{
"method": "tx",
"params": [{ "transaction": "<hash>" }]
}
END
Substitute <hash> above with your hash.
Follow a similar pattern to build "account_info" or "account_tx" commands. Etc...
0
There is a testnet XRP explorer: https://test.bithomp.com/explorer
Mainnet XRP explorer: https://bithomp.com/explorer
-1
Is https://ripple.com/build/xrp-test-net/ not what you are looking for?
The asker is looking for a transaction history explorer, and there doesn't seem to be one at that URL. – David A. Harding – 2018-06-03T15:51:42.817
I've been working hands-on on creating a payment gateway solution for the ripple currency. I this
https://developers.ripple.com/xrp-test-net-faucet.htmlthis is where you can find the test net and develop on it. – Junaid Shaikh – 2018-05-29T19:20:07.573