David Latapie
|
|
February 04, 2015, 04:22:20 PM |
|
Also notice the monero: pseudo-procotol.
In case anyone is wondering, the full URI spec is here: http://monero.wikia.com/wiki/URI_formattingThat wikia also has the new RPC API spec, if anyone wants to modify / add before it gets ratified in the coming months. Same goes for the URI format. If I wanted to have the pseudo-protocol redirect to mymonero.com (thus, a browser page), is it possible? I suppose a Chrome extension or Firefox plugin would allow it (but I know nothing to extension coding).
|
|
|
|
GreekBitcoin
Legendary
Offline
Activity: 1428
Merit: 1001
getmonero.org
|
|
February 04, 2015, 04:29:16 PM |
|
That site stinks of warez...
>>Buy lol btw, is http://monero.wikia.com/ the official monero wiki?
|
|
|
|
fluffypony
Donator
Legendary
Offline
Activity: 1274
Merit: 1060
GetMonero.org / MyMonero.com
|
|
February 04, 2015, 04:53:38 PM |
|
No, it's just something we use for aspects related to protocol and design development.
|
|
|
|
GreekBitcoin
Legendary
Offline
Activity: 1428
Merit: 1001
getmonero.org
|
|
February 04, 2015, 04:57:13 PM |
|
No, it's just something we use for aspects related to protocol and design development. Can we setup wikimedia on monero.cc or xmrmonero.com (i see a wiki page there but it doesnt show me anything) so we can start adding info? Then, when time comes, you guys can do whatever changes you want but some articles will be ready...
|
|
|
|
fluffypony
Donator
Legendary
Offline
Activity: 1274
Merit: 1060
GetMonero.org / MyMonero.com
|
|
February 04, 2015, 06:37:27 PM |
|
Can we setup wikimedia on monero.cc or xmrmonero.com (i see a wiki page there but it doesnt show me anything) so we can start adding info? Then, when time comes, you guys can do whatever changes you want but some articles will be ready...
I can't speak to peripheral projects, but if you want to read some rationale for why we've gone down a certain route on monero.cc read this post which details why SendGrid reached the same conclusions we did (although they first had to make two missteps with Wikimedia and Wordpress first, which we've avoided) - https://sendgrid.com/blog/creating-sustainable-documentation-with-jekyll/
|
|
|
|
GingerAle
Legendary
Offline
Activity: 1260
Merit: 1008
|
|
February 04, 2015, 07:36:17 PM |
|
No, it's just something we use for aspects related to protocol and design development. Can we setup wikimedia on monero.cc or xmrmonero.com (i see a wiki page there but it doesnt show me anything) so we can start adding info? Then, when time comes, you guys can do whatever changes you want but some articles will be ready... Goto forum.monero.cc , start a thread, maintain the OP like a wiki page, write articles, etc. I'm learning to like that forum. or xmrmonero.com is another avenue.
|
|
|
|
David Latapie
|
|
February 05, 2015, 12:38:28 AM Last edit: February 05, 2015, 02:22:39 AM by David Latapie |
|
Can we setup wikimedia on monero.cc or xmrmonero.com It is already the case, but, since xmronero has a WYWIWYG editor, there is no need for the syntax - except for creating new links and this already possible. The wiki has revisions, diff visualisation and permalinks, as well as talk pages and table of contents, but not eveything works well - for the moment content creation and diff works but TOC and talk pages not - fortunately, this is not the most important. The most important is that YOU populate the wiki
Good post, didn't know Monero already passed the "peer-review" finals. Not yet, in the work.
|
|
|
|
|
|
GreekBitcoin
Legendary
Offline
Activity: 1428
Merit: 1001
getmonero.org
|
|
February 05, 2015, 02:48:37 AM |
|
Ok! Now i get it cause i though i couldnt view the wiki for some reason.
|
|
|
|
farianman
Newbie
Offline
Activity: 12
Merit: 0
|
|
February 05, 2015, 09:03:19 AM |
|
Trying to find out whether there is a need for a lottery sort of site like this before coding the back-end. ie. Would anyone be interested in playing a monero lottery/lucky draw? http://i60.tinypic.com/1zpli53.png
|
|
|
|
arnuschky
|
|
February 05, 2015, 09:33:10 AM |
|
[url=http://monero:46BeWrHpwXmHDpDEUmZBWZfoQpdc6HaERCNmx1pEYL2rAcuwufPN9rXHHtyUA4QVy66qeFQkn6sfK8aHYjA3jk3o1Bv16em?recipient_name=DevFund]donate.monero.cc[/url] Outside of this forum, you would need to remove the http in order to make this work, like this, right? [url=monero:46BeWrHpwXmHDpDEUmZBWZfoQpdc6HaERCNmx1pEYL2rAcuwufPN9rXHHtyUA4QVy66qeFQkn6sfK8aHYjA3jk3o1Bv16em?recipient_name=DevFund]donate.monero.cc[/url] However, stupid BBcode seems to auto-prepend http: donate.monero.ccEdit: This doesn't behave any better: donate.monero.ccSo this sig-including doesn't work at all...
|
|
|
|
|
arnuschky
|
|
February 05, 2015, 10:17:23 AM |
|
Turns out, the calls from the Monero wiki are nowhere to be fund in the code on github. No wonder I can't make it work, then. Where is development happening? Not on github? There seems to be a very low activity...
|
|
|
|
papa_lazzarou
|
|
February 05, 2015, 10:18:13 AM |
|
The best way I can think of is querying the getlastblockheader and check the timestamp. http://localhost:18081/json_rpc/getlastblockheader
|
|
|
|
arnuschky
|
|
February 05, 2015, 10:45:56 AM |
|
If yes, how can I see (using the API) that my daemon is fully synced?
The best way I can think of is querying the getlastblockheader and check the timestamp. http://localhost:18081/json_rpc/getlastblockheader Good idea! For the record, the call would require a post with: { "jsonrpc":"2.0", "id":"yourid", "method":"getlastblockheader" }
For example: curl -X POST http://127.0.0.1:18081/json_rpc -d '{"jsonrpc":"2.0","id":"yourid","method":"getlastblockheader"}' -H "Content-Type: application/json" -H "Accept: application/json" Works like a charm, much better than just reading the block chain height and comparing that to chainradar's one... Thanks!
|
|
|
|
fluffypony
Donator
Legendary
Offline
Activity: 1274
Merit: 1060
GetMonero.org / MyMonero.com
|
|
February 05, 2015, 11:01:53 AM |
|
Turns out, the calls from the Monero wiki are nowhere to be fund in the code on github. No wonder I can't make it work, then. Where is development happening? Not on github? There seems to be a very low activity... We haven't even started development on the new RPC API calls:) With git you don't commit to the main repo every 5 minutes, that would make it exceedingly difficult to coordinate work between contributors. So developers work in their own forks and branches, and then submit pull requests to the upstream (main) repo.
|
|
|
|
arnuschky
|
|
February 05, 2015, 11:07:09 AM |
|
We haven't even started development on the new RPC API calls:)
Ah, that explains it, thanks. A pity, the new calls look so much more sane than the Bytecoin ones... With git you don't commit to the main repo every 5 minutes, that would make it exceedingly difficult to coordinate work between contributors. So developers work in their own forks and branches, and then submit pull requests to the upstream (main) repo.
Yes, sorry, my question was phrased badly: where is development discussed? I mean, where could I go to find out the status of the RPC call implementation, or the often-discussed multisig stuff, or the db, etc? IRC? The Monero forum?
|
|
|
|
David Latapie
|
|
February 05, 2015, 11:15:00 AM Last edit: February 05, 2015, 04:27:53 PM by David Latapie |
|
So this sig-including doesn't work at all... This is just a case of me typing to late at night, plus the force of habit. http:// shall be completely remove (since this is not the http protocol but the monero pseudoprotocol) Even if the resulting code is correct, it is confusing, because it behave like a hypertext link but obviously doesn't work since there is no tool to handle it yet. So I reverted back to a good old donate.monero.cc.
Yes, sorry, my question was phrased badly: where is development discussed? I mean, where could I go to find out the status of the RPC call implementation, or the often-discussed multisig stuff, or the db, etc? IRC? The Monero forum?
Mostly #monero-dev.
|
|
|
|
newmankind
Newbie
Offline
Activity: 20
Merit: 0
|
|
February 05, 2015, 12:21:07 PM |
|
hi,guys, I am sure I put paymentid in and withdrawal XMR from poloniex to bittrex. but bittrex said "NONE of my transactions have included a payment id ". Is that the truth ? would you please help me figure out the problem?
2015/2/3 12:35 XMR 1 463tWEBn5XZJSxLU6uLQnQ2iY9xuNcDbjLSjkn3XAXHCbLrTTErJrBWYgHJQyrCwkNgYvyV3z8zctJL PCZy24jvb3NiTcTJ txid: c4448f2bf8027fa0f38c97c20ef75d2f11cab8317769f01042f61be0eb317c04
2015/2/2 10:09 XMR 50.42089261 463tWEBn5XZJSxLU6uLQnQ2iY9xuNcDbjLSjkn3XAXHCbLrTTErJrBWYgHJQyrCwkNgYvyV3z8zctJL PCZy24jvb3NiTcTJ txid: c3c73d5b3c8e89d56892cf006e3d3a8f1faf639907df484896f546086d6bfd2d
2015/2/2 8:06 XMR 75.63133891 463tWEBn5XZJSxLU6uLQnQ2iY9xuNcDbjLSjkn3XAXHCbLrTTErJrBWYgHJQyrCwkNgYvyV3z8zctJL PCZy24jvb3NiTcTJ txid: 50b8a86c629b2f7876418408a1fe0b5103a0892325d619c526bad21108c687f2
2015/2/2 3:59 XMR 51.43828586 463tWEBn5XZJSxLU6uLQnQ2iY9xuNcDbjLSjkn3XAXHCbLrTTErJrBWYgHJQyrCwkNgYvyV3z8zctJL PCZy24jvb3NiTcTJ txid: 87a743d785a72a6764a203a73209dab379daedb919e1a4b42436b5ec379105a5
2015/2/2 1:56 XMR 73.39923384 463tWEBn5XZJSxLU6uLQnQ2iY9xuNcDbjLSjkn3XAXHCbLrTTErJrBWYgHJQyrCwkNgYvyV3z8zctJL PCZy24jvb3NiTcTJ txid: 806203db203d0e66b34521a7943b4c6ed2069e7a73f2f88e9d004545797bb4b4
2015/2/1 20:49 XMR 83.77709438 463tWEBn5XZJSxLU6uLQnQ2iY9xuNcDbjLSjkn3XAXHCbLrTTErJrBWYgHJQyrCwkNgYvyV3z8zctJL PCZy24jvb3NiTcTJ txid: 0dee56787b42b937f5588a88a1d6925d614caa63d5dc5cd6171ad764237a6dac
|
|
|
|
|