Bitcoin Forum
May 25, 2024, 03:01:49 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 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 ... 128 »
1161  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Dinastycoin. Team members. CryptoNote. MANDATORY UPDATE. GUI-Wallet. on: February 15, 2018, 03:43:29 PM
also I forget to mention , that actually  i have bought DCY  from cryptopia and i did withdraw it through alpha btc , it was easy i just had to generate address through alpha btc  , i'm still confusing about this coin and Cryptonote coin , so i don't understand how i can track my coins ?  and  which exchange i should ask , Cryptopia or Btc Alpha , and sorry maybe because i'm beginner , my only fault  i wanted to make quick profit !!
Transfers of coins between exchanges (usually) are safe. But it depends more on the stock exchanges themselves. Cryptopia IMHO is a good reliable exchange, but it also has problems (delays) sometimes. Further, if the coin is sent from the exchange, it is sent successfully (usually).
I did not work with BTC-Alpha, but I think their support will solve your problem if you write to them.
In the future do not forget to specify the Payment ID.

Engage in arbitration is dangerous, because exchanges can (sometimes / often) block the deposit (temporarily).


Can you please help me? I want to mine for my cpu. I can not set up my wallet. I do not know which file to edit. Is not working. Can you help me with the correct link to mine for the CPU using Windows 64?

Which file should I configure? Can you send me the step by step?

Thank you!
use xmr-stack-cpu
https://github.com/fireice-uk/xmr-stak-cpu/releases

I use ver v1.3.0-1.5.0 (19 Jul 2017), new version do not like me.
I think, this most powerfull miner for CPU.
download https://github.com/fireice-uk/xmr-stak-cpu/releases/download/v1.3.0-1.5.0/xmr-stak-cpu-win64.zip

setting may seem complicated, but it's worth it.
This miner allows you to start mining on all or part of the cores, which can be convenient.

Note that the Intel processor cores are numbered from zero: 0, 1, 2, etc. (It seems so, but I'm not sure).
The cores of AMD processors are numbered through the number of threads (through one).
For example, I have Ryzen-7, 8 cores, 16 threads.
I numbered the cores as follows: 1, 3, 5, 7, 9, 11, 13, 15.
But it is possible and so: 0, 2, 4, 6, 8, 10, 12, 14.

An example of my configuration:
config.txt

Code:
/*
 * Thread configuration for each thread. Make sure it matches the number above.
 * low_power_mode - This mode will double the cache usage, and double the single thread performance. It will
 *                  consume much less power (as less cores are working), but will max out at around 80-85% of
 *                  the maximum performance.
 *
 * no_prefetch -    Some sytems can gain up to extra 5% here, but sometimes it will have no difference or make
 *                  things slower.
 *
 * affine_to_cpu -  This can be either false (no affinity), or the CPU core number. Note that on hyperthreading
 *                  systems it is better to assign threads to physical cores. On Windows this usually means selecting
 *                  even or odd numbered cpu numbers. For Linux it will be usually the lower CPU numbers, so for a 4
 *                  physical core CPU you should select cpu numbers 0-3.
 *
 * On the first run the miner will look at your system and suggest a basic configuration that will work,
 * you can try to tweak it from there to get the best performance.
 *
 * A filled out configuration should look like this:
 * "cpu_threads_conf" :
 * [
 *      { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 0 },
 *      { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 1 },
 * ],
 */


/* -----------------------------------------------------------------  */


"cpu_threads_conf":
     [
     { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 1},        /* ядро 1*/
     { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 3},        /* ядро 2*/
     { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 5},        /* ядро 3*/
     { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 7},        /* ядро 4*/
     { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 9},        /* ядро 5*/
     { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 11},       /* ядро 6*/
     { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 13},       /* ядро 7*/
     { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 15}        /* ядро 8*/
    
 ],
"cpu_threads_conf": 8,

/* -----------------------------------------------------------------  */
/* -----------------------------------------------------------------  */


/*
 * LARGE PAGE SUPPORT
 * Lare pages need a properly set up OS. It can be difficult if you are not used to systems administation,
 * but the performace results are worth the trouble - you will get around 20% boost. Slow memory mode is
 * meant as a backup, you won't get stellar results there. If you are running into trouble, especially
 * on Windows, please read the common issues in the README.
 *
 * By default we will try to allocate large pages. This means you need to "Run As Administrator" on Windows.
 * You need to edit your system's group policies to enable locking large pages. Here are the steps from MSDN
 *
 * 1. On the Start menu, click Run. In the Open box, type gpedit.msc.
 * 2. On the Local Group Policy Editor console, expand Computer Configuration, and then expand Windows Settings.
 * 3. Expand Security Settings, and then expand Local Policies.
 * 4. Select the User Rights Assignment folder.
 * 5. The policies will be displayed in the details pane.
 * 6. In the pane, double-click Lock pages in memory.
 * 7. In the Local Security Setting – Lock pages in memory dialog box, click Add User or Group.
 * 8. In the Select Users, Service Accounts, or Groups dialog box, add an account that you will run the miner on
 * 9. Reboot for change to take effect.
 *
 * Windows also tends to fragment memory a lot. If you are running on a system with 4-8GB of RAM you might need
 * to switch off all the auto-start applications and reboot to have a large enough chunk of contiguous memory.
 *
 * On Linux you will need to configure large page support "sudo sysctl -w vm.nr_hugepages=128" and increase your
 * ulimit -l. To do do this you need to add following lines to /etc/security/limits.conf - "* soft memlock 262144"
 * and "* hard memlock 262144". You can also do it Windows-style and simply run-as-root, but this is NOT
 * recommended for security reasons.
 *
 * Memory locking means that the kernel can't swap out the page to disk - something that is unlikey to happen on a
 * command line system that isn't starved of memory. I haven't observed any difference on a CLI Linux system between
 * locked and unlocked memory. If that is your setup see option "no_mlck".
 */

/*
 * use_slow_memory defines our behaviour with regards to large pages. There are three possible options here:
 * always  - Don't even try to use large pages. Always use slow memory.
 * warn    - We will try to use large pages, but fall back to slow memory if that fails.
 * no_mlck - This option is only relevant on Linux, where we can use large pages without locking memory.
 *           It will never use slow memory, but it won't attempt to mlock
 * never   - If we fail to allocate large pages we will print an error and exit.
 */


/* -----------------------------------------------------------------  */

"use_slow_memory" : "warn",
/* -----------------------------------------------------------------  */
/* -----------------------------------------------------------------  */



/*
 * NiceHash mode
 * nicehash_nonce - Limit the noce to 3 bytes as required by nicehash. This cuts all the safety margins, and
 *                  if a block isn't found within 30 minutes then you might run into nonce collisions. Number
 *                  of threads in this mode is hard-limited to 32.
 */

/* -----------------------------------------------------------------  */

"nicehash_nonce" : false,
/* -----------------------------------------------------------------  */
/* -----------------------------------------------------------------  */


/*
 * Manual hardware AES override
 *
 * Some VMs don't report AES capability correctly. You can set this value to true to enforce hardware AES or
 * to false to force disable AES or null to let the miner decide if AES is used.
 *
 * WARNING: setting this to true on a CPU that doesn't support hardware AES will crash the miner.
 */

/* -----------------------------------------------------------------  */

"aes_override" : null,

/* -----------------------------------------------------------------  */
/* -----------------------------------------------------------------  */




/*
 * TLS Settings
 * If you need real security, make sure tls_secure_algo is enabled (otherwise MITM attack can downgrade encryption
 * to trivially breakable stuff like DES and MD5), and verify the server's fingerprint through a trusted channel.
 *
 * use_tls         - This option will make us connect using Transport Layer Security.
 * tls_secure_algo - Use only secure algorithms. This will make us quit with an error if we can't negotiate a secure algo.
 * tls_fingerprint - Server's SHA256 fingerprint. If this string is non-empty then we will check the server's cert against it.
 */

/* -----------------------------------------------------------------  */

"use_tls" : false,
"tls_secure_algo" : false,
"tls_fingerprint" : "",

/* -----------------------------------------------------------------  */
/* -----------------------------------------------------------------  */



/*
 * pool_address  - Pool address should be in the form "pool.supportxmr.com:3333". Only stratum pools are supported.
 * wallet_address - Your wallet, or pool login.
 * pool_password  - Can be empty in most cases or "x".
 *
 * We feature pools up to 1MH/s. For a more complete list see M5M400's pool list at www.moneropools.com
 */

/* -----------------------------------------------------------------  */

"pool_address" : "poolmining1.dinastycoin.com:5555"
,

"wallet_address" : "YOUR_WALLET",
"pool_password" : "x",

/* -----------------------------------------------------------------  */
/* -----------------------------------------------------------------  */



/*
 * Network timeouts.
 * Because of the way this client is written it doesn't need to constantly talk (keep-alive) to the server to make
 * sure it is there. We detect a buggy / overloaded server by the call timeout. The default values will be ok for
 * nearly all cases. If they aren't the pool has most likely overload issues. Low call timeout values are preferable -
 * long timeouts mean that we waste hashes on potentially stale jobs. Connection report will tell you how long the
 * server usually takes to process our calls.
 *
 * call_timeout - How long should we wait for a response from the server before we assume it is dead and drop the connection.
 * retry_time - How long should we wait before another connection attempt.
 *                Both values are in seconds.
 * giveup_limit - Limit how many times we try to reconnect to the pool. Zero means no limit. Note that stak miners
 *                don't mine while the connection is lost, so your computer's power usage goes down to idle.
 */

/* -----------------------------------------------------------------  */

"call_timeout" : 10,
"retry_time" : 10,
"giveup_limit" : 0,

/* -----------------------------------------------------------------  */
/* -----------------------------------------------------------------  */



/*
 * Output control.
 * Since most people are used to miners printing all the time, that's what we do by default too. This is suboptimal
 * really, since you cannot see errors under pages and pages of text and performance stats. Given that we have internal
 * performance monitors, there is very little reason to spew out pages of text instead of concise reports.
 * Press 'h' (hashrate), 'r' (results) or 'c' (connection) to print reports.
 *
 * verbose_level - 0 - Don't print anything.
 *                 1 - Print intro, connection event, disconnect event
 *                 2 - All of level 1, and new job (block) event if the difficulty is different from the last job
 *                 3 - All of level 1, and new job (block) event in all cases, result submission event.
 *                 4 - All of level 3, and automatic hashrate report printing
 */

/* -----------------------------------------------------------------  */

"verbose_level" : 3,

/* -----------------------------------------------------------------  */
/* -----------------------------------------------------------------  */



/*
 * Automatic hashrate report
 *
 * h_print_time - How often, in seconds, should we print a hashrate report if verbose_level is set to 4.
 *                This option has no effect if verbose_level is not 4.
 */

/* -----------------------------------------------------------------  */

"h_print_time" : 60,

/* -----------------------------------------------------------------  */
/* -----------------------------------------------------------------  */



/*
 * Daemon mode
 *
 * If you are running the process in the background and you don't need the keyboard reports, set this to true.
 * This should solve the hashrate problems on some emulated terminals.
 */

/* -----------------------------------------------------------------  */

"daemon_mode" : false,

/* -----------------------------------------------------------------  */
/* -----------------------------------------------------------------  */



/*
 * Output file
 *
 * output_file  - This option will log all output to a file.
 *
 */

/* -----------------------------------------------------------------  */

"output_file" : "",

/* -----------------------------------------------------------------  */
/* -----------------------------------------------------------------  */



/*
 * Built-in web server
 * I like checking my hashrate on my phone. Don't you?
 * Keep in mind that you will need to set up port forwarding on your router if you want to access it from
 * outside of your home network. Ports lower than 1024 on Linux systems will require root.
 *
 * httpd_port - Port we should listen on. Default, 0, will switch off the server.
 */

/* -----------------------------------------------------------------  */

"httpd_port" : 0,

/* -----------------------------------------------------------------  */
/* -----------------------------------------------------------------  */



/*
 * prefer_ipv4 - IPv6 preference. If the host is available on both IPv4 and IPv6 net, which one should be choose?
 *               This setting will only be needed in 2020's. No need to worry about it now.
 */

/* -----------------------------------------------------------------  */

"prefer_ipv4" : true

/* -----------------------------------------------------------------  */
/* -----------------------------------------------------------------  */

My bat-file like this
Code:
timeout /t 3
xmr-stak-cpu.exe
pause

P.S. forgot about one very important point.
You must allow the use of a large segment of memory, you need to add your user as in the picture.
1162  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Dinastycoin. Team members. CryptoNote. MANDATORY UPDATE. GUI-Wallet. on: February 14, 2018, 09:17:05 PM
Hi. Yesterday I tried two different times to transfer coins (dinasty coin) from your site to cryptopia using my cryptopia wallet address. Both transactions say “done” but I never received the money in cryptopia. Is there a record that confirms the deposit?  Can I cancel those transactions?  Should I have sent the money to another wallet and then transferred to my cryptopia account?  

There is no record of any deposit in cryptopia. Not even “pending.”  Here are my TXID’s:
My first Transaction === >>> 55aead5859f722cde1788455f0fff4969fb26e98cb769ab8a71db744b49a0621
My Second transaction === >>> 3400805865a14cbf90e1df75f05c2da0570871f4855c57a1e63757367127166b

All coins based on cryptonight are difficult for beginners.
It's amazing why so many people can not study at least how to send coins to the exchange. On exchanges, for all users, only one address is used. One single address for ALL users, it is important to understand.
That the exchange could distinguish different users, you need to use the payment ID, otherwise the transfer is successful, but is credited to the purse of the exchange platform, not on your account.

If you write in support of the exchange, and indicate TXID, they will solve the problem and crediting your coins.
I can confess that I also made mistakes (twice) and also sent my coins in this way. But Cryptopia solved the problem and credited coins.

Pools rarely support a payment ID that coins really can be immediately taken to the stock exchange on your account. It is best to use a local wallet.

Maybe I said something incomprehensible, it's because English is not my native language.

In any case it is necessary that the developer MUST created FAQ how use cryptonight coin.

The DCY has a beautiful convenient and understandable graphic wallet, it's best to mine into it, and then send it to the stock exchange.
And you must specify the payment ID.
1163  Local / Альтернативные криптовалюты / Re: Аналитика, анализ, прогнозы, новости. on: February 08, 2018, 04:33:43 PM
очень интересный твит о запрете битка в Китае
Quote
Next time people tell you bitcoin is banned in China, show him this pic.
https://twitter.com/cnLedger/status/961516101321474048

1164  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ETZ]EtherZero - Fork 1:1 of Ethereum | 0 TX Fee | Masternode | 10000+ TPS on: February 08, 2018, 04:29:13 PM
Is there anything known when Yobits will open deposits and withdrawals? When will ETZ be listed on other exchanges?
Without this, I think the coin will die.
1165  Local / Альтернативные криптовалюты / Re: Аналитика, анализ, прогнозы, новости. on: February 08, 2018, 03:25:34 PM
Да на поло саппорта вообще нет, они 9-го декабря потеряли мои битшаирсы, я написал тикет на который они не отвечали больше месяца, после чего еще была потерянная копеечная транзакция DGD. Тут я уже даже тикеты не стал писать, решил забить на них и все. Но где-то в середине января они вернули битшаирсы и DGD на счет и закрыли тикет, так и не ответив на него.
Посмотри на почте письма. Я тоже на них нагонял, что они без ответа закрывают тикеты, а оказалось, что все-таки отвечают. Я уже через несколько месяцев потом нашел стандартную отписку типа "бла-бла-бла, спасибо за то что вы такой терпила".
финик еще дальше пошел в этом плане. отвечают типа "мы знаем про ваш тикет, если хотите можете уточнить свой запрос и подтвердить его актуальность".
зажали диамондики мои всех пользователей, засранцы, и морозятся.

Кстати, почему Классик скам ?
1166  Local / Альтернативные криптовалюты / Re: Аналитика, анализ, прогнозы, новости. on: February 07, 2018, 09:25:07 PM
периодически слышен лицемерный скулеж и нытье про "майнинг жрет электричество", "экологическая катастрофа" и т.п.
вот интересный  ролик о том, где можно брать анриал огромные объемы энергии
ЧТО, ЕСЛИ ПРЕВРАТИТЬ ПУСТЫНИ В СОЛНЕЧНЫЕ БАТАРЕИ?
А как охлаждать майнеры в пустыне? Cheesy Или нужно будет заниматься логистикой по перевозу этой энергии/прокладывать коммуникации. Возможно отчасти из-за солнечной энергии все сейчас в африке трутся.
да не, тут просто речь просто об электричестве, котором можно запитывать города и страны, электромобили, цеха, транспорт и пр., можно будет отказаться от ТЭЦ, газа в дома, смердячих на весь район шашлычных, бензиновых авто..
Вот он, кусочек нового мира, более чистый воздух, даже отказ от гидроэлектростанций (которые почему-то называют экологическими).
1167  Local / Альтернативные криптовалюты / Re: Аналитика, анализ, прогнозы, новости. on: February 07, 2018, 09:21:02 AM
периодически слышен лицемерный скулеж и нытье про "майнинг жрет электричество", "экологическая катастрофа" и т.п.
вот интересный  ролик о том, где можно брать анриал огромные объемы энергии
ЧТО, ЕСЛИ ПРЕВРАТИТЬ ПУСТЫНИ В СОЛНЕЧНЫЕ БАТАРЕИ?
1168  Local / Альтернативные криптовалюты / Re: Аналитика, анализ, прогнозы, новости. on: February 06, 2018, 06:49:27 PM
Товарищи, вот еще статейка есть интерсная, она не много не в тему... НО, это дает ответ на вопрос, почему китайские власти так против криптовалют. Статья большая, но дает ответ на главный вопрос, почему.
https://knife.media/social-ranking/

