Bitcoin Forum
April 19, 2024, 07:23:41 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 »  All
  Print  
Author Topic: [ANN][ELT] Electron, Blake-256 coin, merged mined  (Read 56420 times)
ddeaNewtOn
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
June 22, 2014, 03:29:19 PM
 #161

volume is soo low man... How long are we allowed to be on bittrex?
Regardless, do we have a place to communicate and interact with one another other than BTCtalk? seems like no community or development here.. PLease correct me if I'm wrong... Smiley
1713511421
Hero Member
*
Offline Offline

Posts: 1713511421

View Profile Personal Message (Offline)

Ignore
1713511421
Reply with quote  #2

1713511421
Report to moderator
1713511421
Hero Member
*
Offline Offline

Posts: 1713511421

View Profile Personal Message (Offline)

Ignore
1713511421
Reply with quote  #2

1713511421
Report to moderator
The Bitcoin software, network, and concept is called "Bitcoin" with a capitalized "B". Bitcoin currency units are called "bitcoins" with a lowercase "b" -- this is often abbreviated BTC.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713511421
Hero Member
*
Offline Offline

Posts: 1713511421

View Profile Personal Message (Offline)

Ignore
1713511421
Reply with quote  #2

1713511421
Report to moderator
1713511421
Hero Member
*
Offline Offline

Posts: 1713511421

View Profile Personal Message (Offline)

Ignore
1713511421
Reply with quote  #2

1713511421
Report to moderator
electron-coin (OP)
Full Member
***
Offline Offline

Activity: 521
Merit: 100



View Profile
June 22, 2014, 06:30:53 PM
 #162

volume is soo low man... How long are we allowed to be on bittrex?
Regardless, do we have a place to communicate and interact with one another other than BTCtalk? seems like no community or development here.. PLease correct me if I'm wrong... Smiley
There are a couple things in the works. Stay tuned.
Would people prefer a separate forum?  I am cool with using this forum and CCT as the main forums.

▀▀▀▀▀▀     BRIDGEX NETWORK  │ LEND · BORROW · CONVERT · SEND    ▀▀▀▀▀▀
▄▄▄▄         Whitepaper       Telegram       Twitter       Medium       Facebook       LinkedIn          ▄▄▄▄
kramble
Sr. Member
****
Offline Offline

Activity: 384
Merit: 250



View Profile WWW
June 23, 2014, 12:19:38 PM
Last edit: June 23, 2014, 12:51:04 PM by kramble
 #163

Vanitygen for electron

Continuing from the blakecoin thread ...

Ok, thanks kramble.  Electron should be almost the same as blakecoin, except with using 92 as the address starting instead of 26 for BLC. The hashing part was untouched.

OK, it should just work using ./vanitygen -F compressed -X 92 pattern (using my hacked version at https://github.com/kramble/FPGA-Blakecoin-Miner/tree/master/vanitygen) EDIT: No it won't work as is, since the blake checksum is only applied to -X 26. You'll need to change util.c (see the previous commit for the file), around line 129. EDIT2: Also vanitygen.c line 397 may need changing. So I've got three variants of the code to check, need to compile an electron wallet first (2 hour job on raspi, quicker on ubuntu, once I sort out a VM for it). EDIT3: That took longer than I expected. Yes, both changes are needed, I'll take this onto your thread now as it's OT here.

Give it a try (check if the electron wallet will import the private key, and that the resulting address is the same as the one generated). Also try sending some coin to the addresss, then import the private key (into an empty wallet) and try spending the coin.

Mogrith: Doing a paper wallet (like bitaddress.org) is beyond my skill set, but a competent web/javascript developer should be able to do it easily. It just needs a javascript version of blake256, 8 round variant (which is the slightly tricky bit) to do the custom checksum.

I've tested this using the electrond daemon on unbuntu 12.04 (not tested sending any coin yet I have tasted my own dogfood and it's yummy ELT to eKram and eKram to eCoin)

You need to start with my hacked version of vanitygen from https://github.com/kramble/FPGA-Blakecoin-Miner/tree/master/vanitygen

You will need to compile it yourself (works ok on raspi and ubuntu, not tested on windows), but first edit two files:
util.c line 129, change if (blake_flag == 26) to if (1)
vanitygen.c line 397, change if (addrtype == 26) to if (1)
make vanitygen (OK on ubuntu, but raspi needs the top line of Makefile editing to remove -march=native)

Now run it
./vanitygen -F compressed -X 92 eCoin

And annoyingly, it works fine on raspi but takes a while to get going on ubuntu. Perhaps because I ran it in a VM?

