Alex Siman
Alex Siman
Create Fiddle for JScala like: http://jsfiddle.net/ http://cljsfiddle.net/ It can be run here: http://fiddle.jscala.org or here: http://run.jscala.org
It doesn't make sense to save the date when an activity was inserted into Postgres DB, because DB can be recreated based on Substrate events any time.
First of all, thank you for the amazing technology you are developing 👍 We are developing a PoS blockchain (based on Tendermint consensus) for due diligence and decentralized governance of...
Any account should be able to review any other space on Subsocial. We can reuse `Post`s with a new extension: `Review` ## Software Desing ```rust pub struct AccountInSpace { account:...
Don't check for CID length, use `cid` lib: https://github.com/multiformats/rust-cid#usage ```rust use cid::Cid; use std::convert::TryFrom; let out = Cid::try_from(data).unwrap(); ``` - [ ] Update in pre-2 - [ ] Update in...
From @dylgal:matrix.org on Riot: Bigger, better, greater. Unleash the full potential of PANIC for Polkadot (our validator monitoring tool) v2 with its brand new UI: 1. Tailor-made for Substrate monitoring...
We have around 10 storage items that return `Vec` of ids, like `replyIdsByPostIds`. These vecs are not used in runtime logic and mostly consumed by the clients (for example Subsocial's...
Maybe it's better to use `multi-owners` pallet to manage posts' co-authors, it it will not be an overkill.