потрясающая статья, шокирующая. Вот где действительно пахнет жареным. Если это конечно правда, а не шутка автора.

На подобную тематику есть одна серия из цикла "Черное зеркало" (если я не путаю) про общество, вусмерть наглухо упоровшееся на рейтингах и штрихкодах на своих ебалах (образно), оценки людям там выставляют не только банки за погашенный кредит или оплаченный штраф, а любой человек другому просто за фальшивое вежливое общение, услужливость, чаевые, внешний вид и пр.

А вы ещё вот о чем подумайте относительно этой и подобных ей статей статей. Статья писалась явно не китайцем. Китай для не китайцев очень закрытая страна из-за языкового барьера. Настолько глубоко знать реалии современной китайской жизни и фактов из истории страны могут только специалисты-аналитики из определённого рода структур, а они подобные статьи повинуясь волне душевного порыва не пишут - статья явно заказная и написана для преследования некоторых целей. Основной посыл в статье - бойтесь всякого рода новых технологий - их придумали жидорептилойды специально против вас.

Учитывая, что уровень компьютерной грамотности в процентном соотношении и так не очень высокий относительно общей численности населения, то цель, которую преследует эта и подобные её статьи вполне прослеживается - убедить людей в том, что всё, что касается новых передовых технологий (а именно тех из них, влияние которых на текущий статус кво нежелательно и недостаточно управляется) - это все придумано неким абстрактным врагом специально против них. Чтобы их поработить и обмануть. А об обратной стороне медали - что внедрение и использование этих технологий может очень значительно облегчить и улучшить жизнь людей - об этом ни слова. Возможно потому, что это не в чьих-то интересах.