As a side issue, you need to make a couple of changes in your git repo to fix the daemon build
mkdir src/obj
chmod +x src/leveldb/build_detect_platform

Github https://github.com/kramble BLC BkRaMaRkw3NeyzsZ2zUgXsNLogVVkQ1iPV
CrowdWhale
Hero Member
*****
Offline Offline

Activity: 799
Merit: 1000


Twitter: @CrowdWhale


View Profile
June 23, 2014, 01:22:05 PM
 #164

There are a couple things in the works. Stay tuned.

What things? You're buying the coin on every exchange at 1500 sats while keeping your activity secret. This is the definition of a ninja launch.

---> What couple things? <---
electron-coin (OP)
Full Member
***
Offline Offline

Activity: 521
Merit: 100



View Profile
June 23, 2014, 02:31:48 PM
 #165

Vanitygen for electron

Continuing from the blakecoin thread ...

Ok, thanks kramble.  Electron should be almost the same as blakecoin, except with using 92 as the address starting instead of 26 for BLC. The hashing part was untouched.

OK, it should just work using ./vanitygen -F compressed -X 92 pattern (using my hacked version at https://github.com/kramble/FPGA-Blakecoin-Miner/tree/master/vanitygen) EDIT: No it won't work as is, since the blake checksum is only applied to -X 26. You'll need to change util.c (see the previous commit for the file), around line 129. EDIT2: Also vanitygen.c line 397 may need changing. So I've got three variants of the code to check, need to compile an electron wallet first (2 hour job on raspi, quicker on ubuntu, once I sort out a VM for it). EDIT3: That took longer than I expected. Yes, both changes are needed, I'll take this onto your thread now as it's OT here.

Give it a try (check if the electron wallet will import the private key, and that the resulting address is the same as the one generated). Also try sending some coin to the addresss, then import the private key (into an empty wallet) and try spending the coin.

Mogrith: Doing a paper wallet (like bitaddress.org) is beyond my skill set, but a competent web/javascript developer should be able to do it easily. It just needs a javascript version of blake256, 8 round variant (which is the slightly tricky bit) to do the custom checksum.

I've tested this using the electrond daemon on unbuntu 12.04 (not tested sending any coin yet I have tasted my own dogfood and it's yummy ELT to eKram and eKram to eCoin)

You need to start with my hacked version of vanitygen from https://github.com/kramble/FPGA-Blakecoin-Miner/tree/master/vanitygen

You will need to compile it yourself (works ok on raspi and ubuntu, not tested on windows), but first edit two files:
util.c line 129, change if (blake_flag == 26) to if (1)
vanitygen.c line 397, change if (addrtype == 26) to if (1)
make vanitygen (OK on ubuntu, but raspi needs the top line of Makefile editing to remove -march=native)

Now run it
./vanitygen -F compressed -X 92 eCoin

And annoyingly, it works fine on raspi but takes a while to get going on ubuntu. Perhaps because I ran it in a VM?

As a side issue, you need to make a couple of changes in your git repo to fix the daemon build
mkdir src/obj
chmod +x src/leveldb/build_detect_platform

Thanks Kramble, I will give the vangen a try.
For github, I am using the windows client and it annoyingly won't let me make an src/obj directory. I will try to make it on Ubuntu. 
May I send some ELT your way as a token of appreciation?

▀▀▀▀▀▀     BRIDGEX NETWORK  │ LEND · BORROW · CONVERT · SEND    ▀▀▀▀▀▀
▄▄▄▄         Whitepaper       Telegram       Twitter       Medium       Facebook       LinkedIn          ▄▄▄▄
electron-coin (OP)
Full Member
***
Offline Offline

Activity: 521
Merit: 100



View Profile
June 23, 2014, 02:35:40 PM
 #166

There are a couple things in the works. Stay tuned.

What things? You're buying the coin on every exchange at 1500 sats while keeping your activity secret. This is the definition of a ninja launch.

---> What couple things? <---
Sorry, I though I was pretty public about what I am working on. They are listed in the op.  Current projects are the website, online wallet, and twitter tipbot.  I am doing my best to support ELT prices with my own BTCs.  If people would prefer I don't do it, I'd be happy not to. I have given away over 20,000 ELTs. 

▀▀▀▀▀▀     BRIDGEX NETWORK  │ LEND · BORROW · CONVERT · SEND    ▀▀▀▀▀▀
▄▄▄▄         Whitepaper       Telegram       Twitter       Medium       Facebook       LinkedIn          ▄▄▄▄
electron-coin (OP)
Full Member
***
Offline Offline

Activity: 521
Merit: 100



View Profile
June 23, 2014, 02:43:34 PM
 #167

