Questions tagged [rippled]

20 questions
3
votes
0 answers

Generate digest/ binary blob for XRP raw transaction using rippled c++ library

I have an offline signing code to which I need to pass the digest or the binary blob to get the signature. Looks like the digest I have produced is not right as when I try to submit the serialized signature, it complains of "fails local checks:…
Priya
  • 51
  • 1
2
votes
1 answer

Ripple XRP Ledger - Cant get transaction validated (Testnet)

Im using testnet to validate my transaction, transaction : {"transaction":"ECAB482EB34177FA1B1E6C724F038C42308004B1F307A169FAEA88C825E11642","command":"tx","id":0} Response : {id=0, status='success', errorMessage='null',…
Tomas Bisciak
  • 2,801
  • 5
  • 33
  • 57
1
vote
1 answer

boost_chrono_FOUND to FALSE so package "boost_chrono" is considered to be NOT FOUND

I am trying to build ripple by following the build guide on GitHub, but boost is continuously throwing some unknown error. Boost is installed and running. I installed boost_1_71_0 as described by the build…
Umar Farooq
  • 418
  • 2
  • 14
1
vote
1 answer

How can I sign a JSON transaction?

I have a JSON representation of an XRPL transaction, like the one below, and I want to sign it in C++ using rippled. How can I? { "TransactionType" : "Payment", "Account" : "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn", "Destination" :…
John Freeman
  • 2,552
  • 1
  • 27
  • 34
1
vote
0 answers

How to get information from xrp rippled like data api v2 in localhost

I run rippled service in my own server. Its state is now 'full' : $ /opt/ripple/bin/rippled server_info | grep state 2020-Feb-12 11:02:16.279916836 HTTPClient:NFO Connecting to 127.0.0.1:5005 "server_state" : "full", …
1
vote
1 answer

Since ripple-lib-java is unmaintained, how do you manually sign a transaction?

Looking for a lightweight way to manually sign an OfferCreate ... it would be clumsy to start some JavaScript engine in order to get it done.
1
vote
1 answer

Ripple Transaction from one local wallet to exchange wallet(example : crex24) gives error code tecDST_TAG_NEEDED using java

i installed ripple wallet on my local server. i created one wallet and activate it with 20 XRP. Now when i send coin from my active account to account(of crex24.com) then it gives tecDST_TAG_NEEDED error code Ripple : http://127.0.0.1:5005 Code…
vishvas4u
  • 41
  • 9
1
vote
1 answer

Javascript 'then' not working as expected in Ripple-lib calls

I'm trying to create a simple example of payments over the XRPL using Ripple-lib. The idea is to send several payments to different accounts stored in an array. I've made it kind of work in a different way as it is expected, but when using the…
dvilela
  • 1,200
  • 12
  • 29
0
votes
0 answers

ripple rpc api - username and password?

I'm playing around with Rippled RPC API ; I'm specifically looking at the Admin Access; https://xrpl.org/get-started-using-http-websocket-apis.html#admin-access Admin Access The API methods are divided into Public Methods and Admin Methods so that…
Lew
  • 11
  • 2
0
votes
2 answers

rippled SSL-Certificate

I want to have a secure connection to my rippled node. That is why I want my node to use the SSL-Certificate of my domain when I connect to it via websocket or grpc. I saved the certificate and the key at /etc/ssl/certs/server.pem and…
roukrak
  • 11
  • 2
0
votes
3 answers

Ripple XRP Ledger - How do I create an asset or a token? What is the transaction type that accomplishes that?

I would like to create a token (asset) on the Ripple XRP ledger. What transaction type does that? So far i only found that a wallet called https://www.theworldexchange.net/ supports that activity. However, i'd like to do it directly on the network. …
Albert S
  • 2,552
  • 1
  • 22
  • 28
0
votes
1 answer

Ripple XRP Ledger - How much data can i put in the memo field

What is the limit on the data that i can put in the memo field. I seem to be not able to find that anywhere.
Albert S
  • 2,552
  • 1
  • 22
  • 28
0
votes
1 answer

How can we take all ripple aka XRP accounts snapshot?

How can we take a snapshot of all ripple accounts. I know we can use this api and but it has 1000 https://data.ripple.com/v2/accounts/? but this has a max limit of 1000 and to get snapshot of all accounts of xrp can take too long is there any…
hassan ahmed
  • 593
  • 3
  • 13
0
votes
1 answer

How to run ripple v2 on local

I downloaded the source code of rippled-historical-database on github, https://github.com/ripple/rippled-historical-database but I don’t know how to run it on locally. Can I build my own Ripple Data API v2 service ? I tried to run the test file…
Rihaty
  • 1
0
votes
1 answer

How does a component within rippled send and receive messages from peers?

If I want to send a message and handle the response somewhere in the code, what is the API? What components do I need? How do I construct them or get handles to them? What methods do I call? How do I add new message types?
John Freeman
  • 2,552
  • 1
  • 27
  • 34
1
2