Questions tagged [python]
27 questions
12
votes
2 answers
Are there any Monero specific programming language "libraries" available?
I understand that simplewallet has a raw JSON RPC interface available, but are there any specific "helper" libraries available for a relatively modern programming language(PHP, Python, Java, JavaScript, Ruby)?
choffman
- 123
- 4
5
votes
1 answer
What is novault and what is its connection to Monero?
What is the primary purpose of novault? Is it safe to use? Is the tool meant to be used just Monero or does it had wider applications?
Drink Vodka
- 603
- 4
- 12
4
votes
1 answer
Trying to get private view key from hash seed generated from mymonero mnemonic (13 words) in Python
I tried to get a private view key but somehow I can't get it to work. However, I do manage to get the hash of the seed from the hexadecimal seed created from the mnemonic.
The hexadecimal seed was obtained from here for testing. I seem to manage to…
Choon Boon Khoo
- 43
- 2
3
votes
1 answer
wallet rpc call login parameter format please?
I have been using monero-wallet-rpc with --disable-rpc-login so far with success, but would like to start authenticating my calls. Can someone please post what the username and password fields are defined as?
I tried curl:
curl -X POST…
kumarz
- 307
- 2
- 10
3
votes
3 answers
How can I use Monero RPC via Python
As documented in
https://ww.getmonero.org/resources/developer-guides/daemon-rpc.html
and
https://ww.getmonero.org/resources/developer-guides/wallet-rpc.html,
Monero can be used programmatically using daemon and wallet RPC.
If I wanted to use Python…
user36303
- 34,928
- 2
- 58
- 123
2
votes
1 answer
Any Monero projects in Python?
I'm curious if there are any interesting projects in Python for Monero. I have to write some big long explanation here so I can post this simple question. Good job SE!
pl55
- 1,868
- 1
- 11
- 26
2
votes
1 answer
Multisig MMS usage
Is the mms available through the JSON RPC?
I was having luck without using the mms by using the JSON RPC multisig calls, by subclassing monero-python's JSONRPCWallet, up until creating a transaction. I was able to manually finish the process via the…
ciferecaekzisto
- 21
- 1
2
votes
1 answer
Python lmdb version mismatch
I tried to explore the lmdb using python -mlmdb stat --env C:\ProgramData\bitmonero\lmdb, but got the follwing error message:
MDB_VERSION_MISMATCH: Database environment version mismatch
I am using the latest version of lmdb (0.98), Windows 10.…
James. W. Phua
- 21
- 1
2
votes
1 answer
Is automated churning of XMR bad for privacy?
I've recently been learning a bit of Python and decided to try writing a couple of scripts for one of my favorite open source projects: Monero!
I've written a script that runs on a sleep timer and automates the sweep_all wallet RPC call every X…
bitofagoob
- 123
- 4
1
vote
1 answer
Getting "Unauthorized Access" with RPC (using Python Requests)
I can successfully do a getbalance RPC with digest authentication, e.g.:
url = "http://localhost:18082/json_rpc"
headers = {'content-type': 'application/json'}
rpc_input = {
"method": "getbalance"
}
rpc_input.update({"jsonrpc": "2.0", "id":…
user8615908
- 11
- 4
1
vote
1 answer
Encrypt and decrypt seed algorithms in Python
I am looking at Luigi's code here. When it comes to encrypting the seed, field 9 on xmr.llcoins.net, there is a comment about various ways that have been implemented for doing this. It mentions the use of Keccak at some point, and then 'CN XOR' and…
user141
- 3,337
- 14
- 34
1
vote
1 answer
How to make monero-powpy compatable with xmrig-proxy running in 'nicehash' mode?
I know I have to somehow implement this spec but other than that I'm not sure.
Any help/resources is appreciated.
PGBRULES
- 23
- 3
1
vote
0 answers
Python get RandomX hashes
I am currently trying to use pyrx to build an XMR miner in Python. However, this library does not appear to support Windows. Does anyone have any solutions to get RandomX hashes in python on windows?
Thanks
PGBRULES
- 23
- 3
1
vote
1 answer
How do I connect to the testnet blockchain without downloading it?
I am building a python app that depends on both monerod, and the JSON-RPC server for access to the (testnet) blockchain. In my testing environment, I had access to more than enough space to hold the testnet blockchain, however now that I am…
ars
- 13
- 2
1
vote
0 answers
Is there an offline transaction checker for Monero in Python?
I'm looking for the same behavior as this site https://xmr.llcoins.net/checktx.html but in Python. The only method I have at the moment is to use a Monero CLI but this is not really efficient. If such a program does not yet exist, where can I find…
Pythonist
- 11
- 1