Hi, Electron Dev.
How are you?
Spirit for you. Go the moon!!
I hope Electron can return the coin to the top market position in Bittrex.
Also I hope you can apply your coin on Poloniex.
Good Luck !! Good job!!
Thank you
Put in a request to be listed on Poloniex.  Will keep everybody posted when the voting starts.

▀▀▀▀▀▀     BRIDGEX NETWORK  │ LEND · BORROW · CONVERT · SEND    ▀▀▀▀▀▀
▄▄▄▄         Whitepaper       Telegram       Twitter       Medium       Facebook       LinkedIn          ▄▄▄▄
CrowdWhale
Hero Member
*****
Offline Offline

Activity: 799
Merit: 1000


Twitter: @CrowdWhale


View Profile
June 23, 2014, 02:46:23 PM
 #168

Why would Poloniex list it? Bittrex was going to ditch it until people (including myself) asked them not to. Now I'm several BTC in the hole and wondering how I could be such an idiot. You think Bittrex is going to keep this coin listed with no volume?
kramble
Sr. Member
****
Offline Offline

Activity: 384
Merit: 250



View Profile WWW
June 23, 2014, 02:52:02 PM
 #169

Thanks Kramble, I will give the vangen a try.
For github, I am using the windows client and it annoyingly won't let me make an src/obj directory. I will try to make it on Ubuntu.  
May I send some ELT your way as a token of appreciation?

I'm not a github expert either, am using windows client myself. BlueDragon may be able to help though. Or just put a note in the README (most users don't bother with the daemon I expect).

All donations are gratefully received. Might as well use eKramgtvXd45wgW3HYNCtUyPm5uqTXzHyz (eating my own dogfood  Wink )

Github https://github.com/kramble BLC BkRaMaRkw3NeyzsZ2zUgXsNLogVVkQ1iPV
Grifftech2k4
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
June 23, 2014, 02:58:05 PM
 #170

Can this be merged mined with all of the other blakecoins?
CrowdWhale
Hero Member
*****
Offline Offline

Activity: 799
Merit: 1000


Twitter: @CrowdWhale


View Profile
June 23, 2014, 03:13:17 PM
 #171

Can this be merged mined with all of the other blakecoins?

Yes.
Grifftech2k4
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
June 23, 2014, 04:08:46 PM
 #172

I am trying to find a compiled miner for NVidia and CGMiner keeps crashing when I try to run it on my Radeon HD5850?
Grifftech2k4
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
June 23, 2014, 04:18:35 PM
 #173

Now I am getting rejected H-Not-Zero error on Cgminer
chiguireitor
Legendary
*
Offline Offline

Activity: 872
Merit: 1010


Coins, Games & Miners


View Profile WWW
June 23, 2014, 04:29:10 PM
 #174

@Grifftech2k4 use the cgminer, no sense using cudaminer yet because it hasn't been optimized yet...

I nother news, i'm almost done with the Unity script for crypto IAPs which will include all the blake ecosystem... will begin publicly beta testing soon...  Roll Eyes

Grifftech2k4
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
June 23, 2014, 04:35:53 PM
 #175

@Grifftech2k4 use the cgminer, no sense using cudaminer yet because it hasn't been optimized yet...

I nother news, i'm almost done with the Unity script for crypto IAPs which will include all the blake ecosystem... will begin publicly beta testing soon...  Roll Eyes

I am using CGMiner 3.3.1 and I am getting this
 Proof: 0000000072d8b0d19dc569339275692bce65352372992b6cbf8852c55f83c3aa
Target: 0000000800000000000000000000000000000000000000000000000000000000 YES
 [2014-06-23 11:35:04] Rejected 72d8b0d1 Diff 570/31 GPU 0  (H-not-zero)
electron-coin (OP)
Full Member
***
Offline Offline

Activity: 521
Merit: 100



View Profile
June 23, 2014, 05:20:34 PM
 #176

@Grifftech2k4 use the cgminer, no sense using cudaminer yet because it hasn't been optimized yet...

I nother news, i'm almost done with the Unity script for crypto IAPs which will include all the blake ecosystem... will begin publicly beta testing soon...  Roll Eyes

I am using CGMiner 3.3.1 and I am getting this
 Proof: 0000000072d8b0d19dc569339275692bce65352372992b6cbf8852c55f83c3aa
Target: 0000000800000000000000000000000000000000000000000000000000000000 YES
 [2014-06-23 11:35:04] Rejected 72d8b0d1 Diff 570/31 GPU 0  (H-not-zero)

Are you mining on one of the merged pools?

