Author

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

legendary
Activity: 2268
Merit: 1141
Not sure you read his post carefully.  Say monero goes to $25.  Is $250 worth the risk to recover 534x$25?  That's a question for you to answer.  But how much does it cost to put the broken hard drive on a shelf until monero is worth $.00003 or $25.00?
ATM, Monero is around 30 50 cents. Spend 260 dollars and you get your moneroj back, in a way. If later on, one monero is worth 250 dollars, so much the better, but right now, it is not.

It would be like saying that the 10 000 BTC pizza guy lost millions. Crap, he did not lose a thing if he bought back (and I am pretty certain he did, at least partially).

Edited that for you. I agree with you btw, you could also just store it somewhere safe at home and try to recover it when Monero is worth a lot more. However, the mental impact of a non-recoverable disk will be greater when Monero is worth a lot than now.
hero member
Activity: 658
Merit: 503
Monero Core Team
Not sure you read his post carefully.  Say monero goes to $25.  Is $250 worth the risk to recover 534x$25?  That's a question for you to answer.  But how much does it cost to put the broken hard drive on a shelf until monero is worth $.00003 or $25.00?
ATM, Monero is around 30 cents. Spend 260 dollars and you get your moneroj back, in a way. If later on, one monero is worth 250 dollars, so much the better, but right now, it is not.

It would be like saying that the 10 000 BTC pizza guy lost millions. Crap, he did not lose a thing if he bought back (and I am pretty certain he did, at least partially).
legendary
Activity: 2268
Merit: 1141
In what ways can the community improve Monero?

I would like to contribute my time, but am not a coder.

There are three ways:

1. Make something creative! You don't need permission to use Monero artwork and resources, and all the content / images / podcasts on getmonero.org are covered by a Creative Commons CC BY 3.0 license (see: https://getmonero.org/legal/copyright), so feel free to reuse and remix.

