Questions tagged [xrp]

50 questions
4
votes
1 answer

I am unable to send custom token to other wallet on XRP Ledger

I have manually added trust line to account which I have to receive the token. I have token SOX token in issuer wallet. I want to send to receiver wallet mentioned below. I am trying on testnet. var xrpl = require('xrpl'); // Issuer wallet //…
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
3
votes
1 answer

Can I send XRP to multiple addresses?

I'm new to XRP devlopment and I was making an api for an exchange project with XRP and wanted to know that is XRP can be sent to multiple addresses?
Ridham CPP
  • 31
  • 1
2
votes
1 answer

Can we create XRP account address with a given string pattern and complete the rest with the checksum?

Can we create XRP account address with a given string pattern and complete the rest with the checksum? For example: If we want to create an XRP account address that includes a particular string pattern like "xxtomxxjerry". Can we find an approach…
G.Raven
  • 21
  • 2
2
votes
1 answer

XRPL: How to get the history of the balance of an account?

I would like to query the history of the balance of an XRPL account with the new WebSocket API. For example, how do I check the balance of an account on a particular day? I know with the v2 api, there was a possibility to query balance_changes. But…
xfscrypt
  • 16
  • 5
  • 28
  • 59
2
votes
1 answer

Unable to instantiate XrplClient object (Android Studio)

I'm just getting started with XRPL4J, and have an issue: HttpUrl rippledUrl = HttpUrl.get("https://s.altnet.rippletest.net:51234/"); XrplClient xrplClient = new XrplClient(rippledUrl); I get an error: java.lang.IllegalStateException:…
xrpdevs
  • 21
  • 1
  • 2
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
0 answers

Using BigQuery XRP transactions table to query XRP balance of an account at specific block number

I would like to get the top N addresses + balances on the XRP Network at a specific point in time (will usually be some time in the last 24 hrs). N can be quite large (50,000). The approach can be reduced down to reliably finding the XRP balance of…
krp
  • 11
  • 1
1
vote
2 answers

Is there a way to store two months of history in my Ripple testnet?

I have a ripple testnet and mainnet. Their history storage configurations are equal. However, in my mainnet my complete_ledgers result returns a first block whose closing time was in the beginning of October and in the testnet the first ledger that…
1
vote
1 answer

xrpl-accountlib - UnhandledPromiseRejectionWarning: TypeError: AddressCodec.isValidSeed is not a function

Here, I use both isValidAddress and isValidSeed from utils. isValidSeed throws an error, but isValidAddress does not after being used in a similar fashion. I get no other errors in the code. if(process.argv.length < 3) { console.log("Usage: node…
1
vote
2 answers

Get XRP Blockchain Data

Any suggestions to get the Blockchain Data for XRP? https://xrpl.org/ledger.html
J L
  • 11
  • 1
1
vote
1 answer

TrustSet - Error: Invalid type to construct an Amount

I would like to set up a trust line to buy XRPL3DAPES, but I get the error "Error: Invalid type to construct an Amount". I don't understand why this error is displayed. I looked at the doc many times, but each time I have a different error. This is…
1
vote
0 answers

How to fill an existing offer on the XRPL?

I am trying to create an offer that will match an existing one to exchange some tokens. Even if the values are perfectly matching, I receive a tecKILLED result.. why ? You will see the details in the screenshot below -> OfferCreate Details
0x0539
  • 19
  • 1
1
vote
1 answer

XRPL4J - Error in signing NFTokenMint transaction

I am trying out the XLS-20 nft-support branch of the XRPL4J library. I created a nft-devnet faucet address and am trying out a basic NFTokenMint transaction. I reused some of the available tutorial code to get certain values like the sequences or…
Aless55
  • 2,652
  • 2
  • 15
  • 26
1
vote
1 answer

Is it possible to set a post date for checks?

I'm trying to use checks in the XRP ledger (https://xrpl.org/use-checks.html) from post dated checks use case where the receiver can only pull the payment after a specific date. Anyone knows if this is possible?
Marcel
  • 11
  • 2
1
2 3 4