Bitcoin Forum
May 17, 2024, 03:23:49 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 [1181] 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 ... 2124 »
  Print  
Author Topic: [XMR] Monero - A secure, private, untraceable cryptocurrency  (Read 4667620 times)
shitaifan2013
Legendary
*
Offline Offline

Activity: 879
Merit: 1000

monero


View Profile
April 30, 2015, 10:18:20 AM
 #23601

In the meantime, is there a reason why Payment IDs can't simply be appended to the address and parsed automatically by the client?

There is no reason. Someone just needs to define a format, implement it, pull request. Done.


I'm not familiar enough with the codebase to do it myself, but if it's a simple task I'll throw 100 xmr to whoever can get it in.

adding 100XMR to that bounty   Smiley

Bassica
Sr. Member
****
Offline Offline

Activity: 283
Merit: 250


View Profile
April 30, 2015, 11:40:50 AM
 #23602

Add another 50.
fluffypony
Donator
Legendary
*
Offline Offline

Activity: 1274
Merit: 1060


GetMonero.org / MyMonero.com


View Profile WWW
April 30, 2015, 12:46:45 PM
 #23603

I don't remember who stated it above, but I do agree that the lack of exchange/merchant adoption might have something to do with the hassle of depending on users to include payment IDs.

Pay ID serialisation into the receiving address looks pretty far down on the roadmap. In the meantime, is there a reason why Payment IDs can't simply be appended to the address and parsed automatically by the client? That would make it much easier for third parties to manage payments until "stealth" payment IDs eventually get implemented.

No checksum is one reason why this will potentially backfire. That and the payment ID space is unnecessarily huge.

I'll take a look at my notes from the MRL meetup in November last year, we had some ideas about fixing the payment ID format and serialising it, there may be a quick win to be had whilst we chip away at the stealth payment IDs.

smooth
Legendary
*
Offline Offline

Activity: 2968
Merit: 1198



View Profile
April 30, 2015, 12:55:28 PM
Last edit: April 30, 2015, 01:49:40 PM by smooth
 #23604

I don't remember who stated it above, but I do agree that the lack of exchange/merchant adoption might have something to do with the hassle of depending on users to include payment IDs.

Pay ID serialisation into the receiving address looks pretty far down on the roadmap. In the meantime, is there a reason why Payment IDs can't simply be appended to the address and parsed automatically by the client? That would make it much easier for third parties to manage payments until "stealth" payment IDs eventually get implemented.

No checksum is one reason why this will potentially backfire. That and the payment ID space is unnecessarily huge.

I'll take a look at my notes from the MRL meetup in November last year, we had some ideas about fixing the payment ID format and serialising it, there may be a quick win to be had whilst we chip away at the stealth payment IDs.

I disagree that we need to do nothing while we work on something better (obviously one does not preclude the other at all).

There is no checksum now. The length and valid characters are checked but that's it. The exact same thing can still be checked if the format is changed, slightly to something like

Code:
Send to this address: 46BeWrHpwXmHDpDEUmZBWZfoQpdc6HaERCNmx1pEYL2rAcuwufPN9rXHHtyUA4QVy66qeFQkn6sfK8aHYjA3jk3o1Bv16em-e981847d2b9e1860d56bcb2263864db976d52e88c9c97db5e734d204f06bedac

Instead of

Code:
Send to this address: 46BeWrHpwXmHDpDEUmZBWZfoQpdc6HaERCNmx1pEYL2rAcuwufPN9rXHHtyUA4QVy66qeFQkn6sfK8aHYjA3jk3o1Bv16em

and use this payment ID

e981847d2b9e1860d56bcb2263864db976d52e88c9c97db5e734d204f06bedac

It is the exact same thing in terms of checksums, validation, etc. except that the second is far more likely to lead to people forgetting it or not understanding it, and also fits worse with the usual workflow of a btc-style coin where people generate new addresses for each customer/invoice/etc., and has a higher support burden. With the first method, you have have the exact same kind of button in an exchange wallet window that says "generate new address" and it can go ahead and generate a new address that happens to share the same prefix, instead of needing something different for "payment-id coins".

