Questions tagged [ripple-api]

Questions about Ripple are off topic.

25 questions
6
votes
5 answers

Ripple testnet explorer

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

mnemonics for ripple wallet

I am trying to write a ripple wallet. I want it to be HD wallet. So I am generating 12 word mnemonics but I am not sure how to give this as a seed to ripple javascript api. See: https://ripple.com/build/rippleapi/#generateaddress
Cem Karay
  • 97
  • 4
2
votes
1 answer

Ripple JSON API - Can I use more than one destination while transaction?

In Ripple API, Is there any apis available to split payment which I can pass more than one destination address in single transaction. Let me share code: const RippleAPI = require('ripple-lib').RippleAPI; const api = new RippleAPI({ server:…
2
votes
0 answers

How can one know which money exchanges happen in Ripple?

In Ripple, money can be exchanged in two ways: a payment is sent from a person to another person 2 satisfying offers fulfill each other The Ripple wiki states When an offer is placed it will immediately take any other offers that satisfy…
Steven Roose
  • 11,473
  • 8
  • 44
  • 71
2
votes
2 answers

destination_tag best practices when integrating Ripple

I'm integrating Ripple with a commerce system, to accept payments to a Ripple wallet. My understanding is that the destination_tag, an integer, is the only data I can use to track a transaction. I can specify the destination_tag when I send the…
Dave Cohen
  • 197
  • 1
  • 8
2
votes
1 answer

How to obtain trades from the websocket transaction feed?

I am having a hard time figuring out how to extract trade information (i.e. a payment relative to an offer) from the Ripple websocket transaction feed. From my current understanding, I guess there would be a way to match a payment to an offer, or…
Vincent
  • 23
  • 3
1
vote
2 answers

ripple transaction max amount

If I send a…
1
vote
1 answer

Import private key ripple

Is there a way to import private key with rippled? Same as bitcoin core impoertprivkey with RPC calls? Tnx
Asaf
  • 25
  • 4
1
vote
1 answer

Ripple Data API vs Ripple RPC

I need to write a program that monitors the transactions that sent to me. My approach is to periodically (like every 2 minutes) call the Ripple public api to get transactions for my account. But on the developer doc, I find two way to achieve…
matrix
  • 113
  • 3
1
vote
1 answer

RippleAPI Prepare Payment Paths object

When using ripple API Prepare Payment method. GET /v1/accounts/{:source_address}/payments/paths/{:destination_address}/{:amount} I am struggling with how should I understand paths part of response? "paths":…
1
vote
1 answer

How to set a payment in Ripple without specifying currency issuers?

I want to send IOUs from one of my accounts to another through the use of the API. Both of the accounts trust the same IOU issuer, which is a separate address. According to the Transaction Format, I would set the Amount issuer to the receiving…
ThePiachu
  • 42,931
  • 25
  • 138
  • 347
1
vote
0 answers

Given secret, learn account details

I'm building a tool that uses ripple-lib on the client side and ripple-rest on the server side. For some features, I need the administrator to provide the account secret. I could prompt the user for both the account ID and the secret. Instead, I…
Dave Cohen
  • 197
  • 1
  • 8
1
vote
1 answer

How do I reduce the loglevel on rippled?

By default, rippled seems to log at the NFO level, which spits out many megabytes of log files each day. How do I reduce this level? According to the Ripple wiki, we can edit pass arguments to rippled when starting it, or edit the configuration file…
lid
  • 173
  • 1
  • 6
1
vote
2 answers

How do you generate a Ripple address and secret using the ripple-lib javascript library?

The ripple client application can generate new accounts using the elliptic curve algorithm. Is there a high-level function to perform this task?
Steven Zeiler
  • 53
  • 1
  • 7
1
vote
2 answers

How do you build a Ripple gateway without rippled?

I've noticed that several Ripple gateways now exist, most notably Bitstamp. However, the only documentation I can find on how to create an automated gateway seems to imply that you must have OpenCoin's rippled program. Can anyone build a Ripple…
user5513
  • 29
  • 2
1
2