Author

Topic: [XMR] Monero - A secure, private, untraceable cryptocurrency - page 1423. (Read 4671575 times)

member
Activity: 79
Merit: 10
Yes wallet wallet work simplewallet.exe, there is no connection on port 18082.

You have to explicitly enable simplewallet's RPC with --rpc-bind-port 18082 or whatever. So ./simplewallet --rpc-bind-port 18082

Thanks for the help, yes indeed, it was necessary to specify the port by force.
donator
Activity: 1274
Merit: 1060
GetMonero.org / MyMonero.com
Yes wallet wallet work simplewallet.exe, there is no connection on port 18082.

You have to explicitly enable simplewallet's RPC with --rpc-bind-port 18082 or whatever. So ./simplewallet --rpc-bind-port 18082
member
Activity: 79
Merit: 10
Use port 18082

On the 18082 port, an error, there is no connection. Need to make settings to use port 18082?

Do you have the wallet running? You need to have that in order to use the wallet RPC

Yes wallet wallet work simplewallet.exe, there is no connection on port 18082.
legendary
Activity: 1414
Merit: 1000

I'm not sure what you are trying to do but that isn't allowed at all in the current implementation. All of the ring mix outputs for one input have to be the same value.



Just idea how to more obscure, but I'll require to add  "amout-spent" into prefix.

edit:
It is stupid idea. will not work
legendary
Activity: 1470
Merit: 1007
Might be good for someone to compare XMR price development over the two days to other altcoins. Might well be that the effect of FUD is not even existent...

Quick scan: Over that period the range of LTC was 2.5%,  XMR 13.6%, BBR 27.4%, XCN 34.5%, and all are within 10% of the range closest to their lows over the period.

What I see is that PoW non-app coins (pure currencies) generally, whether CN or BTC based, have declined in degree best indicated by their market cap.

My intuition:  There is no FUD effect.  It is pure imagination.  The price is down because bitcoin.  

My conjecture is that hot money is flowing out of bitcoin into US stocks (BABA) and GBP bets.  This is ADHD money we're talking about.  I give it a week or so, before btc bottoms.  Unless there is an exogenous jump it would be reasonable to expect continuing XMR\BTC decay.  Yet I am unwilling to sell for a turn-around, simply because the scale and likelihood of a positive shock is too large.  The market cap is too small.  One buyer can double the price forever in 20 seconds or less.  I can't risk that.

I'm not above trading BTC comparably aggressive (after all, some of those profits then go into anon coins like XMR), but agreed on what you write here: Unless you trade rather small amounts (and can get in and out without slippage, and are nimble enough to jump back in on short notice), it makes little sense to trade the current swings that are largely secondary effects to XMR's older brother Bitcoin. Small correction maybe: It does make sense if you aren't attached to your XMR position, as in: if you're skimming off profits in USD only. If your goal is increasing an already non-trivial XMR stash, I find it hard to believe this can be achieved by swing trading, given the current market conditions.

i have swing traded xmr and i have lowered my avg btc/xmr buy in by swing trading, approx 20% more xmr, my first buy was month ago at 0.0037 and then 0.003, then i sold at 0.005-0.004 and then bought 0.0037-0.004, then sold again 0.004 and bought 0.0038-0.004, TA has been triangle and 6h ma20

Nice Smiley

Out of curiosity, care to say what range your xmr account is in? 3, 4, 5 figures (in xmr, I mean)? Because my point wasn't that swing trading is impossible, but that I'm not sure if it works with large-ish accounts (but I can be corrected on this).

P.S. Sorry for the OT. Will take the rest of the conversation to the speculation thread.
legendary
Activity: 2968
Merit: 1198
Use port 18082

On the 18082 port, an error, there is no connection. Need to make settings to use port 18082?

Do you have the wallet running? You need to have that in order to use the wallet RPC
legendary
Activity: 2268
Merit: 1141
Quoting AnonyMint

Okay my hunch appears to be incorrect.

https://cryptonote.org/whitepaper.pdf#page=9

There is no additional information gained from each ring signature even if they all use the same Pi, because the qi and wi are chosen randomly.

So I didn't find any weakness in the math, unless it is something in the modular math.

