6

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

Vikramaditya
  • 161
  • 1
  • 3
  • 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 May 29 '18 at 19:20

5 Answers5

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

1

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

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

1

Here you can paste the transaction hash and get the transaction details of Testnet transactions.

https://testnet.xrpl.org/

amrendra
  • 111
  • 1
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...

Andrew Chow
  • 67,209
  • 5
  • 76
  • 149
Dave Cohen
  • 197
  • 1
  • 8
-1

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

TorstenS
  • 184
  • 9