Dylan Verstraete
Dylan Verstraete
See the original comment, I have to construct a `consensus::ReceiptWithBloom` from the rpc one
Makes sense that `rlp::Encodable` should be implemented to all beforementioned types by @prestwich
for transactions encoding I do this right now: ```rs pub struct Transaction(pub alloy::rpc::types::eth::Transaction); impl BlockItem for Transaction { fn to_bytes(&self) -> Vec { match self.0.transaction_type { Some(0) => { let...
Added flags to `rivined`: * `-c` "stagingCertificate", indicates if a staging certificate should be used. * `-e` "hostExplorer", indicates if we should host the explorer ourself. * `-caddy-domains` list of...
My findings on Graphql implementations for frontend applications. Apollo Graphql : [https://github.com/apollographql](https://github.com/apollographql) Which can be used in React and Vue. For the explorer frontend we will be focussing on the...
Right now it's not possible to retrieve a transaction id for an output his childinput. Picture explains
Related issue [https://github.com/threefoldtech/rivine-chain-explorer/issues/8](https://github.com/threefoldtech/rivine-chain-explorer/issues/8)
PR is ready, needs to be tested in production https://github.com/threefoldtech/rivine/pull/511
> What benefits do we gain by checking that this validator becomes the next block author? Currently, this remains unclear to me and to determine the right approach, I need...
> If all validators send transactions and all fees go every time to one of them (block author) how the validators’ accounts can be drained? Distribution of contracts to be...