Вот, ещё статья подобного рода для сравнения -

Цифровое общество и конец истории
http://katyusha.org/view?id=9325

Это вовсе не значит, что технологии не могут использоваться главенствующим меньшинством против большинства - всегда использовались и будут использоваться. Но ведь они имеют и обратную сторону приложения силы и могут значительно способствовать увеличению личной свободы людей, если потратить время и глубоко изучить их потенциальные возможности. А об этом подобная пропаганда всегда умалчивает, гипертрофируя только тёмную сторону возможного их использования.
хочется верить, что статья заказная, типа киселевская пропаганда, но

вот есть статья уже не из ру-зоны
http://www.telegraph.co.uk/on-demand/2017/12/15/black-mirror-coming-true-china-rating-affects-home-transport/

также если гуглить названия из статьи, указанной ScarferNV, т.е. Zhima Credit или Ant Financial, то это не вымышленные названия
например в Википедии есть статья про социальную кредитную систему
https://en.wikipedia.org/wiki/Social_Credit_System

Возможно кто-либо здесь имеет связи с Китаем и мог бы подтвердить или опровергнуть эту информацию
иначе это пиздец имхо
1169  Local / Альтернативные криптовалюты / Re: Аналитика, анализ, прогнозы, новости. on: February 06, 2018, 12:04:15 PM
Роджер видит ситуацию в таком свете
https://twitter.com/rogerkver/status/960249180542373888
1170  Local / Альтернативные криптовалюты / Re: Аналитика, анализ, прогнозы, новости. on: February 06, 2018, 11:13:26 AM
на холод.кошелек финика за неделю +35к битков. слив продолжится походу ?
я даже не могу назвать это коррекцией, какая-то вакханалия сдувающегося пузыря, даже я к вашему офтопу подключился, ибо грустно наблюдать свои минуса.
какого ж хрена я не умный и не слил по 20 или даже по 15к - наверно думаю сейчас многие (и я тоже).
Такая сранотня.. на сколько там рынок недвиги упал в США в 2008, чтобы спровоцировать обрушение ? вроде лишь на 8-10% ? и понеслось дальше само..
а здесь на 70%. и уже нет аргументов о том, что крипта - не пузырь. или есть ?
ни в коем случае не пытаюсь подогреть фуд.
боюсь что свалимся опять на 3к.
1171  Local / Альтернативные криптовалюты / Re: Аналитика, анализ, прогнозы, новости. on: February 05, 2018, 09:43:27 PM
жду жду когда Сторж и Цивик в пике войдут, ну хотя бы на пару часов коршуном пиу! вниз.. чтоб аж рыбу видно стало на дне.. а нафига. Вот почему на этих монетах паники нет.
а за биток обидно  Angry
1172  Local / Альтернативные криптовалюты / Re: Аналитика, анализ, прогнозы, новости. on: February 05, 2018, 08:42:15 PM
причина дампа очевидна
Bitfinex и Tether поняли , что пахнет жареным , нужно опустить биток в цене , чтобы их балансы соответствовали и они смогли пройти аудит

