ElektronFoundation (OP)
Jr. Member
Offline
Activity: 42
Merit: 10
|
|
April 19, 2015, 05:49:07 PM |
|
Thanks its work great
Nice to hear this.
|
|
|
|
jahras
|
|
April 19, 2015, 09:46:32 PM |
|
Might be major oversight on my part, but what's up with the trons? Posi, Elek and now neu tron?
|
|
|
|
cerealinvestor
Newbie
Offline
Activity: 26
Merit: 0
|
|
April 20, 2015, 02:59:40 AM |
|
I have heard some rumor about a very popular group behind EKN. I think some suspicious accumulation and activity is going on... This is very suspicious to me. Dev has followed each of this promises: 1) He has shown webwallet 2) He has enabled automatic checkpointing and has made code transparent 3) He has integrated EKN with tor system by default and I have reviewed github and seen this proof Dev is spending ipo money on vps and servers to host nodes... Dev shown capability of graphic designer with talent if you have seen the initial roadmap but ever since then dev has not posted any new graphic and has continued to develop? I feel like something is brewing... This is third time price has gone below 2k/1500 sats since this coin launch I can see on graph.. Everytime the coin gets bought up higher and then some walls come in to get dumps then they let it fall again. I think many weak holders shake out? I will not be shaken out of this. My EKN is now 55k and I will keep buying under 2000.. I know if i panic sell then it will just get bought and price go back to 3k + FROM 700 SAT TO 5k back to 2.5k??? Some whale activity suspicious is going on.. I will not be shaken out even if this goes back to 2k... Dev is doing so much more development than so many coins and price and volume is this low? You cannot touch cerealinvestor. He will not be shaken out. I am watching you ekn dev.. I am watching you. This is 3rd time whale have pushed coin under 2k and accumulate. And then bounce back up...
|
|
|
|
cerealinvestor
Newbie
Offline
Activity: 26
Merit: 0
|
|
April 20, 2015, 05:03:04 AM |
|
|
|
|
|
tubesteak
|
|
April 20, 2015, 05:28:34 AM |
|
Ellektron!!! I think they'll add EKN soon.
|
SLG: SPWZuB9HsZVQNiHCbLQyw32EdRdVtt87We
|
|
|
jahras
|
|
April 20, 2015, 05:38:51 AM |
|
Are all these coins from the same person/team?
|
|
|
|
cerealinvestor
Newbie
Offline
Activity: 26
Merit: 0
|
|
April 20, 2015, 05:43:35 AM |
|
Are all these coins from the same person/team?
No clue but elektron came first and was an IPO and the other newer ones were POW. I think if it was the same team it would be all POW. Neutron obviously copied name hype of elektron and positron
|
|
|
|
SmokeJoe
Member
Offline
Activity: 127
Merit: 10
|
|
April 20, 2015, 07:27:32 AM |
|
No volume. Bittrex will not at this. Don't be stupid.
|
|
|
|
SmokeJoe
Member
Offline
Activity: 127
Merit: 10
|
|
April 20, 2015, 08:21:03 AM |
|
Just look at all the other coins that were added much quicker because of volume.
|
|
|
|
uki
Legendary
Offline
Activity: 1358
Merit: 1000
cryptojunk bag holder
|
|
April 20, 2015, 08:46:33 AM |
|
Just look at all the other coins that were added much quicker because of volume.
12BTC in the last 24 hours, 95BTC (22% of total BTC volume at C-cex) in the last 7 days: https://c-cex.com/index.html?id=stat&d=7. Looks like another Iwanttobuycheapcoins.com.
|
this space is intentionally left blank
|
|
|
SmokeJoe
Member
Offline
Activity: 127
Merit: 10
|
|
April 20, 2015, 09:19:38 AM |
|
Just look at all the other coins that were added much quicker because of volume.
12BTC in the last 24 hours, 95BTC (22% of total BTC volume at C-cex) in the last 7 days: https://c-cex.com/index.html?id=stat&d=7. Looks like another Iwanttobuycheapcoins.com. Then why this coin is still not on Bittrex?
|
|
|
|
|
ElektronFoundation (OP)
Jr. Member
Offline
Activity: 42
Merit: 10
|
|
April 20, 2015, 04:45:57 PM |
|
Thanks community for your support.
|
|
|
|
MBonev
Newbie
Offline
Activity: 19
Merit: 0
|
|
April 20, 2015, 07:50:13 PM Last edit: April 20, 2015, 08:26:58 PM by MBonev |
|
I had an issue while trying to built Elektrond in 32-bit linux environment, but finally made it run without crashing. I had to manually change a line of code in /src/tor/memarea.c Question to the dev - is it possible bittrex have the same problem and that's the reason they don't list this coin?
|
|
|
|
ElektronFoundation (OP)
Jr. Member
Offline
Activity: 42
Merit: 10
|
|
April 20, 2015, 08:09:57 PM |
|
I had an issue while trying to built Elektrond in 32-bit linux environment, but finally made it run without crushing. I had to manually change a line of code in /src/tor/memarea.c Question to the dev - is it possible bittrex have the same problem and that's the reason they don't list this coin?
We think that Bittrex has enough tech skills to build any wallet around. However which problems did you encountered? Simply you need to install libevent_dev dependency and create TOR path with before give the command You shouldn't modify anything in our code to build the linux wallet from source actually. Also Bittrex would have contected us in the vent they had some issues with compiling wallets, but so far no question abou that have been submitted to us by Bittrex staff.
|
|
|
|
MBonev
Newbie
Offline
Activity: 19
Merit: 0
|
|
April 20, 2015, 08:21:39 PM |
|
Yes, i solved the problem with missing obj/tor directory by myself - it's a common issue with other coins too. I'm talking about the following part of memarea.c #define MEMAREA_ALIGN SIZEOF_VOID_P
#if MEMAREA_ALIGN == 4 #define MEMAREA_ALIGN_MASK 3lu #elif MEMAREA_ALIGN == 8 #define MEMAREA_ALIGN_MASK 7lu #else #error "void* is neither 4 nor 8 bytes long. I don't know how to align stuff." #endif
For some reason on my 32-bit distro MEMAREA_ALIGN is 8 so MEMAREA_ALIGN_MASK is 7lu. I have to manually hardcode 3lu there so the wallet doesn't crash. Disclaimer: I'm a truly noob C programmer
|
|
|
|
ElektronFoundation (OP)
Jr. Member
Offline
Activity: 42
Merit: 10
|
|
April 20, 2015, 09:10:06 PM |
|
Yes, i solved the problem with missing obj/tor directory by myself - it's a common issue with other coins too. I'm talking about the following part of memarea.c #define MEMAREA_ALIGN SIZEOF_VOID_P
#if MEMAREA_ALIGN == 4 #define MEMAREA_ALIGN_MASK 3lu #elif MEMAREA_ALIGN == 8 #define MEMAREA_ALIGN_MASK 7lu #else #error "void* is neither 4 nor 8 bytes long. I don't know how to align stuff." #endif
For some reason on my 32-bit distro MEMAREA_ALIGN is 8 so MEMAREA_ALIGN_MASK is 7lu. I have to manually hardcode 3lu there so the wallet doesn't crash. Disclaimer: I'm a truly noob C programmer Oh, ok. Got it.
|
|
|
|
uki
Legendary
Offline
Activity: 1358
Merit: 1000
cryptojunk bag holder
|
|
April 20, 2015, 09:26:16 PM |
|
Thanks community for your support. no problem. any news regarding Bittrex, Dev?
|
this space is intentionally left blank
|
|
|
AltMayhem
Newbie
Offline
Activity: 11
Merit: 0
|
|
April 20, 2015, 10:07:21 PM |
|
I grabbed some coins cheap on C-Cex.... here's hoping Bittrex adds it soon! ...and nice wallet, dev.
|
|
|
|
cerealinvestor
Newbie
Offline
Activity: 26
Merit: 0
|
|
April 20, 2015, 11:37:02 PM |
|
Thanks community for your support. no problem. any news regarding Bittrex, Dev? see bittrex rami's tweet. They have plans too... Plus some volume today. It will go on soon.
|
|
|
|
|