Greg
Greg
Currently, the CLI uses gRPC as a way to communicate with the access node, since HTTP API was also implemented on the access node, and in the Go SDK we...
The CLI is getting rate-limited when requesting the user preference from the mixpanel. We need to refactor the way this works so we don't send all those requests. We could...
I believe it would be better to refactor the keys generate service API back to how it was before the key derive functionality: https://github.com/onflow/flow-cli/blob/master/pkg/flowkit/services/keys.go#L56 We should instead extract this to...
We should have the CLI check all the accounts in flow.json and determine if an account is a mainnet account and if it contains the secret key, we should then...
We want to support the creation of testnet and mainnet accounts by using APIs instead of manual processes. We should completely remove the manual process for testnet and use the...
### Issue To Be Solved The command layer: https://github.com/onflow/flow-cli/tree/master/internal is lacking tests which has lead to multiple bugs with typos etc because it requires manual testing to detect that. ###...
Implement support for new contract import schema as defined in FLIP https://github.com/onflow/flow/blob/master/flips/2022-03-23-contract-imports-syntax.md DOD: - [ ] implement the schema - [ ] write the tests - [ ] write documentation...
The CLI should support the new emulator snapshot management feature developed by @bluesign Emulator exposes a new emulator admin API on `/emulator` which exposes new functionality such as snapshot management....
Creating a new account on testnet consists of several steps: - creating keys using `flow keys generate` - going to faucet and inserting those keys - copying the create account...
After the initial discovery, the best way to proceed with the integration of dev-tools into CLI is to set up an environment for the dev tool as part of the...