Bitcoin Forum
May 02, 2024, 06:10:33 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 [88] 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 ... 405 »
1741  Bitcoin / Hardware / Re: Imersion cooling project on: March 21, 2022, 10:43:40 PM
Op, i would chose vnish (awesome miner) as that lets you use the monitoring software without extra cost, since you will be overclocking the miners, you need something like that.

Also, be careful with the PSU rating, some profiles on those custom firmware require a custom PSU, the solder on those gears is bad so make sure the fluid you use is of a very high quality.

Like willi i am also interested.
1742  Local / العربية (Arabic) / Re: الاتحاد الأروبي و حظر التعدين on: March 21, 2022, 09:36:53 PM
و لكن يمكن لشعوب هذه الدول الإستثمار في مجال التعدين في بلدان خارج الإتحاد، لهذا يبقى قرار التصويت ضد منع التعدين إيجابي للمستثمرين مما يشجع على إنضمام أفراد و شركات لينتج عنه التبني الجماعي.

حسب فهمي للقرار انه لم يكمن يشمل استثمار المواطنين الاوروبين في الخارج, مما يعني انه لم يكن ليغير شي بخصوص هده النقطة بل كان فقط سيوقف عمليات تعدين البتكوين داخل الاراضي الاوروبية والتي تكاد تكون معدومة من الاساس, والقلة المتبقية سوق تغادر مجبرة بدون اي قانون نظرا لان السوق الامريكي افضل بكثير, فمثلا تتحصل بعض شركات التعدين هناك على سعر تكلفة للكيلو وات تصل الى 2.5 سنت, هدا السعر لاتملكه حتى الشركات المنتجة للكهرباء في اي دولة في اوروبا, يعني انتهاء التعدين هناك هوا شبه شي اكيد ولكنه مسئلة وقت فقط.
1743  Bitcoin / Mining speculation / Re: 2022 Diff thread. on: March 21, 2022, 12:23:12 AM
ugly. +6%

Yup, those U.S large players don't play around, while everyone is busy with all the shit going on in the world they are adding exa hashes worth of hashrate faster than we are adding tera hashes, it looks like 300EH this year isn't too far fetched, I can't imagine what is going to happen if BTC price takes another huge hit and drop to 20k or so, what will these companies say to their investors? I assume the money they are spending isn't theirs, so how is it going to be?
1744  Bitcoin / Pools / Re: [∞ YH] solo.ckpool.org 2% fee solo mining 265 blocks solved! on: March 20, 2022, 11:10:19 PM
is it okay if i use exchange wallet as user? i mean is there any posibilities if i hit a block, the reward will gone if the exchange forbid mining reward?
thank you...

This will be a risky move taken for nothing, the exchange can just freeze your account and claim that you were doing money laundering shit, even if you were to prove that you got those 6.xx bitcoins sent to you from ckpool, they can still claim that you rented some hashrate using stolen money or anything like that, this is just 1 out of the so many excuses an exchange can come up with once you make a sudden deposit of about a quarter-million dollars.

how about online wallet for example trust wallet?

Trust wallet is a million times better than an online exchange, although, IIRC, only the IOS version is open-source, so if that matters to you, make sure you read about it, if you want to be more careful about which wallet to use, check the wallet software section and pick one.
1745  Bitcoin / Mining software (miners) / Re: cgminer - blockchain height in coinbase transaction on: March 20, 2022, 03:13:29 PM
Good question, I was thinking exactly the same. After a quick search through the Bitcoin core code, I couldn't find any reference of the height defined as signed integer either.

Maybe there are other ints in the code that have to signed and they wanted to avoid mixing both signed and unsigned ints in the same function as that would be slower than using either one on it's own.

Anyways, one of the folks who wrote that code is still somehow active in here, he 'might' be able to answer your question via PM if you really are eager to know.
1746  Bitcoin / Mining software (miners) / Re: cgminer - blockchain height in coinbase transaction on: March 20, 2022, 10:48:53 AM
Indeed it's a signed integer Roll Eyes Ofc, it's one bit less then...

But why? What is the need for a signed integer in this code? It is not like val can be negative in the first place, I know some operations are performed faster with signed ints in c but with todays hardware the difference is likely nothing, in fact, a few operations like division will be faster with unsigned ints.

Maybe they benched marked the code back then and so happened signed was a bit faster, which might have changed with today's hardware.

