Janez Podhostnik
Janez Podhostnik
### Issue To Be Solved Currently it is not possible to check Cadence Paths for equality `path != (/storage/flowTokenVault as Path)` results in: `cannot apply binary operation != to types:...
## Description Cadence encourages a [capability-based security](https://en.wikipedia.org/wiki/Capability-based_security) model as described on the Flow [doc site](https://docs.onflow.org/cadence/language/capability-based-access-control). Capabilities are themselves a new concept that most Cadence programmers need to understand, but the...
Create the FLIP for reentrancy in cadence. TOC - What are reentrancy attacks? - What are reentrancy attacks in cadence? - What are the suggestions to make them harder?
Write a FLIP for how the first iteration of inclusion fees will look like on Flow.
## Problem Definition The programs cache contains elaborations of smart contracts. If the programs cache is reset because: - node restated - contract deployed - contract upgraded Programs cache is...
## Context Fee deduction happens at the end of the transaction, which allows malicious users to run heavy transactions while not having the funds to pay for them. Transactions where...
## Problem Definition Forgetting to upgrade contracts before a spork can result in a lot of extra work. We want to quickly and easily answer the question which core contracts...
## Problem Definition As the FVM matures, some settings are no longer needed. Continuing support for those settings increases the complexity of the code and the amount of code paths...
## Problem Definition This build on https://github.com/onflow/flow-go/issues/2785 Make some preliminary measurements of transaction saturation points depending on the 5 different parameters: - Script byte size - Total Arguments byte size...
### Issue To Be Solved The target of the balance capability in Flow core contracts here: - https://github.com/onflow/flow-core-contracts/blob/ed4310c774493f584d4eaea665c3b5e87617179d/contracts/FlowStorageFees.cdc#L69 - https://github.com/onflow/flow-core-contracts/blob/ed4310c774493f584d4eaea665c3b5e87617179d/contracts/FlowStorageFees.cdc#L119 - https://github.com/onflow/flow-core-contracts/blob/ed4310c774493f584d4eaea665c3b5e87617179d/contracts/FlowServiceAccount.cdc#L53 Is not verified that it is in fact...