При этом (после аудита) 2 лярда на закуп по суперскидкам и 1 лярд для разгона ракеты на луну уже готовы. 2 зайца убиты и заодно хомяки облысели  Grin

Чтобы пройти аудит им нужно подбить баланс на 3,3 млрд, им наоборот выгодно было бы сливать дорогой биток, либо у них реально баланс 3,3 лярда.
2,3 ?
как я понял, аудиторы в основном хотят получить ответ не "сколько", а где, на каких счетах, на чьи имена, кто вносил и пр.
Какая разница аудиторам кто вносил?!) Просто сам факт подтвердить наличия у Tether определенного кол-ва долларов равного количеству выпущенных USDT
если бы не было разницы, не существовало бы самого понятия верификаций с документами.
банкам/фрс/тоталитарным правительствам (= почти всем) не нравятся серые деньги.

мне больше всего непонятно, если/когда тизер сдуется как битконнект..  то почему сейчас часть крипты льют в тизер.. беда ?
хоть его доля на рынке и мала (по капитализации), но по объему сделок за сутки он на 3м месте.
1173  Local / Альтернативные криптовалюты / Re: Аналитика, анализ, прогнозы, новости. on: February 05, 2018, 04:33:10 PM
причина дампа очевидна
Bitfinex и Tether поняли , что пахнет жареным , нужно опустить биток в цене , чтобы их балансы соответствовали и они смогли пройти аудит

При этом (после аудита) 2 лярда на закуп по суперскидкам и 1 лярд для разгона ракеты на луну уже готовы. 2 зайца убиты и заодно хомяки облысели  Grin

Чтобы пройти аудит им нужно подбить баланс на 3,3 млрд, им наоборот выгодно было бы сливать дорогой биток, либо у них реально баланс 3,3 лярда.
2,3 ?
как я понял, аудиторы в основном хотят получить ответ не "сколько", а где, на каких счетах, на чьи имена, кто вносил и пр.
1174  Local / Альтернативные криптовалюты / Re: Аналитика, анализ, прогнозы, новости. on: February 05, 2018, 03:59:18 PM
Товарищи, вот еще статейка есть интерсная, она не много не в тему... НО, это дает ответ на вопрос, почему китайские власти так против криптовалют. Статья большая, но дает ответ на главный вопрос, почему.
https://knife.media/social-ranking/

потрясающая статья, шокирующая. Вот где действительно пахнет жареным. Если это конечно правда, а не шутка автора.