1747  Bitcoin / Mining software (miners) / Re: cgminer - blockchain height in coinbase transaction on: March 19, 2022, 10:08:22 PM
Could somebody please explain why the limits for the byte length have always been set way lower than what the little-endian encoding would allow?
E.g. length 1 would allow for 255

That is just the number of combinations of bits you can have in 8 bits, so if you start with 0000-0000 all the way without duplicates, you should have a total of 256 (including 0) different sets.

That is called an unsigned 8 bit which can be represented by 2^8 - 1 = 255

The value in the code you posted is a signed integer and one bit will be used as a flag so now you have xxxx-xxx1 which can be represented as 2^7 - 1 = 127, anything above 127 will be 2 bytes and 2 bytes of unsigned int should be (2^15)-1 = -+32767 but the code says 16511 is the limit which means according to this 1 bit is used to determine the number of extra bytes which is represented in 0 in the above ( xxxx-xx10-xxxx-xxxx) and that will give you 2^14 +127 = 16511, next will be 3 bytes or  2^21 + 16511 = 2113663 and so on.

Quote
The number of trailing zero bits in the first byte indicates how many subsequent bytes there are. This allows the number of bytes in an encoded integer to be efficiently determined with a single instruction (e.g., BSF or TZCNT) on most modern processors.

Source: https://github.com/stepchowfun/typical

Edited: added more details.
1748  Bitcoin / Hardware / Re: Just purchased an S9 Miner off Ebay and it has one heatsink missing? Still Mines on: March 19, 2022, 09:09:44 PM
Board 8 has a heatsink totally missing YET it is still hashing ok??

How can this be? I presumed chips were all in series, so if one goes down the rest/all do??

You are confusing terms here, heatsink is only used for cooling, the miner can run without any heatsink attached (well, not for a very long time, but you get the point!), a missing chip on the other hand will stop the miner from running, but according to your image, it seems that the 63 chips are there, also judging by the temps, it doesn't seem like there is any missing heatsink.

