Добрый вечер!!!
А есть видео-инструкции на русском языке как делать уроки в Зомби!? Заранее спасибо за ответы!
What kind of infrastructure needed to run an Ethereum consortium blockchain ?
For a consortium chain used with [Quorum](https://github.com/jpmorganchase/quorum) (so no Pow and only authenticated nodes) I was wondering what ty... more
What's the difference between require and if ?
if `require` evaluates to `false` it terminates and reverts all changes to the state and to Ether balances. Can the same be achieved with an `if` ... more
How do I implement multiple constructors using Solidity?
As far as I know, one contract has just one constructor, but if I really need to implement multiple constructors using various number of arguments... more
How to return Array Of Structs from Solidity or the best workaround
Hello there! If I have in my contract a Array of Structs like: ``` User[] public users; ``` What Is the best method for return all users? Actual... more
Any explanation or source code for loomnetwork?
I want to have a look into loom's structure, is there any documents explain it?
Can someone share an example or the stack used by a data center class edge compute blockchain IaaS?
Has anyone seen examples of large scale edge network compute IaaS' nodea focused primarily on blockchain? I'm not referring to bundles of raspber... more
Why doesn't Solidity contain switch statments for control structures?
I realize that multiple If Else statments can be equvilant to a switch statment, but I assume this boils down to gas cost. more
How to return an array of structs from a view method?
I want to return an array of tuples (source from an array of structs) from one of my smart contract view functions. What's the most effective way ... more