На подобную тематику есть одна серия из цикла "Черное зеркало" (если я не путаю) про общество, вусмерть наглухо упоровшееся на рейтингах и штрихкодах на своих ебалах (образно), оценки людям там выставляют не только банки за погашенный кредит или оплаченный штраф, а любой человек другому просто за фальшивое вежливое общение, услужливость, чаевые, внешний вид и пр.
1175  Local / Альтернативные криптовалюты / Re: Аналитика, анализ, прогнозы, новости. on: February 05, 2018, 03:45:12 PM
возможно вот это кошель манипулятора: 16ftSEQ4ctQFDtVZiUBusQUjRrGhM3JYwe
те 20к который были переведены 2 февраля, походу, переведены на кошель или биржи или хз кого: 1NDyJtNTjmwk5xPNhjgAMu4HDHigtobu1s, ибо вы посмотрите сколько там было монет: Всего получено   1,268,520.4030312 BTC
и судя по всему ими рынок сейчас и "кормят" по дешевке
любой кошель из топ-100 можно смело записывать в манипульский
https://bitinfocharts.com/ru/top-100-richest-bitcoin-addresses.html
1176  Local / Альтернативные криптовалюты / Re: Аналитика, анализ, прогнозы, новости. on: February 04, 2018, 09:11:11 PM
пока продолжается паника, вот вам интересный твит про битфайнексида (или как его там)
https://twitter.com/WhalePanda/status/960227614542761985

я помню, он (б-нексид, а не падна) даже на Чарли Ли наезжал разоблачительными статьями.
Не сказал бы, что прям так доверяю Чарли. Да, он слил свои лайты явно на инсайде дампа (хотя кто проверял, что слил), но сильно сомневаюсь, что он прям такой примитивный мошенник.

также есть и статья (а она уже вряд ли обрадует)
Растёт беспокойство в отношении того, что цена Биткойна была искусственно завышена
1177  Local / Альтернативные криптовалюты / Re: Аналитика, анализ, прогнозы, новости. on: February 02, 2018, 08:57:02 PM
https://coinspot.io/interesting/interview/tim-drejper-ya-poteryal-40-000-bitcoinov/
как мне кажется, очень интересная статья
1178  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Dinastycoin. Team members. CryptoNote. MANDATORY UPDATE. GUI-Wallet. on: February 02, 2018, 04:47:47 PM
thanks, did that. imported key and got a wallet closed message then nothing else happened
well, all confirmed transactions in the blockchain, I do not know how else to help.

If you are mined in two pools that compete .. if the pools are weak and with weak support - they could be on the fork (yes, it happens, it's normal .. ie for the miner it's bad, but that's the nature of the pool , which is not synchronized with the network due to any problems).
Then, after the pool is synchronized, some of the transactions are orphaned, they are discarded, and your earnings are lost.

therefore, miners are often faced with an ethical problem: to help decentralize the network (and move to a weaker pool) or work on a leading pool (and give it the ability to conduct an attack 51).
1179  Local / Альтернативные криптовалюты / Re: Аналитика, анализ, прогнозы, новости. on: February 02, 2018, 04:26:18 PM
все валится в дыру, всепропало, крипта пузырь, майнинг не выгоден
а видухи разгребают, как черти.
Причем они еще и дорожают, заказать не успеваю, пока кнопку нажимаю - уже нет, продаваны рассказывают о заказах на 8-10 карт в одни руки, и что гребут ведь.. 1060 3х гиговые, на 1070-1080 цены упоротые.

Вроде сейчас пора годовых отчетов ?
АМД хвалится прибылью и уже якобы признает одним из векторов ориентацию на майнеров (ну да, неспроста ж они Вегу подкрутили на майн).
пишут, что АМД якобы собирается больше карт сделать.
https://forklog.com/amd-uvelichit-vypusk-videokart-dlya-majninga/

К концу марта НВидия планировала то ли Ампер то ли Вольту презентовать (вроде Вольту).
АМД наверно свою Вегу-20 осенью выпустят.
1180  Local / Альтернативные криптовалюты / Re: Аналитика, анализ, прогнозы, новости. on: February 02, 2018, 03:00:46 PM
такое ощущение, что сейчас (биток) прольют в тизер, а он потом товой..

Quote
-Тётя Маша! Я вашу Галю товой... *мнет шапку*
- Раз "товой" значит женись!
- Да не, я её товой... - трахтором переехал

очень жаль будет, если финик накроется медным тазом, таки хорошая биржа, удобная.
Pages: « 1 ... 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 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 ... 128 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!