Questions tagged [monero-wallet-rpc]

A Monero application used to provide programatic access (via an RPC interface) to Monero wallets.

A Monero application used to provide programatic access (via an RPC interface) to Monero wallets.

181 questions
5
votes
2 answers

What is the easiest way to get a notification for incoming transaction?

I tried to get a notification for an incoming transaction?? What is the best way? As I see, I have three options now. (Updated 02/20/2018) Make a script to check rpc log file. Then get wallet information. (Not working) Run incoming_transaction on…
lambdax
  • 51
  • 5
4
votes
1 answer

How do I get the account_index parameter for the wallet RPC?

I am using the Monero wallet RPC method get_balance to get my wallet balance. One of the inputs is account_index, which is described as: account_index - unsigned int; Return balance for this account. What is account_index and how do I get it?
Guga Todua
  • 209
  • 1
  • 5
3
votes
1 answer

Error when trying to run monero-wallet-rpc with docker-compose up

I provide user and password in config file, but I got the error as it tries to create .login file. When I run for the first time it runs without restriction, but when I run for the second time, it throws error. docker-compose up Starting…
3
votes
1 answer

What is the correct way to make a systemd service file for monero-wallet-rpc

I want to setup monero-wallet-rpc as a systemd service. I have attempted to do this with my minimal systemd experience, however I am having some issues. When I start the service I am not returned to a prompt. When I stop the service, it continues to…
Rahim Khoja
  • 253
  • 1
  • 10
3
votes
1 answer

Digest Authentication in monero-wallet-rpc

I have an application and I want to connect it to my Monero wallet. I can use curl to access the wallet using --digest but my app can't use curl. I am using jsonrpc in Ruby and I can make the call to the wallet successfully but there is an…
devzone777
  • 31
  • 1
2
votes
2 answers

Are the developer's guides outdated?

I was trying to find docs about how to create a new subaddress using the CLI wallet RPC but it seems that dev guides at https://getmonero.org/resources/developer-guides/ are not updated to reflect 0.12.* version. Are they simply not updated or there…
Ognyan
  • 301
  • 1
  • 8
2
votes
2 answers

Monero wallet RPC don't work

I have a huge problem with the RPC wallet. It starts ok, tried - - log-level 4 and all goes OK but it does not bind on the RPC port and I cannot send RPC commands. It just stops at Starting RPC server. I am trying to setup a pool and the pool just…
2
votes
2 answers

monero-wallet-rpc not working for curl

I'm using curl to request from the monero-wallet-rpc, but somehow it does not recognize the user/password. I used the following command curl -u user:password -X POST http://127.0.0.1:8082/json_rpc -d…
Gundamlancer
  • 1,026
  • 7
  • 15
2
votes
1 answer

Error: sv/gamma are too large

I got this error with monero-wallet-rpc when trying to send 16 addresses monero with monero-pool. 2021-09-01 22:57:34.147 E sv/gamma are too large When I tried to manually send the transaction in the monero-gui wallet I got the same error. Does…
provsalt
  • 35
  • 3
2
votes
1 answer

How to create a "Monero Wallet" for my each user in my website?

I am creating a website where I want to accept Monero as payment method. I want to create a monero wallet for my each signed up user. Like say for example, when a user logs in, his BTC, ETH, XMR and USDC all wallets are created and keys are…
2
votes
1 answer

tx-notify being triggered 2 times per transaction

I'm using tx-notify with the monero-wallet-rpc and am having issues understanding the logic behind when tx-notify is triggered. Right now from what I've experienced so far, tx-notify is triggered twice per transaction. Once, upon tx being in a…
xaki79
  • 41
  • 2
2
votes
1 answer

What is the difference between transfer_split and transfer?

Using the monero-wallet-rpc program, from the documentation, I can't understand the difference between transfer and transfer_split. When should I use transfer and when should I use transfer_split? Please help me. transfer Send monero to a number…
Tkk
  • 23
  • 2
2
votes
1 answer

Using sneurlax/monerojs and I'm having a problem connecting to wallet

Here is my code: const Monero = require('monerojs'); var daemonRPC = new Monero.daemonRPC({ autoconnect: true }) .then((daemon) => { daemonRPC = daemon; // Store daemon interface in global variable const walletRPC = new Monero.walletRPC()…
1
vote
1 answer

Monero's wallet RPC validate_address is not working using PHP or CURL

All the other RPC methods are working for me, except the validate_address one, which always returns an error. I tried both curl (CLI) and PHP, neither of them work, they return the same error: {"result":null,"error":{"code":-32700,"message":"Parse…
Main USSE
  • 13
  • 2
1
vote
0 answers

wallet-rpc: "Transaction not found" but --tx-notify fired

It's so annoying it hurts. I'm running wallet-rpc on testnet using the following command: monero-wallet-rpc --daemon-host testnet.community.xmr.to --disable-rpc-login --testnet --trusted-daemon --rpc-bind-port 8885 --wallet-dir "/home/u/monero"…
user8555937
  • 207
  • 1
  • 7
1
2 3 4