▀▀▀▀▀▀     BRIDGEX NETWORK  │ LEND · BORROW · CONVERT · SEND    ▀▀▀▀▀▀
▄▄▄▄         Whitepaper       Telegram       Twitter       Medium       Facebook       LinkedIn          ▄▄▄▄
moffer5
Member
**
Offline Offline

Activity: 152
Merit: 10


View Profile WWW
June 23, 2014, 06:37:23 PM
 #177

Worry on how long will Bittrex keep this coin with current low volume? Sad

I guess a coin on there has to have low volume for over a month before they start thinking about delisting it.

qiwoman2
Legendary
*
Offline Offline

Activity: 2114
Merit: 1023


Oikos.cash | Decentralized Finance on Tron


View Profile
June 24, 2014, 01:32:59 AM
 #178

I am sure as more and more peeps become aware of ELECTRON Coin they will start to trade it. I notice sometimes coins lay low and then bang they explode, so if ELECTRON is sleeping for a bit maybe that's a good sign because it gives many of us the chance to pick up some at low prices.  Smiley


█▀█ █ █▄▀ █▀█ █▀ ░ █▀▀ ▄▀█ █▀ █░█
█▄█ █ █░█ █▄█ ▄█ ▄ █▄▄ █▀█ ▄█ █▀█



DeFi on Tron
and trustless token exchange
█████











█████

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

JOIN OIKOS

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

█████
    █
    █
    █
    █
    █
    █
    █
    █
    █
    █
    █
█████
electron-coin (OP)
Full Member
***
Offline Offline

Activity: 521
Merit: 100



View Profile
June 24, 2014, 04:25:33 AM
 #179

Thanks Kramble, I will give the vangen a try.
For github, I am using the windows client and it annoyingly won't let me make an src/obj directory. I will try to make it on Ubuntu.  
May I send some ELT your way as a token of appreciation?

I'm not a github expert either, am using windows client myself. BlueDragon may be able to help though. Or just put a note in the README (most users don't bother with the daemon I expect).

All donations are gratefully received. Might as well use eKramgtvXd45wgW3HYNCtUyPm5uqTXzHyz (eating my own dogfood  Wink )

Nice!  2000 ELT going to eKram.  Thanks for all of your contributions.

▀▀▀▀▀▀     BRIDGEX NETWORK  │ LEND · BORROW · CONVERT · SEND    ▀▀▀▀▀▀
▄▄▄▄         Whitepaper       Telegram       Twitter       Medium       Facebook       LinkedIn          ▄▄▄▄
BlueDragon747
Legendary
*
Offline Offline

Activity: 1509
Merit: 1030


Solutions Architect


View Profile WWW
June 26, 2014, 02:56:49 AM
 #180

Thanks Kramble, I will give the vangen a try.
For github, I am using the windows client and it annoyingly won't let me make an src/obj directory. I will try to make it on Ubuntu.  
May I send some ELT your way as a token of appreciation?

I'm not a github expert either, am using windows client myself. BlueDragon may be able to help though. Or just put a note in the README (most users don't bother with the daemon I expect).

All donations are gratefully received. Might as well use eKramgtvXd45wgW3HYNCtUyPm5uqTXzHyz (eating my own dogfood  Wink )

Nice!  2000 ELT going to eKram.  Thanks for all of your contributions.

quick fix for adding empty folder to github is to put a blank .txt file in the /src/obj folder it should add the blank file and the folder


Edit:
Note to anyone who gets (H-not-zero) errors with cgminer *You are using the wrong cgminer version use 3.1.1(default) http://www.blakecoin.org/cgminer-alt-pool-ny.7z just edit cgminer.conf with your details then run cgminer.exe
or
read the "Getting Started" page on pools

Info: GithubBlakecoin.org - BCT Blakecoin thread - Twitter - BCS - BlakeZone  Trade Blakecoin: Xeggex.com Merged Mining Pools: EU3 - NY2/AT1 - LA1
Donation Addresses: BLC: Bd3jJftFbwxWSKNSNz35vkDd57kG6jHAjt PHO: BZXPMc8eF9YZcJStskkP2bVia38fv9VmuT BBTC: 2h8c4NbzXJXk6QQ89r7YYMGhe13gQUC2ajD ELT: e7cm6cAgpfhvk3Myh2Jkmi1nqaHtDHnxXb 
UMO: uQH9H17t7kz3eVQ3vKDzMsWCK4hn5nh2gC LIT: 8p8Z4h5fkZ8SCoyEtihKcjzZLA7gFjTdmL BTC: 1Q6kgcNqhKh8u67m6Gj73T2LMgGseETwR6
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 »  All
  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!