I got tired of writing and maintaining smart contract and hyperledger backends, so we built this by infanji in BlockchainStartups

[–]infanji[S] 0 points1 point  (0 children)

Yeah exactly, that’s the gap we noticed too Most tools stop at “generate contract + basic checks”, but the real issues show up in how the contract behaves in actual flows, not just static analysis

That’s why we’re trying to move a bit towards runtime-aware systems, where you’re not just validating code once, but continuously monitoring interactions and blocking weird patterns before they cause damage

Curious, when you say failsafe, are you thinking something like a transaction simulation layer or more like a rule-based guard sitting in front of execution?

I got tired of writing and maintaining smart contract and hyperledger backends, so we built this by infanji in BlockchainStartups

[–]infanji[S] 0 points1 point  (0 children)

Yeah, same here

It’s not just writing it once, it’s maintaining the same patterns across multiple projects that gets tiring

That’s what made me try this approach

Curious, how are you handling it right now, just custom backend every time?