We're suffering this unnecessary mismatch from the usual model and confusion because the cryptonote/BCN guys didn't see the need for a payment ID at all in their earlier design at all and threw the payment ID on there later as an extra thing instead of including it in addresses (there are commits in their repo when they added it, so it is clear it was an added patch). If it were part of the original design I bet something more like the prefix-suffix syntax would have been used.
GTO911
Hero Member
*****
Offline Offline

Activity: 672
Merit: 500



View Profile
April 30, 2015, 01:47:22 PM
 #23605

The cryptonote scammers came out with a reference QT GUI wallet
smooth
Legendary
*
Offline Offline

Activity: 2968
Merit: 1198



View Profile
April 30, 2015, 01:48:51 PM
 #23606

The cryptonote scammers came out with a reference QT GUI wallet

I wonder how it relates to the QT wallet that was part of Pebblecoin, does anyone know?
MalMen
Member
**
Offline Offline

Activity: 95
Merit: 10


View Profile
April 30, 2015, 02:34:18 PM
 #23607

I don't remember who stated it above, but I do agree that the lack of exchange/merchant adoption might have something to do with the hassle of depending on users to include payment IDs.

Pay ID serialisation into the receiving address looks pretty far down on the roadmap. In the meantime, is there a reason why Payment IDs can't simply be appended to the address and parsed automatically by the client? That would make it much easier for third parties to manage payments until "stealth" payment IDs eventually get implemented.

