Most Popular
1500 questions
5
votes
2 answers
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 possible to call C++ functions from Perl relatively…
Joel D
- 53
- 3
5
votes
2 answers
Does using seed to restore a wallet change its address?
I have been using a wallet generated using monero-wallet-cli on Ubuntu. I have not yet received funds on this address, but have been mining in a pool using this address.
I had a harddisk problem so I used a new harddisk to install Ubuntu on, and…
Tjeerd
- 53
- 2
5
votes
1 answer
Mining with monerod vs xmr-stak-cpu
The Monero website explains how to set up xmr-stak-cpu to mine Monero, though monerod already has built-in mining ability. Please explain what the differences are between these two miners, and which one is best.
Laurent
- 151
- 7
5
votes
2 answers
How can I see my hash rate?
I am solo mining using monerod. When I run './monerod show_hr', I am told 'Hash Rate Logging is on', but I can't find the files. Where are they stored in Ubuntu 14.04?
Also, is it possible to redirect the output of this command to the display…
user592440
- 61
- 1
- 4
5
votes
1 answer
Connecting Monero Light Wallet on Tails with Remote Node
I have downloaded Monero Command Line Interface on Tails and I tried connecting it to a remote node with this command as described here: https://github.com/monero-project/monero
Command:
sudo iptables -I OUTPUT 2 -p tcp -d 127.0.0.1 -m tcp --dport…
Novice
- 51
- 2
5
votes
2 answers
Bitfinex asks for 64 character payment ID to withdraw, but the wallet generates shorter ones
When withdrawing Monero from Bitfinex, they ask for a 64 character payment ID.
The payment IDs generated by the official wallet are much too short.
Should I be using the integrated address, with no payment ID?
Ranguvar
- 53
- 1
- 4
5
votes
2 answers
Is the 10-block lock time a protocol rule? What rules accompany it?
Every Monero transaction consumes old outputs (used as inputs to the transaction) and creates new outputs. The new outputs are locked for 10 blocks before they can be spent.
A. Is this a wallet rule or a protocol/daemon rule?
B. Does the rule…
scoobybejesus
- 5,495
- 18
- 42
5
votes
2 answers
Are 0-output transactions possible?
Is it possible (as in allowed by consensus, not doable with today's software) to create a zero-output transaction in Monero? In other words, is it possible to create a transaction whose inputs are entirely used as fees and creates no new outputs?
bigreddmachine
- 3,737
- 1
- 10
- 30
5
votes
1 answer
Cryptonote SHA3 bigger than 64byte? (Scratchpad Initialization)
The cryptonote whitepaper says
First, the input is hashed using Keccak [KECCAK] with parameters b =
1600 and c = 512. [..]
That's nothing else as hashing the input with SHA3. The size of a SHA3 hash is 512 bit = 64 byte. The paper…
shortcryptoquestion
- 53
- 3
5
votes
2 answers
Blockchain synchronization fails, bus error
I am using monerod 0.10.3.1 on Arch Linux. Towards the end of the process the synchronization with the blockchain fails:
2017-05-29 09:20:27.451 [P2P1] WARN net.dns
src/common/dns_utils.cpp:531 WARNING: no two valid MoneroPulse DNS…
Federico Squartini
- 151
- 1
- 3
5
votes
3 answers
Monero Wallet For Raspberry Pi 1? (ARMv6 I think)
Is there a version of the monero wallet for the Raspberry Pi Model B that is up to date? I have looked and can only find ones a year or older often with the links 404ing. Or could anyone help me compile one? (specifically the wallet I plan to use a…
Joss Bird
- 561
- 3
- 21
5
votes
1 answer
How to create my own miner?
I am thinking to create my own miner for Monero just for research purpose and understand how is the mining process.
First of all, I red the cn008 document and I understand almost everything but I don't know what should I put in the input string.
In…
bipe15
- 51
- 1
- 1
- 3
5
votes
1 answer
What significance does the wallet public spendkey and public viewkey have in a transaction?
I was just wondering what function does the public keys in a wallet address have in creating a transaction or receiving a transaction from someone?
samwellj
- 3,205
- 4
- 16
- 31
5
votes
1 answer
Why is there a multiply by 8 in the hash_to_ec and derivation_to_scalar functions?
Trying to get an intuition about the hashing that Monero is doing.
Some definitions:
Let P represent a point on the Ed25519 curve that's also a part of the group.
Let H represent a hash function.
Let E(P) be the function that encodes P into a…
Jimmy Song
- 333
- 1
- 7
5
votes
1 answer
How is the commitment for a previous outpoint computed (tx v2)?
I've been working on a Go-based Monero library and for the MixRing of a RCT, we need the previous outpoints that are being mixed in. It's easy enough to grab those output keys and put them in the destination. The mask, however, is computed with the…
Jimmy Song
- 333
- 1
- 7