2. Contribute to the website. There's a small learning curve to understand the layout of the website source and to learn the basics of Kramdown (the Markdown flavor we use), but once that's done then you just have to create a GitHub account and use the "edit" button on the various .md files in the site repo (https://github.com/monero-project/monero-site). For instance, to edit the "node" Moneropedia page just navigate to the page on GitHub (https://github.com/monero-project/monero-site/blob/master/knowledge-base/moneropedia/node.md) and click the edit pencil icon at the top right of the preview (only shows when you're logged in I think). GitHub will guide you through the fork-and-PR process:)

3. Add to the ecosystem. You can do this by creating a store / website / app that uses Monero, or convincing someone to accept Monero (without badgering them or acting like a vacuum cleaner salesman / religious nut / fair trade organic save the whales level 5 vegan), or by noting that you accept Monero when selling stuff on eBay / Craigslist / Gumtree / whatever.

Above all remember that you don't need to ask permission to do anything. The worst that can happen is you do something and it isn't well received, but at this stage everyone is so hungry for the ecosystem to grow that you could sell horse poop deliveries for Monero and it'd be a hit.

Thanks for the detailed response. All great points.

Is this currently the best way for webstores to accept Monero? http://monero.org/add-monero-to-your-website/

I personally feel that enhancing awareness (without blatant advertising, as you indicated) of the values of the currency will help expand the ecosystem, as it entices new users from a diversity of backgrounds. Then the points you mentioned above will grow organically. "New blood" is inclusive and furthers the community -- I think one of the reasons AmericanPegasus (from /r/bitcoin fame) came on board, in addition to the tech, is due to the helpful responses from devs and the no-bullshit approach from the community.

Also: https://xmr.to/ really caught my attention due to the novelty factor.

This kind of innovation will turn heads.

Any leads on whether it will be possible to integrate Monero with Open Bazaar?




Re: webstores, there is a payment script / (php perhaps??) of some sort somewhere in this thread. I wonder if anyone put it in the getmonero forums yet. I think its from TheKozi2 or something like that.

re: openbazaar - there was a guy (I think Atrides) that secured funding to develop, and you can follow some development on github , https://github.com/freebazaar/FreeBazaar/pull/4

Relevant:

XMR Integration / DEMO

Finally done with this script. Grin The idea is to make it easier for people to setup their own monero accepting website. A working demo can help with that!

This is a complete PHP integration of monero. Once setup you will have a working membership site with:

  • Login/Registration
  • Generation of payment id
  • Deposit of funds (automatically added to account after X confirmations)
  • Withdraw of funds (added to processing queue and processed automatically)
  • Admin Panel displaying current balances and other useful info (e.g status of daemon and wallet)
  • With some minor changes, you can add multiple cryptonote types of currencies/assets
  • The script comes with cron.php, which is the processing script. It can be setup to run forever in the background, or even as a cron job. Read the comment in cron.php for more info.

For install instructions simply open install.php

Download here: https://github.com/TheKoziTwo/xmr-integration

Step by step install (install.php):


Login/Registration:


Account area:


Admin area:


There is no guide for how to setup daemon and simplewallet in "server mode". I have been working on a guide as well, but it's not posted anywhere yet, so I'll put some quick guidelines below:
Quote
Introduction

With bitcoin, transactions are identified with a unique address. Monero uses payment id instead to identify transactions. This means that your XMR receiving address will be the same for all users, but payment_id will be unique. Users transferring money to your site need to specify both address and payment id

Setting up server

Bitcoin has both wallet and daemon in one and the same software. Monero has split these into two separate applications. You have bitmonerod which is the daemon and simplewallet which is the wallet. This requires us to connect to two different services.

Daemon (localhost:18081/rpc/)

You need to launch daemon in server mode, to do so run it with:
Code:
./bitmonerod --rpc-bind-ip 127.0.0.1 --rpc-bind-port 18081

Thats all. Once you have a daemon running, you can connect to it from one or even multiple wallets.

Wallet (localhost:18082/rpc/)
First of all create a wallet as usual (if you have not already done so):

Code:
simplewallet --generate-new-wallet mywallet.dat

Enter a password (demo123), you don’t need to write down the seed, but you may.

exit the wallet.

In order to perform operations usings the API, the wallet must run in rpc server mode, to do so, run it with the following param (make sure the daemon is already running first):

Code:
./simplewallet --wallet-file mywallet.dat --password demo123 --rpc-bind-port 18082

Another example, if you have bound the daemon to an IP/PORT and also wants to bind the simplewallet, this example below shows how:
Code:
./simplewallet --daemon-host 192.168.10.54 --daemon-port 18081 --wallet-file mywallet.dat --rpc-bind-ip 192.168.10.54 --rpc-bind-port 18082 --password demo123

Now you should be able to access the wallet outside of your localhost also.

IMPORTANT: When wallet is running in RPC mode it’s technically possible for hackers to empty your wallet if your port is open. You don’t want that, so make sure 18082 is closed.

legendary
Activity: 1260
Merit: 1008
In what ways can the community improve Monero?

I would like to contribute my time, but am not a coder.

There are three ways:

1. Make something creative! You don't need permission to use Monero artwork and resources, and all the content / images / podcasts on getmonero.org are covered by a Creative Commons CC BY 3.0 license (see: https://getmonero.org/legal/copyright), so feel free to reuse and remix.

2. Contribute to the website. There's a small learning curve to understand the layout of the website source and to learn the basics of Kramdown (the Markdown flavor we use), but once that's done then you just have to create a GitHub account and use the "edit" button on the various .md files in the site repo (https://github.com/monero-project/monero-site). For instance, to edit the "node" Moneropedia page just navigate to the page on GitHub (https://github.com/monero-project/monero-site/blob/master/knowledge-base/moneropedia/node.md) and click the edit pencil icon at the top right of the preview (only shows when you're logged in I think). GitHub will guide you through the fork-and-PR process:)

3. Add to the ecosystem. You can do this by creating a store / website / app that uses Monero, or convincing someone to accept Monero (without badgering them or acting like a vacuum cleaner salesman / religious nut / fair trade organic save the whales level 5 vegan), or by noting that you accept Monero when selling stuff on eBay / Craigslist / Gumtree / whatever.

Above all remember that you don't need to ask permission to do anything. The worst that can happen is you do something and it isn't well received, but at this stage everyone is so hungry for the ecosystem to grow that you could sell horse poop deliveries for Monero and it'd be a hit.

Thanks for the detailed response. All great points.

Is this currently the best way for webstores to accept Monero? http://monero.org/add-monero-to-your-website/

I personally feel that enhancing awareness (without blatant advertising, as you indicated) of the values of the currency will help expand the ecosystem, as it entices new users from a diversity of backgrounds. Then the points you mentioned above will grow organically. "New blood" is inclusive and furthers the community -- I think one of the reasons AmericanPegasus (from /r/bitcoin fame) came on board, in addition to the tech, is due to the helpful responses from devs and the no-bullshit approach from the community.

Also: https://xmr.to/ really caught my attention due to the novelty factor.

This kind of innovation will turn heads.

Any leads on whether it will be possible to integrate Monero with Open Bazaar?




Re: webstores, there is a payment script / (php perhaps??) of some sort somewhere in this thread. I wonder if anyone put it in the getmonero forums yet. I think its from TheKozi2 or something like that.

re: openbazaar - there was a guy (I think Atrides) that secured funding to develop, and you can follow some development on github , https://github.com/freebazaar/FreeBazaar/pull/4
newbie
Activity: 26
Merit: 0
In what ways can the community improve Monero?

I would like to contribute my time, but am not a coder.

There are three ways:

1. Make something creative! You don't need permission to use Monero artwork and resources, and all the content / images / podcasts on getmonero.org are covered by a Creative Commons CC BY 3.0 license (see: https://getmonero.org/legal/copyright), so feel free to reuse and remix.

2. Contribute to the website. There's a small learning curve to understand the layout of the website source and to learn the basics of Kramdown (the Markdown flavor we use), but once that's done then you just have to create a GitHub account and use the "edit" button on the various .md files in the site repo (https://github.com/monero-project/monero-site). For instance, to edit the "node" Moneropedia page just navigate to the page on GitHub (https://github.com/monero-project/monero-site/blob/master/knowledge-base/moneropedia/node.md) and click the edit pencil icon at the top right of the preview (only shows when you're logged in I think). GitHub will guide you through the fork-and-PR process:)

3. Add to the ecosystem. You can do this by creating a store / website / app that uses Monero, or convincing someone to accept Monero (without badgering them or acting like a vacuum cleaner salesman / religious nut / fair trade organic save the whales level 5 vegan), or by noting that you accept Monero when selling stuff on eBay / Craigslist / Gumtree / whatever.

Above all remember that you don't need to ask permission to do anything. The worst that can happen is you do something and it isn't well received, but at this stage everyone is so hungry for the ecosystem to grow that you could sell horse poop deliveries for Monero and it'd be a hit.

Thanks for the detailed response. All great points.

Is this currently the best way for webstores to accept Monero? http://monero.org/add-monero-to-your-website/

I personally feel that enhancing awareness (without blatant advertising, as you indicated) of the values of the currency will help expand the ecosystem, as it entices new users from a diversity of backgrounds. Then the points you mentioned above will grow organically. "New blood" is inclusive and furthers the community -- I think one of the reasons AmericanPegasus (from /r/bitcoin fame) came on board, in addition to the tech, is due to the helpful responses from devs and the no-bullshit approach from the community.

Also: https://xmr.to/ really caught my attention due to the novelty factor.

This kind of innovation will turn heads.

Any leads on whether it will be possible to integrate Monero with Open Bazaar?






donator
Activity: 1274
Merit: 1060
GetMonero.org / MyMonero.com
How about a charitable event to promote XMR? Something like "Monero for Movember". http://www.movember.com/

Movember is more and more popular these days. Charities might not accept Monero (that I know of) but there are some who will accept Bitcoin, so the Monero could be converted and sent to them.

That's a great idea, I'd support that 100%. Even if we only raised a small amount for e month it would be something that could be repeated every year:)
sr. member
Activity: 450
Merit: 250
In what ways can the community improve Monero?

I would like to contribute my time, but am not a coder.

There are three ways:

1. Make something creative! You don't need permission to use Monero artwork and resources, and all the content / images / podcasts on getmonero.org are covered by a Creative Commons CC BY 3.0 license (see: https://getmonero.org/legal/copyright), so feel free to reuse and remix.

2. Contribute to the website. There's a small learning curve to understand the layout of the website source and to learn the basics of Kramdown (the Markdown flavor we use), but once that's done then you just have to create a GitHub account and use the "edit" button on the various .md files in the site repo (https://github.com/monero-project/monero-site). For instance, to edit the "node" Moneropedia page just navigate to the page on GitHub (https://github.com/monero-project/monero-site/blob/master/knowledge-base/moneropedia/node.md) and click the edit pencil icon at the top right of the preview (only shows when you're logged in I think). GitHub will guide you through the fork-and-PR process:)

3. Add to the ecosystem. You can do this by creating a store / website / app that uses Monero, or convincing someone to accept Monero (without badgering them or acting like a vacuum cleaner salesman / religious nut / fair trade organic save the whales level 5 vegan), or by noting that you accept Monero when selling stuff on eBay / Craigslist / Gumtree / whatever.

Above all remember that you don't need to ask permission to do anything. The worst that can happen is you do something and it isn't well received, but at this stage everyone is so hungry for the ecosystem to grow that you could sell horse poop deliveries for Monero and it'd be a hit.

How about a charitable event to promote XMR? Something like "Monero for Movember". http://www.movember.com/

Movember is more and more popular these days. Charities might not accept Monero (that I know of) but there are some who will accept Bitcoin, so the Monero could be converted and sent to them.
sr. member
Activity: 450
Merit: 250
Does xmr.to use the mixin 3?

xmr.to is an xmr to btc payment service.  I think the user needs to initiate the mixin from their end.

Yep. FWIW we use mixin >= 3 whenever we send from our xmr wallet (to convert the stash back into btc for instance).

It might be worth stating this somewhere on the site, to increase users confidence in it's effectiveness.

Speaking of, doesn't the site use Java? Surely not good for users seeking anonymity?
legendary
Activity: 1260
Merit: 1008
HORSE POOP DISCOVERIES

I'll go find some horsepoop for 10 monero per poop.

Then I'll put little flags in it with the Monero logo on them.
legendary
Activity: 1762
Merit: 1011
Update!!

Well I lost it all. My hard died on me. I was able to sync with bitmonerod (thanks for the help by the way). However, my .keys files went down with the hard drive... 534 Monero's!! almost a year worth of mining down the drain.

Well, i still have 1.5 KH/s worth of mining power. Back to the drawing board....

Word of caution to all - BACKUP/SAVE your stuff! Don't be me!!!

Terrible news.

You might want to save the dead hard drive. If there is a "moon" event, taking a shot with an expensive data recovery service might be worth it.



Those companies cost too much. I looked into it. It costs around 250 dollars (US) and I lost about 1 BTC worth. I might as well just start mining again. on the plus side, on a pool I mined 1 XMR since yesterday Smiley

If there were other important things on there, at least the XMR would pay for the recovery. And, if the price goes up...
donator
Activity: 1274
Merit: 1060
GetMonero.org / MyMonero.com
In what ways can the community improve Monero?

I would like to contribute my time, but am not a coder.

There are three ways:

1. Make something creative! You don't need permission to use Monero artwork and resources, and all the content / images / podcasts on getmonero.org are covered by a Creative Commons CC BY 3.0 license (see: https://getmonero.org/legal/copyright), so feel free to reuse and remix.

2. Contribute to the website. There's a small learning curve to understand the layout of the website source and to learn the basics of Kramdown (the Markdown flavor we use), but once that's done then you just have to create a GitHub account and use the "edit" button on the various .md files in the site repo (https://github.com/monero-project/monero-site). For instance, to edit the "node" Moneropedia page just navigate to the page on GitHub (https://github.com/monero-project/monero-site/blob/master/knowledge-base/moneropedia/node.md) and click the edit pencil icon at the top right of the preview (only shows when you're logged in I think). GitHub will guide you through the fork-and-PR process:)

3. Add to the ecosystem. You can do this by creating a store / website / app that uses Monero, or convincing someone to accept Monero (without badgering them or acting like a vacuum cleaner salesman / religious nut / fair trade organic save the whales level 5 vegan), or by noting that you accept Monero when selling stuff on eBay / Craigslist / Gumtree / whatever.

Above all remember that you don't need to ask permission to do anything. The worst that can happen is you do something and it isn't well received, but at this stage everyone is so hungry for the ecosystem to grow that you could sell horse poop deliveries for Monero and it'd be a hit.
hero member
Activity: 649
Merit: 500

U know whats the best about XMR?

That we don´t give a fuck about people like you.

Othe reminds me of Bruce Banner. *chuckle*
full member
Activity: 198
Merit: 100
https://getmonero.org/getting-started/merchants
should be updated, because Melotic does not offer XMR exchange.


And Bter is missing, I know they were hacked but so was poloniex (before Monero).

Reverse:
Digital Currency
It is true

or, True Digital Currency?  Is that right in esperanto?

Is It True, its an "old saying" around here  Cheesy

Bter is barely working. XMR/BTC is online but... spread is sky-high, basically no transactions... Monero on Bter is done at the moment.
sr. member
Activity: 337
Merit: 250


The new .999 Fine Silver physical Moneroj are now available for purchase at cryptonic.net

Very nice!

So obverse side: Secure, Private, Untraceable

Reverse:
Digital Currency
It is true

or, True Digital Currency?  Is that right in esperanto?
legendary
Activity: 1512
Merit: 1012
Still wild and free
Does xmr.to use the mixin 3?

xmr.to is an xmr to btc payment service.  I think the user needs to initiate the mixin from their end.

Yep. FWIW we use mixin >= 3 whenever we send from our xmr wallet (to convert the stash back into btc for instance).
member
Activity: 94
Merit: 10


The new .999 Fine Silver physical Moneroj are now available for purchase at cryptonic.net
legendary
Activity: 2968
Merit: 1198
So, the mine directly to Poloniex is not the reason Poloniex can't implement mixin 3.

It isn't the only reason but it is part of the reason. The overall reason is that their deposits are often small and from miners, whether the miners do it direct from the pool or not. If you have people depositing 10 XMR at a time and then someone buys and withdraws 10K, that means 1000 inputs is needed to fund the transaction (i.e. very large).

I don't know that there is a good solution other than building it into their business model and cost structure somehow. It isn't entirely unique to XMR, although the larger ring signatures and transactions make the problem worse.
legendary
Activity: 2968
Merit: 1198
The problem as I see it is that Poloniex generates many unique dust outputs, which cannot be sent with a mixin greater than 1, unless we break outputs down to 0.000000000001 XMR. So for example 0.000000004321XMR would be broken into 0.000000004000 XMR, 0.000000000300 XMR, 0.000000000020 XMR, and 0.000000000001 XMR etc.

We're eventually going to break everything all the way down, although it will be up to the parties involved to decide how much precision they actually want, since more outputs means bigger transactions and higher fees. There might also be a minimum acceptable size enforced by the p2p though, since the twelfth decimal place is realistically spam more than anything else at this point.
sr. member
Activity: 283
Merit: 250
Strange...  Huh
I made a withdrawal from Poloniex to see how things are, and there is no TX Fee at all.
For 18.2 XMR supposed to receive exactly 18 but it was the full amount in my wallet.
To be sure, I made another one, very small this time, 0.29164127 XMR, and again the full 0.29164127 came into my wallet.
And yes, the mixin is 0.
legendary
Activity: 2282
Merit: 1050
Monero Core Team
The problem as I see it is that Poloniex generates many unique dust outputs, which cannot be sent with a mixin greater than 1, unless we break outputs down to 0.000000000001 XMR. So for example 0.000000004321XMR would be broken into 0.000000004000 XMR, 0.000000000300 XMR, 0.000000000020 XMR, and 0.000000000001 XMR etc.
Jump to: