Bitcoin Forum
June 21, 2024, 03:07:00 AM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 [6] 7 8 9 10 11 12 »  All
  Print  
Author Topic: [RELEASED]BitMoney.i2p - Centralized|Const solo POW|Unlimited supply|Instant tx  (Read 14229 times)
tamara163
Legendary
*
Offline Offline

Activity: 1027
Merit: 1000


View Profile
November 18, 2015, 11:08:53 AM
 #101

how to start mining?

If you already have connected client, just input any job name, wishful income and click "add job".
wishful income:what value?
z0rg1nc (OP)
Member
**
Offline Offline

Activity: 108
Merit: 10


View Profile
November 18, 2015, 11:10:54 AM
 #102

how to start mining?

If you already have connected client, just input any job name, wishful income and click "add job".
wishful income:what value?

Start with 1 ,2, any job name, add job. And i recommend to use 1 task count, it'll lag otherwise.

Looking the cheapest and fastest microtransactions?They are already here
raetsch
Legendary
*
Offline Offline

Activity: 957
Merit: 1006



View Profile
November 18, 2015, 12:32:07 PM
 #103

Just want to note - built-in native miner is not enabled by default, so if you see something much slower than 1btm for 1min, probably it's not turned on. It can be enabled (as and proper thread count) in 'Main' -> 'Local mining' -> 'Settings'. I anticipated different quotes on exchange, probably that's the cause.

Where can i find about the actual Speed of the local miner?

I use https://github.com/technion/libscrypt code. There were some performance tests in the net for the lib but i can't find it now. All parameters were given (except out buflen, it depends on task balanceGain, several bytes (2-3) usually) you can try to test it by yourself. libscrypt_x64(86).so (as and .dll) appears in working dir after the first start of the miner too.

On my cpu i have (1 hash calculation, native vs managed):
1thread: 90ms vs 1200ms
4thread: 37ms vs 474ms

So i can mine with rate 1btm/(37ms*2048) = 1 btm / 75.776s for 4 thread in average.

P.S. On linux you should resize local mining settings window to see 'linux (x86\x64)' option, it's hiding sometimes.

i had a look at the code, but i don't know how to measure 1hash calculation time.
TripleA
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
November 18, 2015, 12:56:29 PM
 #104

ok,works
and how can I get your wallet address?

In the main menu click "Wallet">"Register new". Input information and choose a password. Then "Wallet">"Login".
All the same later with exchange account.
Hope once we'll translate manual into your language.
May be someone wants to help with translations? Smiley
tamara163
Legendary
*
Offline Offline

Activity: 1027
Merit: 1000


View Profile
November 18, 2015, 01:14:28 PM
 #105

ok,works
and how can I get your wallet address?

In the main menu click "Wallet">"Register new". Input information and choose a password. Then "Wallet">"Login".
All the same later with exchange account.
Hope once we'll translate manual into your language.
May be someone wants to help with translations? Smiley
thanks, I figured out everything except exchange
exchange registration I made,and then further until I understand
TripleA
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
November 18, 2015, 01:20:54 PM
 #106

ok,works
and how can I get your wallet address?

In the main menu click "Wallet">"Register new". Input information and choose a password. Then "Wallet">"Login".
All the same later with exchange account.
Hope once we'll translate manual into your language.
May be someone wants to help with translations? Smiley
thanks, I figured out everything except exchange
exchange registration I made,and then further until I understand

Here are mini guides about how to use exchange:
https://bitcointalk.org/index.php?topic=1241229.msg12950066#msg12950066
https://bitcointalk.org/index.php?topic=1241229.msg12950816#msg12950816
z0rg1nc (OP)
Member
**
Offline Offline

Activity: 108
Merit: 10


View Profile
November 18, 2015, 05:21:58 PM
 #107

i had a look at the code, but i don't know how to measure 1hash calculation time.

