Pages:
Author

Topic: [TESTNET]Bismuth - New Language, Interpretation Engines, DAPPs - page 8. (Read 49698 times)

legendary
Activity: 2114
Merit: 1090
=== NODE IS OK! ==
Bismuth is now re-branded to Stallion - fast, light, strong, free black horse
at the same time, this is internal sync mechanism name, but I like it

Why rebrand:

Nobody knows what Bismuth is / or they think it's a laxative
Bismuth sounds like Helmuth
Stallion appeals to power/growth/dominance/black horse
Stallion has nice graphics materials readily available
Stallion is easy to remember

Odds:

Sounds like Stalin
hero member
Activity: 756
Merit: 579
https://github.com/hclivess/Bismuth/releases/tag/1.96

[Stallion] initial release
Miner hashrate estimate visible.
legendary
Activity: 2114
Merit: 1090
=== NODE IS OK! ==
Thanks for awesome testing, so many participants! You gave me great new ideas, more announcements coming soon!

legendary
Activity: 2114
Merit: 1090
=== NODE IS OK! ==
How to back up the wallet file, it is stored in what directory
How can I send a coin

privkey.der or privkey_encrypted.der
pubkey.der
in the directory where you installed to, Program Files (x86) by default

to send coins, open node.exe (start) and gui.exe (overview)
i should make changes to naming
newbie
Activity: 53
Merit: 0
How to back up the wallet file, it is stored in what directory
How can I send a coin
sr. member
Activity: 445
Merit: 250
For test launched node with mining...
legendary
Activity: 2114
Merit: 1090
=== NODE IS OK! ==
how can i know my hashrate and the network hashrate ... also controlling the number of cores mining

Hi, you can change the number of threads in config.txt, that should roughly correspond to the number of cores.

I haven't paid much attention to the concept of hashrate so far, haven't found a use for it yet. However, I'll see if I can add it to the miner as an informative measure. We are using the concept of timestamp when creating new blocks, instead of nonce. We we might be resistant to ASIC by design, because nonce is random, but timestamp follows certain rules.

Network hashrate would then be derived from block speed propagation, average timestamps and difficulty.

EDIT: hashrate (rough estimate) code added for the next release:
Code:
2017-01-16 14:14:45,151 miner(100) Mining, 1 cycles passed in thread 1, difficulty: 33.8821780934, combined hashrate: estimating KH/s
2017-01-16 14:14:49,216 miner(100) Mining, 200 cycles passed in thread 1, difficulty: 33.8821780934, combined hashrate: 15.0001049042 KH/s
2017-01-16 14:14:53,160 miner(100) Mining, 400 cycles passed in thread 1, difficulty: 33.8821780934, combined hashrate: 13.0000114441 KH/s
2017-01-16 14:14:57,013 miner(100) Mining, 600 cycles passed in thread 1, difficulty: 33.8821780934, combined hashrate: 16.0000324249 KH/s
2017-01-16 14:15:00,753 miner(100) Mining, 800 cycles passed in thread 1, difficulty: 33.8821780934, combined hashrate: 16.9999599457 KH/s
2017-01-16 14:15:04,480 miner(100) Mining, 1000 cycles passed in thread 1, difficulty: 33.8821780934, combined hashrate: 13.0000114441 KH/s
2017-01-16 14:15:07,951 miner(100) Mining, 1200 cycles passed in thread 1, difficulty: 33.8821780934, combined hashrate: 16.0000324249 KH/s

https://github.com/hclivess/Bismuth/commit/0f5fd15d3f56080899a9328148cd81d060f4cf40
legendary
Activity: 1050
Merit: 1000
how can i know my hashrate and the network hashrate ... also controlling the number of cores mining
hero member
Activity: 518
Merit: 500
First Asia-wide Asset Exchange
Testnet release 1.95

https://github.com/hclivess/Bismuth/releases/tag/1.95

Miner code reorganized, will not ask for the password multiple times
error was caused by moving freeze https://docs.python.org/2/library/multiprocessing.html#multiprocessing.freeze_support
Updated and testing now! Good job HClivess!
hero member
Activity: 756
Merit: 579
Testnet release 1.95

