Search the Community
Showing results for tags 'dev'.
Found 3 results
Minimum search term is 4 characters long. Can't find what you want? Click here for the custom google search instead.
-
Hi all, I've been trying to do some tests with checks (https://xrpl.org/checks.html) for a project of mine. I'm using the test net (wss://s.altnet.rippletest.net:51233). I can successfully do checkCreate transactions but cannot seem to do a checkCash (tecNO_ENTRY: No matching entry found). I'm using ripple-lib in order to generate those checks. The currency used is XRP, not an issued currency. The test is for 1 XRP or 1000000 drops. Here's the checkCreate transaction: https://testnet.xrpl.org/transactions/F0A3342809F466A216D7930F3001AAAC3CC41877BFEA29A3CC88B4781CC4AC41 Here's the failed checkCash transaction: https://testnet.xrpl.org/transactions/25C901046A4E97B262448EBE339EDC00BBEFDB8366F3ED2E7D499089E8CE6671 The checkID used to do the checkCreate and checkCash is: ABCDEFABABCDEFABABCDEFABABCDEFABABCDEFABABCDEFABABCDEFABABCDEFAF I just can't figure out what I'm doing wrong. I've read the documentation on xrpl.org, tried with 'drops' and 'XRP' as currencies (both ways are used in the doc) but I always get a tecNO_ENTRY. Maybe the Check amendment is not active on the test net node I'm using? How can I know that? Thanks a bunch for your help.
-
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?
-
Sorry, not directly Ripple related: Has there been any talk about wallets/clients using OCR? Perhaps to protect against malware/keyloggers? Keep the secret key out of a database/file/clipboard. Or would this just transfer the same problem to a new domain?