I guess compile the code to .so or .dll (or get them from BtiMoney's app dir), and try to invoke it repeatedly in some script (i heard Python has easy  interface to native c libs).
Signatures are (c#):

Code:
[DllImport(
    "libscrypt_x86.so",
    EntryPoint = "libscrypt_scrypt",
    CallingConvention = CallingConvention.Cdecl
)]
private static extern int LibscryptScrypt86(
    byte[] passwd,
    uint passwdlen,
    byte[] salt,
    uint saltlen,
    ulong n,
    uint r,
    uint p,
    byte[] buf,
    uint buflen
);

[DllImport(
    "libscrypt_x64.so",
    EntryPoint = "libscrypt_scrypt",
    CallingConvention = CallingConvention.Cdecl
)]
private static extern long LibscryptScrypt64(
    byte[] passwd,
    ulong passwdlen,
    byte[] salt,
    ulong saltlen,
    ulong n,
    uint r,
    uint p,
    byte[] buf,
    ulong buflen
);


[DllImport(
    "ScryptNativeWinDllx86.dll",
    EntryPoint = "crypto_scrypt",
    CallingConvention = CallingConvention.Cdecl
)]
private static extern int WindowsScrypt86(
    byte[] passwd,
    uint passwdlen,
    byte[] salt,
    uint saltlen,
    ulong n,
    uint r,
    uint p,
    byte[] buf,
    uint buflen
);

[DllImport(
    "ScryptNativeWinDllx64.dll",
    EntryPoint = "crypto_scrypt",
    CallingConvention = CallingConvention.Cdecl
)]
private static extern long WindowsScrypt64(
    byte[] passwd,
    ulong passwdlen,
    byte[] salt,
    ulong saltlen,
    ulong n,
    uint r,
    uint p,
    byte[] buf,
    ulong buflen
);

Passwd and salt - 32 length, n = 32768, r = 8, p = 1, buf - 3 length.

Looking the cheapest and fastest microtransactions?They are already here
raetsch
Legendary
*
Offline Offline

Activity: 957
Merit: 1006



View Profile
November 18, 2015, 10:07:29 PM
 #108

thx, will try it.

another thing:
problem on exchange:
 unexpected error: 'EAddNewOrderErrCodes.NotEnoughFunds'

i have 31BTM on exchange but cannot make an order, even with 1 btm.
tamara163
Legendary
*
Offline Offline

Activity: 1027
Merit: 1000


View Profile
November 18, 2015, 10:21:45 PM
 #109




do not get me to send coins to the Deposit address
what's wrong?
TripleA
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
November 18, 2015, 10:43:55 PM
 #110

thx, will try it.

another thing:
problem on exchange:
 unexpected error: 'EAddNewOrderErrCodes.NotEnoughFunds'

i have 31BTM on exchange but cannot make an order, even with 1 btm.

You can't sell (need BTC to sell), but you can buy BTC. Try to input price 300, qty 1 and Buy order for example .
raetsch
Legendary
*
Offline Offline

Activity: 957
Merit: 1006



View Profile
November 18, 2015, 10:46:49 PM
 #111

same error
TripleA
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
November 18, 2015, 10:50:50 PM
 #112

do not get me to send coins to the Deposit address
what's wrong?

There is other way to make deposit.
Try to follow this guide step by step https://bitcointalk.org/index.php?topic=1241229.msg12950066#msg12950066
What language do you speak? May be someone will translate you this most important part.


same error

Please make a screen of input order before you click "Add".
tamara163
Legendary
*
Offline Offline

Activity: 1027
Merit: 1000


View Profile
November 18, 2015, 10:58:30 PM
 #113

if there in the thread who speak Russian
help to understand with the exchange
raetsch
Legendary
*
Offline Offline

Activity: 957
Merit: 1006



View Profile
November 18, 2015, 11:04:27 PM
 #114



in my opinion exactly what you said Wink
TripleA
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
November 18, 2015, 11:11:45 PM
 #115

http://abload.de/img/erruzjzp.png

in my opinion exactly what you said Wink

Ah, it's my mistake. Thought your balance was 310, but it is 31 Smiley So try to input any value less then 31.

Notice that current best bid is 370, so you need at least 371 or more BTM to buy BTC.
raetsch
Legendary
*
Offline Offline

Activity: 957
Merit: 1006



View Profile
November 18, 2015, 11:31:22 PM
 #116

Uh, now i got it... Thx... Was already too late to find the solution myself  Tongue
z0rg1nc (OP)
Member
**
Offline Offline

Activity: 108
Merit: 10


View Profile
November 19, 2015, 07:58:22 AM
 #117

do not get me to send coins to the Deposit address
what's wrong?

Account GUID is not the wallet GUID, you have to do right click on account row, 'New deposit', enter value, then in deposit list view payment details with actual exchange wallet GUID, etc... It was already written here (guides from TripleA including).

Looking the cheapest and fastest microtransactions?They are already here
tamara163
Legendary
*
Offline Offline

Activity: 1027
Merit: 1000


View Profile
November 19, 2015, 12:35:34 PM
 #118


ok! I received your coins on the exchange.
next stage))
tamara163
Legendary
*
Offline Offline

Activity: 1027
Merit: 1000


View Profile
November 19, 2015, 12:52:30 PM
 #119

this coin for the elite?
all very difficult
planned normal exchange?
TripleA
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
November 19, 2015, 01:15:03 PM
 #120

this coin for the elite?
all very difficult
planned normal exchange?

No, it's for high privacy and fast transactions Smiley
The next step is here https://bitcointalk.org/index.php?topic=1241229.msg12950816#msg12950816
The interface of exchange is rather common for trading terminals.
Someday we'll add Bitmoney to other exchanges.
Pages: « 1 2 3 4 5 [6] 7 8 9 10 11 12 »  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!