Chase Fleming
Chase Fleming
### Issue to be solved To support suggested wallet features in Discovery, FCL needs to send over suggested features to the Discovery API a dev sets in the config. Syntax...
### Issue to be solved Define spec for notifications in FCL ### Suggest A Solution _No response_ ### What are you currently working on that this is blocking? _No response_
### Issue to be solved There are currently a few issues blocking FCL from working in React Native. Would be nice to get the issues resolved so that people can...
## Issue There is no explanation on the [FCL events](https://developers.flow.com/tools/fcl-js/reference/api#events) docs for how to derive the event name to put inside of `fcl.events()`. Someone has to find the format on...
### Issue to be solved Storage iteration is a new feature in Cadence, yet it requires devs to write a cadence script to see what is in an account. It...
`invariant` from the `util-invariant` package was created before the logger package. It should be converted to use `util-logger` under the hood. In it's current state, it would replace the console.error...
Add the crescendo network to anywhere it needs to be. For example, `flow.json` needs access node setup and anywhere in the code where something like mainnet or testnet is supported...
When installing dependencies using the Dependency Manager, the subsequent step involves adding the contracts you wish to deploy to the `deployments` section of your `flow.json`. This can be approached in...
When adding a contract with Dependency Manager it would be nice to add a alias for a dependency. Maybe something like this: `flow deps add testnet://35717efbbce11c74.Find --alias mainnet://097bafa4e0b48eef` Additionally, it...
If I have the following flow.json: ``` { "networks": { "emulator": "127.0.0.1:3569", "mainnet": "access.mainnet.nodes.onflow.org:9000", "sandboxnet": "access.sandboxnet.nodes.onflow.org:9000", "testnet": "access.devnet.nodes.onflow.org:9000" }, "accounts": { "emulator-account": { "address": "f8d6e0586b0a20c7", "key": "09f3d3a54819c8004cb8b71169f0caf6f9df4528fce015ec0302797c15051d69" } }, "deployments":...