Questions tagged [api]
The api tag has no summary.
22 questions
0
votes
0
answers
104
views
Testnet wallet rpc "not enough money" despite balance being adequate
When I call get_balance:
$ curl http://127.0.0.1:2024/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"get_balance","params":{&...
0
votes
1
answer
54
views
Does the "get_payments" JSON RPC call respond with the "locked" value as true *only* if the confimations are below 10?
I am creating an e-commerce website that accepts monero using the monero JSON RPC API. I need to make sure the confirmations of a payment for any single order are equal to or above 10, I would like to ...
0
votes
1
answer
102
views
How do cryptocurrency exchange services generate disposable / sub-addresses?
I am developing my cryptocurrency exchange service.
The first problem - how to distinguish clients from each other?
It seems to me that other services have solved this problem by generating something ...
0
votes
2
answers
135
views
Can I use testnet open node for making rpc requests about testnet? If yes, what am I doing wrong (trying to get block height)?
I'm exploring what APIs are available to explore mainnet and testnet and a small task I'm trying to do is to get block height of testnet.
Docs about networks tell that there's a testnet open node: ...
1
vote
1
answer
561
views
MyMonero / XMRWallet API documentation
I cannot run my own node for hardware reasons. But I need to validate / manage payments and create new addresses.
I would like to replace monero-wallet-rpc with a web based wallet.
But where can I ...
0
votes
0
answers
118
views
Anybody builds openmonero in docker image?
I have to build docker image with openmonero. Also, I'm trying use this dockerfile. But nothing works. Maybe you have solution or detailed instructions how to build openmonero from last sources. Thx.
1
vote
1
answer
155
views
Monero blockchain fetch blocks by date
I'd like to use the Monero API. Is there a REST API method which can fetch Monero blocks by specific date?
Thanks
Sajudeen
1
vote
1
answer
59
views
Monero wallet code base dependencies and APIs?
I would like to know what dependencies the Monero wallet application for Linux or Android code base has, such as Chromium or Google APIs? Is there a list of them somewhere without having to dig ...
0
votes
2
answers
657
views
Calling MyMonero API with generated parameters
I'm trying to call the MyMonero API to get some info about a wallet. By doing a call with curl, it seems to work fine.
Request:
curl -w "\n" -H 'Content-Type: application/json' -X POST https://api....
3
votes
2
answers
136
views
Is there a library similar to bitcore?
Is there a library like insight / bitcoin that interacts with Monero to create an API to scan the blockchain?
0
votes
1
answer
147
views
Does core_rpc_server::on_submitblock need full block blob?
It looks like the core_rpc_server::on_submitblock method is expecting a full block blob, since it calls...
if(!parse_and_validate_block_from_blob(blockblob, b))
However this RPC method is used to ...
5
votes
1
answer
1k
views
How to get the entire block blob for submission after mining a nonce?
After mining a correct nonce on the block template (received from rpc method "getblocktemplate") you need to submit the block back to the daemon. However, the rpc method "submitblock&...
4
votes
1
answer
326
views
Are reserve_size bytes really related to mining the final nonce?
Other answers related to reserve_size seem to imply they are related to the real block nonce. However, there is already a portion of the hashing blob reserved for a nonce, and the reserved bytes aren'...
1
vote
1
answer
206
views
Monero project for charity/non-profit
I wound like to create a "split the monero pot" for charity/non-profit organizations.
The process for donating using XMR is easy, it's the people who don't have any crypto wallet to donate.
My ...
5
votes
2
answers
607
views
Using Monero as a C Library
I am looking to build an offline wallet for Monero. However, most of my tooling is in Perl and C. If Monero was written in C, I could just call the C functions from my Perl modules. I think it is ...