I think the bestway to solve this is using openalias, its already decided that we should use payment_id on openalias for setting an payment_id, but its not implemented on simplewallet nor on most famouse webwallet (mymonero), after that implementation it would be east for an exchange like poloniex to create openalias for each user with theyr payment_id, for example, malmen.xmradd.poloniex.com, i can help to implement this (i already have the knowage with http://xmr.link ), but this implementation its needed on the client side first....
GingerAle
Legendary
*
Offline Offline

Activity: 1260
Merit: 1008


View Profile WWW
April 30, 2015, 02:39:24 PM
 #23608

WARNING - these are not "official", as in, someone from the core dev team didn't compile them and gave them the a-ok. I'm putting them here for testing purposes. I compiled following the instructions on the github. Perhaps they are static? Perhaps you can run the LMDB version of bitmonerod on your win 64 box and only use 50 megs of ram?

https://mega.co.nz/#!5YNACDTJ!N0pIow27_Tfsx4dMfMq4HA11ZSlEt7L135HvYEOuBU8

perhaps you can swap in the relevant .exe files from the above into the /resources/software/ folder of MoneroX you can have a monero GUI on windows 64 that sips RAM like a fine wine?

AGAIN - don't trust these. Test them until you trust them. Make sure they do everything they should do. I tested them on the box I compiled on and another windows 7 box.

Hopefully someone will post the data.mdb download link.  

( removed the converter thing)

wow, no takers? I thought "the drooling masses" would be all over this.

< Track your bitcoins! > < Track them again! > <<< [url=https://www.reddit.com/r/Bitcoin/comments/1qomqt/what_a_landmark_legal_case_from_mid1700s_scotland/] What is fungibility? >>> 46P88uZ4edEgsk7iKQUGu2FUDYcdHm2HtLFiGLp1inG4e4f9PTb4mbHWYWFZGYUeQidJ8hFym2WUmWc p34X8HHmFS2LXJkf <<< Free subdomains at moneroworld.com!! >>> <<< If you don't want to run your own node, point your wallet to node.moneroworld.com, and get connected to a random node! @@@@ FUCK ALL THE PROFITEERS! PROOF OF WORK OR ITS A SCAM !!! @@@@
Bassica
Sr. Member
****
Offline Offline

Activity: 283
Merit: 250


View Profile
April 30, 2015, 02:43:12 PM
 #23609

WARNING - these are not "official", as in, someone from the core dev team didn't compile them and gave them the a-ok. I'm putting them here for testing purposes. I compiled following the instructions on the github. Perhaps they are static? Perhaps you can run the LMDB version of bitmonerod on your win 64 box and only use 50 megs of ram?

https://mega.co.nz/#!5YNACDTJ!N0pIow27_Tfsx4dMfMq4HA11ZSlEt7L135HvYEOuBU8

perhaps you can swap in the relevant .exe files from the above into the /resources/software/ folder of MoneroX you can have a monero GUI on windows 64 that sips RAM like a fine wine?

AGAIN - don't trust these. Test them until you trust them. Make sure they do everything they should do. I tested them on the box I compiled on and another windows 7 box.

Hopefully someone will post the data.mdb download link.  

( removed the converter thing)

wow, no takers? I thought "the drooling masses" would be all over this.

I'll pbb download it when I get home gingy, thanks.
oblox
Legendary
*
Offline Offline

Activity: 1442
Merit: 1018


View Profile
April 30, 2015, 02:44:24 PM
 #23610

WARNING - these are not "official", as in, someone from the core dev team didn't compile them and gave them the a-ok. I'm putting them here for testing purposes. I compiled following the instructions on the github. Perhaps they are static? Perhaps you can run the LMDB version of bitmonerod on your win 64 box and only use 50 megs of ram?

https://mega.co.nz/#!5YNACDTJ!N0pIow27_Tfsx4dMfMq4HA11ZSlEt7L135HvYEOuBU8

perhaps you can swap in the relevant .exe files from the above into the /resources/software/ folder of MoneroX you can have a monero GUI on windows 64 that sips RAM like a fine wine?

AGAIN - don't trust these. Test them until you trust them. Make sure they do everything they should do. I tested them on the box I compiled on and another windows 7 box.

Hopefully someone will post the data.mdb download link. 

( removed the converter thing)

wow, no takers? I thought "the drooling masses" would be all over this.

I'd be more interested in the data file for syncing purposes although at 16gb, not sure who's willing to host.
iCEBREAKER
Legendary
*
Offline Offline

Activity: 2156
Merit: 1072


Crypto is the separation of Power and State.


View Profile WWW
April 30, 2015, 02:44:50 PM
 #23611

The cryptonote scammers came out with a reference QT GUI wallet

I wonder how it relates to the QT wallet that was part of Pebblecoin, does anyone know?

I'd rather not know.  The Cryptonote Conspiracies' intrigues and mysteries are better left unresolved.   Cheesy


██████████
█████████████████
██████████████████████
█████████████████████████
████████████████████████████
████
████████████████████████
█████
███████████████████████████
█████
███████████████████████████
██████
████████████████████████████
██████
████████████████████████████
██████
████████████████████████████
██████
███████████████████████████
██████
██████████████████████████
█████
███████████████████████████
█████████████
██████████████
████████████████████████████
█████████████████████████
██████████████████████
█████████████████
██████████

Monero
"The difference between bad and well-developed digital cash will determine
whether we have a dictatorship or a real democracy." 
David Chaum 1996
"Fungibility provides privacy as a side effect."  Adam Back 2014
Buy and sell XMR near you
P2P Exchange Network
Buy XMR with fiat
Is Dash a scam?
GingerAle
Legendary
*
Offline Offline

Activity: 1260
Merit: 1008


View Profile WWW
April 30, 2015, 02:55:03 PM
 #23612

WARNING - these are not "official", as in, someone from the core dev team didn't compile them and gave them the a-ok. I'm putting them here for testing purposes. I compiled following the instructions on the github. Perhaps they are static? Perhaps you can run the LMDB version of bitmonerod on your win 64 box and only use 50 megs of ram?

https://mega.co.nz/#!5YNACDTJ!N0pIow27_Tfsx4dMfMq4HA11ZSlEt7L135HvYEOuBU8

perhaps you can swap in the relevant .exe files from the above into the /resources/software/ folder of MoneroX you can have a monero GUI on windows 64 that sips RAM like a fine wine?

AGAIN - don't trust these. Test them until you trust them. Make sure they do everything they should do. I tested them on the box I compiled on and another windows 7 box.

Hopefully someone will post the data.mdb download link. 

( removed the converter thing)

wow, no takers? I thought "the drooling masses" would be all over this.

I'd be more interested in the data file for syncing purposes although at 16gb, not sure who's willing to host.

Luckily, for whatever reason, the linux data.mdb works in windows, and the linux data.mdb shows up as ~6 gigs until the windows bitmonero accesses it, and then it turns into 16 gigs (due to what fluffypony called windows not liking sparse files). And then, magically, when either of them are compressed, they go to around 3.5 gigs or something.

Regardless, the best thing would be to sync from scratch, independent of how long it takes, because, you, decentralization nom nom nom.

< Track your bitcoins! > < Track them again! > <<< [url=https://www.reddit.com/r/Bitcoin/comments/1qomqt/what_a_landmark_legal_case_from_mid1700s_scotland/] What is fungibility? >>> 46P88uZ4edEgsk7iKQUGu2FUDYcdHm2HtLFiGLp1inG4e4f9PTb4mbHWYWFZGYUeQidJ8hFym2WUmWc p34X8HHmFS2LXJkf <<< Free subdomains at moneroworld.com!! >>> <<< If you don't want to run your own node, point your wallet to node.moneroworld.com, and get connected to a random node! @@@@ FUCK ALL THE PROFITEERS! PROOF OF WORK OR ITS A SCAM !!! @@@@
oblox
Legendary
*
Offline Offline

Activity: 1442
Merit: 1018


View Profile
April 30, 2015, 02:58:04 PM
 #23613

WARNING - these are not "official", as in, someone from the core dev team didn't compile them and gave them the a-ok. I'm putting them here for testing purposes. I compiled following the instructions on the github. Perhaps they are static? Perhaps you can run the LMDB version of bitmonerod on your win 64 box and only use 50 megs of ram?

https://mega.co.nz/#!5YNACDTJ!N0pIow27_Tfsx4dMfMq4HA11ZSlEt7L135HvYEOuBU8

perhaps you can swap in the relevant .exe files from the above into the /resources/software/ folder of MoneroX you can have a monero GUI on windows 64 that sips RAM like a fine wine?

AGAIN - don't trust these. Test them until you trust them. Make sure they do everything they should do. I tested them on the box I compiled on and another windows 7 box.

Hopefully someone will post the data.mdb download link. 

( removed the converter thing)

wow, no takers? I thought "the drooling masses" would be all over this.

I'd be more interested in the data file for syncing purposes although at 16gb, not sure who's willing to host.

Luckily, for whatever reason, the linux data.mdb works in windows, and the linux data.mdb shows up as ~6 gigs until the windows bitmonero accesses it, and then it turns into 16 gigs (due to what fluffypony called windows not liking sparse files). And then, magically, when either of them are compressed, they go to around 3.5 gigs or something.

Regardless, the best thing would be to sync from scratch, independent of how long it takes, because, you, decentralization nom nom nom.

Oh, it's still syncing on my end... at around 270k blockheight so about half way in about a week.
5w00p
Hero Member
*****
Offline Offline

Activity: 644
Merit: 502



View Profile
April 30, 2015, 03:06:24 PM
 #23614

So, as a Windows user, what is my guidance on getting the database version going on my computer?

I will be downloading the database blockchain in its entirety.

Thanks.
GingerAle
Legendary
*
Offline Offline

Activity: 1260
Merit: 1008


View Profile WWW
April 30, 2015, 03:16:47 PM
 #23615

So, as a Windows user, what is my guidance on getting the database version going on my computer?

I will be downloading the database blockchain in its entirety.

Thanks.

You can compile on your own, or try my compiled binaries posted above. Then run bitmonerod.exe

This will get you everything but the blockchain data file. This file will be posted tonight via mega, and there's some monerian i've been trying to get it to that will also host. Or u can get the current database from getmonero.org and try the converter.


< Track your bitcoins! > < Track them again! > <<< [url=https://www.reddit.com/r/Bitcoin/comments/1qomqt/what_a_landmark_legal_case_from_mid1700s_scotland/] What is fungibility? >>> 46P88uZ4edEgsk7iKQUGu2FUDYcdHm2HtLFiGLp1inG4e4f9PTb4mbHWYWFZGYUeQidJ8hFym2WUmWc p34X8HHmFS2LXJkf <<< Free subdomains at moneroworld.com!! >>> <<< If you don't want to run your own node, point your wallet to node.moneroworld.com, and get connected to a random node! @@@@ FUCK ALL THE PROFITEERS! PROOF OF WORK OR ITS A SCAM !!! @@@@
oblox
Legendary
*
Offline Offline

Activity: 1442
Merit: 1018


View Profile
April 30, 2015, 03:17:06 PM
 #23616

So, as a Windows user, what is my guidance on getting the database version going on my computer?

I will be downloading the database blockchain in its entirety.

Thanks.

Probably wait for someone trustworthy to upload the compressed data.mdb file, extract and drop into the lmdb data folder.
smooth
Legendary
*
Offline Offline

Activity: 2968
Merit: 1198



View Profile
April 30, 2015, 03:20:14 PM
 #23617

for an exchange like poloniex to create openalias for each user with theyr payment_id, for example, malmen.xmradd.poloniex.com, i can help to implement this

Part of the issue is exchanges having trouble integrating with their usual systems, workflow, and support. That creates a higher barrier to them even supporting the coin at all. Needing to incorporate DNS into that mix will make the problem worse.

It's a good idea for a value-added feature but not as a basic integration.
smooth
Legendary
*
Offline Offline

Activity: 2968
Merit: 1198



View Profile
April 30, 2015, 03:24:18 PM
 #23618

WARNING - these are not "official", as in, someone from the core dev team didn't compile them and gave them the a-ok. I'm putting them here for testing purposes. I compiled following the instructions on the github. Perhaps they are static? Perhaps you can run the LMDB version of bitmonerod on your win 64 box and only use 50 megs of ram?

https://mega.co.nz/#!5YNACDTJ!N0pIow27_Tfsx4dMfMq4HA11ZSlEt7L135HvYEOuBU8

perhaps you can swap in the relevant .exe files from the above into the /resources/software/ folder of MoneroX you can have a monero GUI on windows 64 that sips RAM like a fine wine?

AGAIN - don't trust these. Test them until you trust them. Make sure they do everything they should do. I tested them on the box I compiled on and another windows 7 box.

Hopefully someone will post the data.mdb download link. 

( removed the converter thing)

wow, no takers? I thought "the drooling masses" would be all over this.

I'd be more interested in the data file for syncing purposes although at 16gb, not sure who's willing to host.

If you compress it will get much smaller. There is only about 4 gb of actual data in there.
MalMen
Member
**
Offline Offline

Activity: 95
Merit: 10


View Profile
April 30, 2015, 03:57:31 PM
 #23619

for an exchange like poloniex to create openalias for each user with theyr payment_id, for example, malmen.xmradd.poloniex.com, i can help to implement this

Part of the issue is exchanges having trouble integrating with their usual systems, workflow, and support. That creates a higher barrier to them even supporting the coin at all. Needing to incorporate DNS into that mix will make the problem worse.

It's a good idea for a value-added feature but not as a basic integration.

Its worst because its diferent, but at the momment we already have apis working, i write this one by my own
https://github.com/MalMen/PHP-Monero

jebriggsy already forked my code and in my opinion is realy good and well commented
https://github.com/jebriggsy/PHP-Monero

Adding openalias on top of it will give some more work to exchanges but will bring cryptocurrency to another level of easy use to the final user, i dont buy people claiming that  "exchanges are not adding monero because the ticket system will be overflowing"

By the way, in my opinion another exchanges are not adding monero because they dont believe in monero or because they have interests in adding it
smooth
Legendary
*
Offline Offline

Activity: 2968
Merit: 1198



View Profile
April 30, 2015, 04:00:38 PM
Last edit: April 30, 2015, 04:10:59 PM by smooth
 #23620

By the way, in my opinion another exchanges are not adding monero because they dont believe in monero or because they have interests in adding it

I have to definitely disagree with that when you have exchanges with huge numbers of coins (hundreds? certainly dozens) listed. They don't believe in all those coins at all, it is just that adding them and supporting doesn't have the same development, operational and support barriers that Monero has. Some of that (especially on the support side, but also integration) comes from payment IDs.

What you say is probably correct when it comes to exchanges that list a smaller number of coins such as bitfinex or btc-e. To get onto those exchanges we likely have to get bigger first.
Pages: « 1 ... 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 [1181] 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 ... 2124 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!