My guess is that you are counting the empty slots or the heatsink at the backside of the board, the S9 has a few "missing" heatsinks at the back by default (IIRC it's a total of 12 missing) and the front side has 63 heatsinks.
1749  Bitcoin / Mining speculation / Re: 2022 Diff thread. on: March 19, 2022, 12:27:26 AM
Quote
Current Pace:   105.8447%  (178 / 168.17 expected, 9.83 ahead)
Previous Retarget:   Yesterday at 7:33 PM  (-0.3543%)

So -0.35% after seeing -4% somewhere in the middle of the last epoch, despite the war and gas prices difficulty managed to stay almost, we know that there is a good possibility that a large number of mining farms in Ukrian had to shut down, but it seems that the large U.S players compensated with the gears they keep bringing online.




1750  Other / Politics & Society / Re: Why usa dont invade kuwait ? on: March 18, 2022, 10:15:47 PM
Quote
Why usa dont invade kuwait ?

It must have slipped their minds, why not send them an email?
1751  Local / العربية (Arabic) / Re: طريقة ذكية للنصب [تحذير] on: March 18, 2022, 09:36:42 PM
لم أفهم تحليلك يا صديقي. هل تقصد أنه من الممكن حقا الالتفاف على طريقة التحيل هذه و النجاح بارسال المبلغ الذي بالعنوان الى عنوان اخر ليس خاصا بالنصابين؟

اعتقد انه يقصد ذلك فعلا, وهدا ماقد اشرت اليه في منشوري السابق, ولكن اعتقد ان الاخ GxSTxV "يتوقع" ان شخص اخر قام بتحويل العملات الاخرى وهدا مالا يمكن معرفته لانه يمكن ان يكون نفس النصاب الذي نشر تلك المفاتيح هوا من قام بتحويل العملات.

1752  Local / العربية (Arabic) / Re: طريقة ذكية للنصب [تحذير] on: March 17, 2022, 06:31:31 PM
بما أن الضحية سيكون لديه المفتاح الخاص للعنوان حتى يطمع بارسال التوكن الى عنوانه الخاص، هل من الممكن تقنيا أن يقوم ببرمجة بوت جديد قادر على تعطيل عمل البوت الخاص بالمتحيل أو بوت اخر باعدادات تمكنه من استخراج التوكن؟

نعم بكل تأكيد, البوت عبارة عن برنامج مثل المحفظة يقوم بارسال الاثيريوم فور وصولها, يمكن للضحية او نصاب اخر برمجة نفس الكود وسيكون الرابح بينهم هوا الشخص الذي يتملك القدر الاكبر من الخبرة حيت ان تحديد ال gas سيكون مهم, ايضا سرعة عمل الكود وعامل التوقيت والحظ سيكون له دور كبير في هده المسئلة, فيمكن ان يتم تحويل اموال كل ضحية لاحد النصابين وليس كلها من نصيب النصاب الاول.
1753  Bitcoin / Pools / Re: [∞ YH] solo.ckpool.org 2% fee solo mining 265 blocks solved! on: March 17, 2022, 11:12:16 AM
Many thanks for taking time to reply, I just have my BTC address in the worker field in all my Miners, when I query the stats you are right it show the total hash rate of all of them and the total of workers. But when I look at each miner separately They have a different bestshare which made me thinks they are working independently for the same worker but this could duplicate the work and waste hash power. Angry

If you want to see each miner on it's own just follow what phill wrote, ckpool will still show the best share of all miners at the top of the page.

As far as duplicate work goes, do not even worry about it, it won't happen no matter how you configure your miners.
1754  Local / العربية (Arabic) / Re: الاتحاد الأروبي و حظر التعدين on: March 17, 2022, 12:45:02 AM
بالنسبة للتعدين في اوروبا فهو شبه غير موجود في الاساس نظرا للتكلفة العالية للكهرباء, لا اعتقد انه دول الاتحاد الاوروبي مجتعمة تمتلك اكتر من 10% الهاش ريت الاجمالي الموجود في العالم, حظر التعدين في دولة مثل امريكيا الان او الصين سابقا يمكن ان يكون له تأثير اما اوروبا فهي ببساطة خارج المعادلة.

اكبر دول للتعدين في اوروبا هي ايرلندا التي تمتلك حوالي 4.6% يليها المانية ب 4.4%, وباقي الدول لا تمتلك الا القليل.

مصدر النسب هوا دراسة جامعة كامبردج في هدا الرابط https://ccaf.io/cbeci/mining_map

طبعا اخر تحديث للدراسة يعتبر قديم نسبيا, وبناء على اطلاعي المستمر على عمليات التعدين اتوقع ان هده النسب انخفضت الى النص تقريبا.
1755  Bitcoin / Mining speculation / Re: S17 and T17 profitibily at 38k bitcoin on: March 16, 2022, 10:59:18 PM
How u do the math sir

I am new ... when I check online
 It say 50 cents to $1.5 a day after electricity

Can u explain please I might be calculating it wrong

If you don't want to do the manual calculation as phill did, you can always use something like https://whattomine.com/miners, just make sure you enter your power rate in the top-right corner and hit enter, and then search for the miner you want to check and the results will be fairly accurate based on current price and difficulty.

**keep in mind the power cost must be entered in dollars not cents, so if you pay 5 cents per kWh you must divide it by 100 and type 0.05.
1756  Bitcoin / Pools / Re: [∞ YH] solo.ckpool.org 2% fee solo mining 265 blocks solved! on: March 16, 2022, 09:22:43 PM
Hi Guys when I point 3 workers to Ckpool do they hash as one or separate?

It depends on how you set them up, if they use the same exact worker name they will show as one miner with all the hashrate combined, if you change the worker name after the (dot) they will be separated in the pool details but still workers under the same wallet address will show a combined total hash rate at the top of the status page.
1757  Bitcoin / Hardware / Re: Running s19 with one board removed on: March 16, 2022, 12:47:42 AM
Thank you for the only useful reply. Talked to some other people on the issue and they said the same

All that these fine gentlemen said is true, it's simple physics which nobody can argue about, but (a big one) the effect of removing one hash board isn't exactly that huge, the impact on temps isn't all that bad, the two boards will run cooler if a 3rd dead hashboard is there (better airflow + the heatsinks on the head board will absorb some of the heat from the other working hash boards), but the two boards will still run cool enough regardless, they do get less airflow compared to a full miner, but the heat that was generated by the 3rd board is no longer there which helps to balance things out.

I tried that on tens of S9s, the effect on temps is little to nothing, nothing major that had me modify anything, so really, the only way to know would be to test your miner, do a before and after test, I highly doubt the temps will vary widely, but just to be safe.
1758  Local / العربية (Arabic) / Re: رسوم الاثريوم on: March 15, 2022, 11:37:56 PM
الرسوم منخفضة منذ فترة, العامل الرئيسي في اعتقادي هوا السوق الهابط الذي نمر به, الرسوم ترتفع في حال كان السوق صاعد وكان هناك العديد من العملات الجديدة و ال ICOs او IDOs والكتير من البيع والشراء على Uniswap وغيرها من المنصات, وايضا ترتفع في بادية انهيار الاسعار حيث يهرع الكثيرون لبيع عملاتهم ويدفعون مبالغ ضخمة للخروج حيت تصل الرسوم في تلك الاوقات الى 500 Gwei واكثر, اما في فترات "الركود" فمن الطبيعي ان تكون الرسوم مابين 10 الى 15 Gwei.

افضل الاوقات لعمل اي تحويل يكون حوالي الفجر بتوقيت قرينيتش, وافضل ايام الاسبوع يكون يوم السبت, في حال الارسال كان غير مرتبط بوقت زمني مثلا (تحويل مباشر خارج نطاق المنصات للامركزية) يمكن وضع 10 Gwei كرسوم وسوف يتم تأكيدها في فترات الليل المتأخرة بنسبة كبيرة جدا جدا, في حال كنت تنوي شراء او بيع والتحويل يجب ان يتم بسرعة استقيظ في فترة الفجر ودع المحفظة تحدد قيمة الرسوم وعلى الاغلب ستدفع اقل من 15 Gwei.
1759  Local / العربية (Arabic) / Re: طريقة ذكية للنصب [تحذير] on: March 15, 2022, 10:45:35 PM
ذكر جيدا هذه الطريقة و قد قرأت عن العديد ممن وقعوا ضحيتها. لكن على حد علمي فان ما قد يتراءى للضحية على أنه محفظة تحوي عملة معينة بامكانه الاستحواذ عليها هي في الأصل عقد ذكي تم تحديد قواعده بأن يرسل أي مبلغ من الايثيريوم (أذكر هذا يحصل على شبكة ايليكتروم) يصل لعنوان العقد الى عنوان اخر مملوك لصاحب العقد. كل ما عليه القيام به هو نشر المفتاح الخاص لذلك العقد ليتمكن من ايقاع عدد أكبر من الضحايا. العقود الذكية يمكن برمجتها وفقا لشروط عدة و لا أعرف ان كان هذا بالضبط ما تقصدونه بالبوتات فأنا فهمت أن هناك بوت يعمل بطريقة منفصلة و ليس مدمجا في كود العقد.

لا اعتقد ان الخدعة تتم ,عن طريق العقود الذكية, حيث ان الضحية سيرسل عملة ايثيريوم على layer1 وهنا لايوجد اي امكانية لبرمجة اي شي داخل اي عقد, المحفظة يكون رصيدها من الايثيريوم صفر ولكي يتمكن الضحية من نقل العملات الاخرى التي وضعها النصاب الضحية يرسل عملة ايثيريوم لاستخدامها ك gas والبوت يكون مبرمج باي لغة برمجة وتكون وضيفته نقل عملة الاثيريوم نفسها لعنوان اخر يمتلكه النصاب فور وصول المبلغ, حيت يقوم البوت او الكود بعمل سكان على كل التحويلات الواردة في كل تانية او جزء من التانية ويقوم بتحويلها مباشرة قبل ان يتمكن اي من الضحاية من استخدام ذلك المبلغ ك gas لنقل العملة الاخرى.

طبعا يمكن ان يستعمل النصاب عملة لاقيمة لها او عملة قام هوا بانشاءها ويكون في عقد العملة قاعدة شرطية معينة تمنع ارسال العملة الى اي عنوان الى عنوانه يملكه النصاب نفسه, ولكن هده الحيلة من الصعب ان تنجح لان معظم الضحاية سوف يركزون على نوع العملة, وفي العادة تكون عملات مشهورة ومعروفة وذات قيمة, احد المحافظ التي اذكرها كانت تحتوي على تقريبا حوالي 10 الاف دولار usdt وكان الضحاية يرسلون قيم صغيرة من الايثيريوم لاخراج ال usdt ولكن كانت العملات المرسلة تتحول مباشرة الى عنوان اخر ولم تتحرك ال usdt من مكانها.

 
1760  Bitcoin / Mining support / Re: Where to fix your Asic miners. on: March 15, 2022, 08:22:43 PM
I am not sure why you think I have anything against you or your company, you were probably the first company I listed, I merited your previous post for the efforts and to help you rank up to bypass the post limit.

The goal of this topic was and still is to connect people with dead miners to people who fix them, but that does not mean I should not talk about some companies that have 6 months delay, but again, if you are not happy reading the negative reviews here, either improve your performance or create your own topic.
Pages: « 1 ... 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 [88] 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 ... 405 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!