So BCX may mean the "implementation" has an error not the math of the NIZKP, in which case after the attack it would be fixable and the anonymity going forward would be fixed. BCX may be implying (note he didn't exclude that) the exploit can only break the anonymity up to the point of a fix of the implementation.

I don't have time to go hunting in the implementation. Not even for 50 BTC.
member
Activity: 79
Merit: 10
Use port 18082

On the 18082 port, an error, there is no connection. Need to make settings to use port 18082?
legendary
Activity: 2968
Merit: 1198
Please help me with RPC monero, trying to get a balance, returns an error, the method is not found, it is not clear where to dig
Use port 18082

To elaborate a bit, you need to query the wallet -- the node has no notion of a balance at all. 18081 is the node, 18082 is the wallet.
legendary
Activity: 1552
Merit: 1047
Please help me with RPC monero, trying to get a balance, returns an error, the method is not found, it is not clear where to dig

Code:
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import requests
import json

serverURL = 'http://127.0.0.1:18081/json_rpc'


def balance():
    testb = json.dumps({
    "jsonrpc": "2.0",
    "method": "getbalance",
    "params": {}
    })
       
    headers = {'content-type': 'application/json'}
    resp = requests.get(serverURL, headers=headers, data=testb)
    output = json.loads(resp.text)

    return output

output = balance()
print(output)
Use port 18082
member
Activity: 79
Merit: 10
Please help me with RPC monero, trying to get a balance, returns an error, the method is not found, it is not clear where to dig

Code:
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import requests
import json

serverURL = 'http://127.0.0.1:18081/json_rpc'


def balance():
    testb = json.dumps({
    "jsonrpc": "2.0",
    "method": "getbalance",
    "params": {}
    })
       
    headers = {'content-type': 'application/json'}
    resp = requests.get(serverURL, headers=headers, data=testb)
    output = json.loads(resp.text)

    return output

output = balance()
print(output)
legendary
Activity: 2968
Merit: 1198
In a few weeks.
Is there a source for this claim?

No. The last missive said we were shifting focus a bit to fix the underlying code and that the new GUI would be delayed.

There are however two community-developed GUIs available right now that were sponsored in large part by the core devs and we recommend giving them a try. Links are in the OP (search for "Unofficial downloads and links").

member
Activity: 65
Merit: 10
In a few weeks.
Is there a source for this claim?
hero member
Activity: 538
Merit: 500
Hello. When Monero GUI-wallet will be available? Linux? Windows? Mac?

In a few weeks.
full member
Activity: 308
Merit: 109
Hello. When Monero GUI-wallet will be available? Linux? Windows? Mac?
member
Activity: 94
Merit: 10
Physical Monero coins (alpha version) are coming much closer. Hope you will like them. My friends who works on it with me would like to give away some coins absolutely for free soon. We will be happy to compliment Monero supporters and (developers later with pure silver coins). Just PM me if you are interested. First batch is just quality silver plated brass coins. If everything is OK and everybody are happy with it the pure silver coins will be available for sale as well. There is also a plan to donate the developers from each sold Monero coin (some percentage of coin price).
legendary
Activity: 2968
Merit: 1198
I don't want to be alarmist but http://moneropool.com/ is reaching 50% of the hashrate...

@smooth, is there any plan to publish a detained instruction to set up own mining pool in Windows? It is more urgent now.

I'm not familiar with the effort to write up those instructions. If no one else replies I will look into it. Meanwhile, just switch to one of the other pools. There are quite a few good ones -- no need to bunch up here.

legendary
Activity: 2968
Merit: 1198
I don't want to be alarmist but http://moneropool.com/ is reaching 50% of the hashrate...

Please post on the main thread and the mining thread

Done  Roll Eyes

If you are mining on moneropool.com please shift your hash rate to smaller pools.

There is a list of recommended pools in the first post of this thread
sr. member
Activity: 462
Merit: 250
I don't want to be alarmist but http://moneropool.com/ is reaching 50% of the hashrate...

@smooth, is there any plan to publish a detained instruction to set up own mining pool in Windows? It is more urgent now.
sr. member
Activity: 432
Merit: 251
Jump to: