Search the Community
Showing results for tags 'test'.
Found 3 results
Minimum search term is 4 characters long. Can't find what you want? Click here for the custom google search instead.
-
Blog URL: https://coil.com/p/Hodor/TestNet-Fun/VSJaznqPg The XRP Test Net awaits you, with complimentary accounts loaded with (faux) virtual currency. Learn more in today's blog! I hope you enjoy the read: Please feel free to share my blog with a friend or share it on any other platform - and thanks for doing so! My blog announcement links on other platforms: Twitter Reddit r/Ripple Reddit r/CryptoCurrency Reddit r/CryptoMarkets Reddit r/xrp Reddit r/RippleTalk Reddit r/alternativecoin Reddit r/CoilCommunity Bitcointalk - alt coin sub forum Bitcointalk - XRP speculation thread
-
This Partnership is not new but in this time of price correction, good news are always welcome. On the link below you can have confirmation Banks (Here it's Credit Agricole, one of the biggest European Bank), are doing test with the Ripple Blockchain technology and in particulare with Ripple's Xcurrent. They will give more informations about those tests on january 30, 2018 in Paris Fintech meeting. This test is to be run for six months before the service is rolled out to the entire territory... This is real world application is very GOOD NEWS ! https://www.credit-agricole.com/en/news-channels/the-channels/group-news/credit-agricole-experimenting-with-ripple-blockchain-money-transfer-technology#.WmueyvSyCq4.twitter Update : Crédit Agricole is the second biggest Bank in France and the 3rd biggest Bank in Europe ! From some inside infos, they began the test pilote a few days ago and they plan to use it that way for the next 6 months before using it for real. From what i read, they are very happy with the first outcomes of Xcurrent and are looking forward to use Xrapid !
- 11 replies
-
- ripple
- credit agricole
-
(and 3 more)
Tagged with:
-
Hello all, I've been trying to make some manual JSON RPC based payments from one of my test wallets to another in the XRP test net. However, each attempt has resulted in: { "error": "amendmentBlocked", "error_code": 14, "error_message": "Amendment blocked, need upgrade.", } The server in question is https://api.altnet.rippletest.net:51234/ The call that I used was essential simply a copy paste from https://ripple.com/build/rippled-apis/#submit, with the address and secret set to my own. { "method": "submit", "params": [ { "offline": false, "secret": "s████████████████████████████", "tx_json": { "Account": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn", "Amount": { "currency": "USD", "issuer": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn", "value": "1" }, "Destination": "ra5nK24KXen9AHvsdFTKHSANinZseWnPcX", "TransactionType": "Payment" }, "fee_mult_max": 1000 } ] } From my understanding of the various errors, "AmendmentBlocked" reflects that the node is somehow incapable of handling the request, possibly due to the version being too old. But then again, is this not the official test net? How could it be behind?