https://github.com/hclivess/Bismuth/releases/tag/1.95

Miner code reorganized, will not ask for the password multiple times
error was caused by moving freeze https://docs.python.org/2/library/multiprocessing.html#multiprocessing.freeze_support
legendary
Activity: 2114
Merit: 1090
=== NODE IS OK! ==
Good job HClivess! Nice wallet!

Can be improved with 2 more buttons, on bottom left: "export" "import" wallet or "backup" - "recover" Cheesy

ok, will add those

Code:
import Tkinter,tkFileDialog

root = Tkinter.Tk()
file = tkFileDialog.askopenfile(parent=root,mode='rb',title='Choose a file')
if file != None:
    data = file.read()
    file.close()
    print "I got %d bytes from this file." % len(data)
legendary
Activity: 2114
Merit: 1090
=== NODE IS OK! ==
what are the steps left to be done so mainnet would be online

rollback attack security and me coming back from California
legendary
Activity: 1050
Merit: 1000
what are the steps left to be done so mainnet would be online
hero member
Activity: 756
Merit: 579
Good job HClivess! Nice wallet!

Can be improved with 2 more buttons, on bottom left: "export" "import" wallet or "backup" - "recover" Cheesy
legendary
Activity: 2114
Merit: 1090
=== NODE IS OK! ==
full member
Activity: 188
Merit: 105
New testnet release:

https://github.com/hclivess/Bismuth/releases/tag/1.92

-you can now encrypt your private key with a password in GUI
(unencrypted password will be deleted)

https://github.com/hclivess/Bismuth/releases/tag/1.924
Quote
Unencrypted miner no longer needs to give password
Removed binary output in difficulty verification
Removed testing mode from block handling exception
More changes to the GUI - new simple logo and arrangement
Fixed password from remaining in input box
Explorer path for graph fixed
Fixed GUI state descriptions



everything is looking great and running great  Smiley
legendary
Activity: 2114
Merit: 1090
=== NODE IS OK! ==
New testnet release:

https://github.com/hclivess/Bismuth/releases/tag/1.92

-you can now encrypt your private key with a password in GUI
(unencrypted password will be deleted)

https://github.com/hclivess/Bismuth/releases/tag/1.924
Quote
Unencrypted miner no longer needs to give password
Removed binary output in difficulty verification
Removed testing mode from block handling exception
More changes to the GUI - new simple logo and arrangement
Fixed password from remaining in input box
Explorer path for graph fixed
Fixed GUI state descriptions

hero member
Activity: 756
Merit: 579
New testnet release:

https://github.com/hclivess/Bismuth/releases/tag/1.92

-you can now encrypt your private key with a password in GUI
(unencrypted password will be deleted)
full member
Activity: 188
Merit: 105
welcome @topcoiner!
nice to see more testers, finnaly this topic is getting alive.. Smiley
I'm glad to help with testing. What's about ICO, I think that it's not important to have an escrow. Do it like NXT had.

the ICO will be for Clarity, Clarity is the ICO corporate version of Bismuth and for the best interest for everyone with the amount of scams that are out there an escrow would be a good idea for piece of mind for investor and to build trust within the Bismuth/Clarity and crypto community's  :-).

What is Clarity?
Clarity is a super stable version of Bismuth, which will be released separately. Clarity to Bismuth is what RedHat is to Fedora. New features will be tested in Bismuth first, and then added to Clarity later. This way, Bismuth will be secured by two networks (tesnet+mainnet) and Clarity will be secured by three (Bismuth testnet+Bismuth mainnet+Clarity mainnet). Clarity will be funded by ICO, and the funds will pour into Bismuth. Using this model, the Bismuth blockchain will not be clouded by funding and people will still have an opportunity to invest to get an instant share in Clarity.

more information to follow in the future :-)
hero member
Activity: 518
Merit: 500
First Asia-wide Asset Exchange
welcome @topcoiner!
nice to see more testers, finnaly this topic is getting alive.. Smiley
I'm glad to help with testing. What's about ICO, I think that it's not important to have an escrow. Do it like NXT had.
Pages:
Jump to: