Ripple testnet explorer

5

This is Ripple main Explorer. But where can i find the transactions ledger from wallets on Ripple testnet.

Vikramaditya

Posted 2018-03-21T09:38:23.000

Reputation: 151

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.html this is where you can find the test net and develop on it.Junaid Shaikh 2018-05-29T19:20:07.573

Answers

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 =)

Дима Марков

Posted 2018-03-21T09:38:23.000

Reputation: 314

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...

Dave Cohen

Posted 2018-03-21T09:38:23.000

Reputation: 187

0

There is a testnet XRP explorer: https://test.bithomp.com/explorer

Mainnet XRP explorer: https://bithomp.com/explorer

Viacheslav Bakshaev

Posted 2018-03-21T09:38:23.000

Reputation: 203

-1

Is https://ripple.com/build/xrp-test-net/ not what you are looking for?

TorstenS

Posted 2018-03-21T09:38:23.000

Reputation: 164

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