Ilya Cherevkov
Ilya Cherevkov
> if I use 1000 machines, how long could I get a wallet? About 2266508063630125152355195571290813787833892065067721233 years with fastecdsa optimized code on 1000 8xCPU machines. `2^256 private keys/36000000 wallets with balance/1419120000000000...
Better to make passive arbitrage on the first step. You constantly move your offer at the edge of the spread while maintaining final target margin given you execute last two...
When I worked on my own triangular arbitrage bots, I implemented recursive algorithm to build any N-length sequence. But then... I realised, it doesn't have any sense. All you need...
But since Lumen allows N-length payment transactions, this could make sense to insta-capture additional margin... My bots on waves dex were exposed to a great risk in 4+ steps transactions,...
You are right about indention. I've added new commit. Regarding conditional set, SSLSocket should be actually `Celluloid::IO::SSLSocket`. And according to CelluloidIO [source](https://github.com/celluloid/celluloid-io/blob/master/lib/celluloid/io/ssl_socket.rb), it requires `Celluloid::IO::TCPSocket` object first as far as...
i don't think someone will share profitable bot ideas
Yea, it's implemented in unofficial V2
I don't actually use this library, i write on C#, so I'm not sure how to use it in this library. Take a look at this Java implementation https://github.com/platelminto/java-bittrex-2/blob/master/src/Bittrex.java There...
For me, wrapping code block with 3 back-ticks generates `` tag which is supposed to be used for one-liners. For multiline code `` tag should be wrapped by `` tag...
Looks like, setting `fenced_code_blocks: true` solves this issue and produces correct `` tags. `Redcarpet::Markdown.new(Redcarpet::Render::HTML, fenced_code_blocks: true)`