├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── dependabot.yml ├── labels.yml ├── pull_request_template.md ├── release-drafter.yml └── workflows │ ├── add-issues-to-devx-project.yml │ ├── build-release.yaml │ ├── ci.yml │ ├── code-analysis.yml │ ├── dependency-review.yml │ ├── dependent-issues.yml │ ├── publish-release.yml │ ├── release-drafter.yml │ └── sync-labels.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yaml ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── SECURITY.md ├── check-headers.sh ├── cli-banner.svg ├── cli.gif ├── cmd └── flow │ └── main.go ├── common └── branding │ └── branding.go ├── docs ├── README.md ├── account-add-contract.md ├── account-remove-contract.md ├── account-staking-info.md ├── account-update-contract.md ├── build-transactions.md ├── complex-transactions.md ├── configuration.md ├── create-accounts.md ├── data-collection.md ├── decode-keys.md ├── decode-transactions.md ├── deploy-project-contracts.md ├── derive-keys.md ├── developer-updates │ ├── release-notes-v17.md │ ├── release-notes-v18.md │ ├── release-notes-v19.md │ ├── release-notes-v21.md │ ├── release-notes-v24.md │ ├── release-notes-v26.md │ └── release-notes-v28.md ├── emulator-snapshot.md ├── execute-scripts.md ├── generate-keys.md ├── get-accounts.md ├── get-blocks.md ├── get-collections.md ├── get-events.md ├── get-status.md ├── get-transactions.md ├── index.md ├── initialize-configuration.md ├── install.md ├── manage-configuration.md ├── project-app.md ├── project-contracts.md ├── run-tests.md ├── security.md ├── send-signed-transactions.md ├── send-transactions.md ├── sign-transaction.md ├── signature-generate.md ├── signature-verify.md ├── snapshot-save.md ├── start-emulator.md ├── super-commands.md ├── template.md └── tools.md ├── flowkit ├── README.md └── schema.json ├── go.mod ├── go.sum ├── install.ps1 ├── install.sh ├── internal ├── accounts │ ├── accounts.go │ ├── accounts_test.go │ ├── contract-add.go │ ├── contract-remove.go │ ├── contract-update.go │ ├── create-interactive.go │ ├── create.go │ ├── fund.go │ ├── fund_test.go │ ├── get.go │ ├── list.go │ └── staking-info.go ├── blocks │ ├── blocks.go │ ├── blocks_test.go │ └── get.go ├── cadence │ ├── cadence.go │ ├── languageserver │ │ └── languageserver.go │ ├── lint.go │ ├── lint_test.go │ └── linter.go ├── collections │ ├── collections.go │ ├── collections_test.go │ └── get.go ├── command │ ├── command.go │ ├── global_flags.go │ ├── global_flags_test.go │ ├── result.go │ └── template.go ├── config │ ├── add-account.go │ ├── add-contract.go │ ├── add-deployment.go │ ├── add-network.go │ ├── add-network_test.go │ ├── add.go │ ├── config.go │ ├── init.go │ ├── remove-account.go │ ├── remove-contract.go │ ├── remove-deployment.go │ ├── remove-network.go │ └── remove.go ├── dependencymanager │ ├── add.go │ ├── contract_sections.go │ ├── dependencies.go │ ├── dependencyinstaller.go │ ├── dependencyinstaller_test.go │ ├── discover.go │ ├── install.go │ ├── list.go │ └── list_test.go ├── emulator │ ├── snapshot.go │ ├── start.go │ └── start_test.go ├── events │ ├── events.go │ ├── events_test.go │ └── get.go ├── evm │ └── gateway.go ├── keys │ ├── decode.go │ ├── derive.go │ ├── generate.go │ ├── keys.go │ └── keys_test.go ├── project │ ├── deploy.go │ ├── project.go │ └── project_test.go ├── prompt │ ├── list.go │ ├── prompt.go │ ├── select.go │ ├── select_test.go │ ├── textinput.go │ └── textinput_test.go ├── quick │ ├── deploy.go │ └── run.go ├── schedule │ ├── cancel.go │ ├── contracts.go │ ├── get.go │ ├── list.go │ ├── parse.go │ ├── schedule.go │ ├── setup.go │ └── utils.go ├── scripts │ ├── execute.go │ ├── scripts.go │ └── scripts_test.go ├── settings │ ├── cmd.go │ ├── defaults.go │ ├── metrics.go │ └── settings.go ├── signatures │ ├── generate.go │ ├── signatures.go │ ├── signatures_test.go │ └── verify.go ├── snapshot │ ├── save.go │ └── snapshot.go ├── status │ └── status.go ├── super │ ├── dev.go │ ├── files.go │ ├── files_test.go │ ├── flix.go │ ├── flix_test.go │ ├── generate.go │ ├── generator │ │ ├── contract_template.go │ │ ├── file_template.go │ │ ├── fixtures │ │ │ ├── README_no_deps.md │ │ │ └── README_with_deps.md │ │ ├── generator.go │ │ ├── generator_test.go │ │ ├── script_template.go │ │ ├── templates │ │ │ ├── README.md.tmpl │ │ │ ├── README_defi_actions.md.tmpl │ │ │ ├── README_scheduled_transactions.md.tmpl │ │ │ ├── README_stablecoin.md.tmpl │ │ │ ├── contract_counter.cdc.tmpl │ │ │ ├── contract_counter_transaction_handler.cdc.tmpl │ │ │ ├── contract_counter_transaction_handler_test.cdc.tmpl │ │ │ ├── contract_example_connectors.cdc.tmpl │ │ │ ├── contract_example_connectors_test.cdc.tmpl │ │ │ ├── contract_init.cdc.tmpl │ │ │ ├── contract_init_test.cdc.tmpl │ │ │ ├── contract_piggybank.cdc.tmpl │ │ │ ├── contract_piggybank_test.cdc.tmpl │ │ │ ├── contract_usdfmock.cdc.tmpl │ │ │ ├── cursor │ │ │ │ ├── agent_rules.mdc.tmpl │ │ │ │ ├── flip.md.tmpl │ │ │ │ ├── index.md.tmpl │ │ │ │ └── quick_checklist.md.tmpl │ │ │ ├── empty_test.cdc.tmpl │ │ │ ├── script_counter.cdc.tmpl │ │ │ ├── script_get_piggybank_balance.cdc.tmpl │ │ │ ├── script_get_usdf_mock_balance.cdc.tmpl │ │ │ ├── script_get_usdf_mock_info.cdc.tmpl │ │ │ ├── script_get_user_usdf_balance.cdc.tmpl │ │ │ ├── script_init.cdc.tmpl │ │ │ ├── test_incrementfi_swap_on_fork.cdc.tmpl │ │ │ ├── transaction_counter.cdc.tmpl │ │ │ ├── transaction_deposit_to_piggybank.cdc.tmpl │ │ │ ├── transaction_deposit_via_sink.cdc.tmpl │ │ │ ├── transaction_incrementfi_swap.cdc.tmpl │ │ │ ├── transaction_init.cdc.tmpl │ │ │ ├── transaction_init_counter_transaction_handler.cdc.tmpl │ │ │ ├── transaction_init_schedule_manager.cdc.tmpl │ │ │ ├── transaction_mint_usdf_mock.cdc.tmpl │ │ │ ├── transaction_schedule_increment_counter.cdc.tmpl │ │ │ ├── transaction_setup_usdf_mock_vault.cdc.tmpl │ │ │ └── transaction_withdraw_from_piggybank.cdc.tmpl │ │ ├── test_template.go │ │ └── transaction_template.go │ ├── init.go │ ├── init_test.go │ ├── init_utils.go │ ├── output.go │ ├── project.go │ └── projecttypes.go ├── test │ ├── test.go │ └── test_test.go ├── tools │ ├── flowser.go │ └── wallet.go ├── transactions │ ├── build.go │ ├── decode.go │ ├── get-system.go │ ├── get.go │ ├── send-signed.go │ ├── send.go │ ├── sign.go │ ├── transactions.go │ └── transactions_test.go ├── util │ ├── accounts.go │ ├── accounts_test.go │ ├── emoji.go │ ├── files.go │ ├── stdlib.go │ ├── test.go │ ├── util.go │ └── util_test.go └── version │ └── version.go ├── testing └── better │ └── README.md └── version.txt /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/add-issues-to-devx-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.github/workflows/add-issues-to-devx-project.yml -------------------------------------------------------------------------------- /.github/workflows/build-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.github/workflows/build-release.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/code-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.github/workflows/code-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/dependent-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.github/workflows/dependent-issues.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/sync-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.github/workflows/sync-labels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/SECURITY.md -------------------------------------------------------------------------------- /check-headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/check-headers.sh -------------------------------------------------------------------------------- /cli-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/cli-banner.svg -------------------------------------------------------------------------------- /cli.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/cli.gif -------------------------------------------------------------------------------- /cmd/flow/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/cmd/flow/main.go -------------------------------------------------------------------------------- /common/branding/branding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/common/branding/branding.go -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/account-add-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/account-add-contract.md -------------------------------------------------------------------------------- /docs/account-remove-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/account-remove-contract.md -------------------------------------------------------------------------------- /docs/account-staking-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/account-staking-info.md -------------------------------------------------------------------------------- /docs/account-update-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/account-update-contract.md -------------------------------------------------------------------------------- /docs/build-transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/build-transactions.md -------------------------------------------------------------------------------- /docs/complex-transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/complex-transactions.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/create-accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/create-accounts.md -------------------------------------------------------------------------------- /docs/data-collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/data-collection.md -------------------------------------------------------------------------------- /docs/decode-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/decode-keys.md -------------------------------------------------------------------------------- /docs/decode-transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/decode-transactions.md -------------------------------------------------------------------------------- /docs/deploy-project-contracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/deploy-project-contracts.md -------------------------------------------------------------------------------- /docs/derive-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/derive-keys.md -------------------------------------------------------------------------------- /docs/developer-updates/release-notes-v17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/developer-updates/release-notes-v17.md -------------------------------------------------------------------------------- /docs/developer-updates/release-notes-v18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/developer-updates/release-notes-v18.md -------------------------------------------------------------------------------- /docs/developer-updates/release-notes-v19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/developer-updates/release-notes-v19.md -------------------------------------------------------------------------------- /docs/developer-updates/release-notes-v21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/developer-updates/release-notes-v21.md -------------------------------------------------------------------------------- /docs/developer-updates/release-notes-v24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/developer-updates/release-notes-v24.md -------------------------------------------------------------------------------- /docs/developer-updates/release-notes-v26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/developer-updates/release-notes-v26.md -------------------------------------------------------------------------------- /docs/developer-updates/release-notes-v28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/developer-updates/release-notes-v28.md -------------------------------------------------------------------------------- /docs/emulator-snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/emulator-snapshot.md -------------------------------------------------------------------------------- /docs/execute-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/execute-scripts.md -------------------------------------------------------------------------------- /docs/generate-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/generate-keys.md -------------------------------------------------------------------------------- /docs/get-accounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/get-accounts.md -------------------------------------------------------------------------------- /docs/get-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/get-blocks.md -------------------------------------------------------------------------------- /docs/get-collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/get-collections.md -------------------------------------------------------------------------------- /docs/get-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/get-events.md -------------------------------------------------------------------------------- /docs/get-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/get-status.md -------------------------------------------------------------------------------- /docs/get-transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/get-transactions.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/initialize-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/initialize-configuration.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/manage-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/manage-configuration.md -------------------------------------------------------------------------------- /docs/project-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/project-app.md -------------------------------------------------------------------------------- /docs/project-contracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/project-contracts.md -------------------------------------------------------------------------------- /docs/run-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/run-tests.md -------------------------------------------------------------------------------- /docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/security.md -------------------------------------------------------------------------------- /docs/send-signed-transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/send-signed-transactions.md -------------------------------------------------------------------------------- /docs/send-transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/send-transactions.md -------------------------------------------------------------------------------- /docs/sign-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/sign-transaction.md -------------------------------------------------------------------------------- /docs/signature-generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/signature-generate.md -------------------------------------------------------------------------------- /docs/signature-verify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/signature-verify.md -------------------------------------------------------------------------------- /docs/snapshot-save.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/snapshot-save.md -------------------------------------------------------------------------------- /docs/start-emulator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/start-emulator.md -------------------------------------------------------------------------------- /docs/super-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/super-commands.md -------------------------------------------------------------------------------- /docs/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/template.md -------------------------------------------------------------------------------- /docs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/docs/tools.md -------------------------------------------------------------------------------- /flowkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/flowkit/README.md -------------------------------------------------------------------------------- /flowkit/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/flowkit/schema.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/go.sum -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/install.ps1 -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/install.sh -------------------------------------------------------------------------------- /internal/accounts/accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/accounts/accounts.go -------------------------------------------------------------------------------- /internal/accounts/accounts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/accounts/accounts_test.go -------------------------------------------------------------------------------- /internal/accounts/contract-add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/accounts/contract-add.go -------------------------------------------------------------------------------- /internal/accounts/contract-remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/accounts/contract-remove.go -------------------------------------------------------------------------------- /internal/accounts/contract-update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/accounts/contract-update.go -------------------------------------------------------------------------------- /internal/accounts/create-interactive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/accounts/create-interactive.go -------------------------------------------------------------------------------- /internal/accounts/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/accounts/create.go -------------------------------------------------------------------------------- /internal/accounts/fund.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/accounts/fund.go -------------------------------------------------------------------------------- /internal/accounts/fund_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/accounts/fund_test.go -------------------------------------------------------------------------------- /internal/accounts/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/accounts/get.go -------------------------------------------------------------------------------- /internal/accounts/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/accounts/list.go -------------------------------------------------------------------------------- /internal/accounts/staking-info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/accounts/staking-info.go -------------------------------------------------------------------------------- /internal/blocks/blocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/blocks/blocks.go -------------------------------------------------------------------------------- /internal/blocks/blocks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/blocks/blocks_test.go -------------------------------------------------------------------------------- /internal/blocks/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/blocks/get.go -------------------------------------------------------------------------------- /internal/cadence/cadence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/cadence/cadence.go -------------------------------------------------------------------------------- /internal/cadence/languageserver/languageserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/cadence/languageserver/languageserver.go -------------------------------------------------------------------------------- /internal/cadence/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/cadence/lint.go -------------------------------------------------------------------------------- /internal/cadence/lint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/cadence/lint_test.go -------------------------------------------------------------------------------- /internal/cadence/linter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/cadence/linter.go -------------------------------------------------------------------------------- /internal/collections/collections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/collections/collections.go -------------------------------------------------------------------------------- /internal/collections/collections_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/collections/collections_test.go -------------------------------------------------------------------------------- /internal/collections/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/collections/get.go -------------------------------------------------------------------------------- /internal/command/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/command/command.go -------------------------------------------------------------------------------- /internal/command/global_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/command/global_flags.go -------------------------------------------------------------------------------- /internal/command/global_flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/command/global_flags_test.go -------------------------------------------------------------------------------- /internal/command/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/command/result.go -------------------------------------------------------------------------------- /internal/command/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/command/template.go -------------------------------------------------------------------------------- /internal/config/add-account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/config/add-account.go -------------------------------------------------------------------------------- /internal/config/add-contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/config/add-contract.go -------------------------------------------------------------------------------- /internal/config/add-deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/config/add-deployment.go -------------------------------------------------------------------------------- /internal/config/add-network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/config/add-network.go -------------------------------------------------------------------------------- /internal/config/add-network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/config/add-network_test.go -------------------------------------------------------------------------------- /internal/config/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/config/add.go -------------------------------------------------------------------------------- /internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/config/config.go -------------------------------------------------------------------------------- /internal/config/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/config/init.go -------------------------------------------------------------------------------- /internal/config/remove-account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/config/remove-account.go -------------------------------------------------------------------------------- /internal/config/remove-contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/config/remove-contract.go -------------------------------------------------------------------------------- /internal/config/remove-deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/config/remove-deployment.go -------------------------------------------------------------------------------- /internal/config/remove-network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/config/remove-network.go -------------------------------------------------------------------------------- /internal/config/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/config/remove.go -------------------------------------------------------------------------------- /internal/dependencymanager/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/dependencymanager/add.go -------------------------------------------------------------------------------- /internal/dependencymanager/contract_sections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/dependencymanager/contract_sections.go -------------------------------------------------------------------------------- /internal/dependencymanager/dependencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/dependencymanager/dependencies.go -------------------------------------------------------------------------------- /internal/dependencymanager/dependencyinstaller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/dependencymanager/dependencyinstaller.go -------------------------------------------------------------------------------- /internal/dependencymanager/dependencyinstaller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/dependencymanager/dependencyinstaller_test.go -------------------------------------------------------------------------------- /internal/dependencymanager/discover.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/dependencymanager/discover.go -------------------------------------------------------------------------------- /internal/dependencymanager/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/dependencymanager/install.go -------------------------------------------------------------------------------- /internal/dependencymanager/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/dependencymanager/list.go -------------------------------------------------------------------------------- /internal/dependencymanager/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/dependencymanager/list_test.go -------------------------------------------------------------------------------- /internal/emulator/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/emulator/snapshot.go -------------------------------------------------------------------------------- /internal/emulator/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/emulator/start.go -------------------------------------------------------------------------------- /internal/emulator/start_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/emulator/start_test.go -------------------------------------------------------------------------------- /internal/events/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/events/events.go -------------------------------------------------------------------------------- /internal/events/events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/events/events_test.go -------------------------------------------------------------------------------- /internal/events/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/events/get.go -------------------------------------------------------------------------------- /internal/evm/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/evm/gateway.go -------------------------------------------------------------------------------- /internal/keys/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/keys/decode.go -------------------------------------------------------------------------------- /internal/keys/derive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/keys/derive.go -------------------------------------------------------------------------------- /internal/keys/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/keys/generate.go -------------------------------------------------------------------------------- /internal/keys/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/keys/keys.go -------------------------------------------------------------------------------- /internal/keys/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/keys/keys_test.go -------------------------------------------------------------------------------- /internal/project/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/project/deploy.go -------------------------------------------------------------------------------- /internal/project/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/project/project.go -------------------------------------------------------------------------------- /internal/project/project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/project/project_test.go -------------------------------------------------------------------------------- /internal/prompt/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/prompt/list.go -------------------------------------------------------------------------------- /internal/prompt/prompt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/prompt/prompt.go -------------------------------------------------------------------------------- /internal/prompt/select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/prompt/select.go -------------------------------------------------------------------------------- /internal/prompt/select_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/prompt/select_test.go -------------------------------------------------------------------------------- /internal/prompt/textinput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/prompt/textinput.go -------------------------------------------------------------------------------- /internal/prompt/textinput_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/prompt/textinput_test.go -------------------------------------------------------------------------------- /internal/quick/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/quick/deploy.go -------------------------------------------------------------------------------- /internal/quick/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/quick/run.go -------------------------------------------------------------------------------- /internal/schedule/cancel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/schedule/cancel.go -------------------------------------------------------------------------------- /internal/schedule/contracts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/schedule/contracts.go -------------------------------------------------------------------------------- /internal/schedule/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/schedule/get.go -------------------------------------------------------------------------------- /internal/schedule/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/schedule/list.go -------------------------------------------------------------------------------- /internal/schedule/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/schedule/parse.go -------------------------------------------------------------------------------- /internal/schedule/schedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/schedule/schedule.go -------------------------------------------------------------------------------- /internal/schedule/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/schedule/setup.go -------------------------------------------------------------------------------- /internal/schedule/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/schedule/utils.go -------------------------------------------------------------------------------- /internal/scripts/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/scripts/execute.go -------------------------------------------------------------------------------- /internal/scripts/scripts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/scripts/scripts.go -------------------------------------------------------------------------------- /internal/scripts/scripts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/scripts/scripts_test.go -------------------------------------------------------------------------------- /internal/settings/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/settings/cmd.go -------------------------------------------------------------------------------- /internal/settings/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/settings/defaults.go -------------------------------------------------------------------------------- /internal/settings/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/settings/metrics.go -------------------------------------------------------------------------------- /internal/settings/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/settings/settings.go -------------------------------------------------------------------------------- /internal/signatures/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/signatures/generate.go -------------------------------------------------------------------------------- /internal/signatures/signatures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/signatures/signatures.go -------------------------------------------------------------------------------- /internal/signatures/signatures_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/signatures/signatures_test.go -------------------------------------------------------------------------------- /internal/signatures/verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/signatures/verify.go -------------------------------------------------------------------------------- /internal/snapshot/save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/snapshot/save.go -------------------------------------------------------------------------------- /internal/snapshot/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/snapshot/snapshot.go -------------------------------------------------------------------------------- /internal/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/status/status.go -------------------------------------------------------------------------------- /internal/super/dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/dev.go -------------------------------------------------------------------------------- /internal/super/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/files.go -------------------------------------------------------------------------------- /internal/super/files_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/files_test.go -------------------------------------------------------------------------------- /internal/super/flix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/flix.go -------------------------------------------------------------------------------- /internal/super/flix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/flix_test.go -------------------------------------------------------------------------------- /internal/super/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generate.go -------------------------------------------------------------------------------- /internal/super/generator/contract_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/contract_template.go -------------------------------------------------------------------------------- /internal/super/generator/file_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/file_template.go -------------------------------------------------------------------------------- /internal/super/generator/fixtures/README_no_deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/fixtures/README_no_deps.md -------------------------------------------------------------------------------- /internal/super/generator/fixtures/README_with_deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/fixtures/README_with_deps.md -------------------------------------------------------------------------------- /internal/super/generator/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/generator.go -------------------------------------------------------------------------------- /internal/super/generator/generator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/generator_test.go -------------------------------------------------------------------------------- /internal/super/generator/script_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/script_template.go -------------------------------------------------------------------------------- /internal/super/generator/templates/README.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/README.md.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/README_defi_actions.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/README_defi_actions.md.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/README_scheduled_transactions.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/README_scheduled_transactions.md.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/README_stablecoin.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/README_stablecoin.md.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/contract_counter.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/contract_counter.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/contract_counter_transaction_handler.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/contract_counter_transaction_handler.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/contract_counter_transaction_handler_test.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/contract_counter_transaction_handler_test.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/contract_example_connectors.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/contract_example_connectors.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/contract_example_connectors_test.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/contract_example_connectors_test.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/contract_init.cdc.tmpl: -------------------------------------------------------------------------------- 1 | access(all) 2 | contract {{ .Name }} { 3 | init() {} 4 | } -------------------------------------------------------------------------------- /internal/super/generator/templates/contract_init_test.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/contract_init_test.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/contract_piggybank.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/contract_piggybank.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/contract_piggybank_test.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/contract_piggybank_test.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/contract_usdfmock.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/contract_usdfmock.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/cursor/agent_rules.mdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/cursor/agent_rules.mdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/cursor/flip.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/cursor/flip.md.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/cursor/index.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/cursor/index.md.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/cursor/quick_checklist.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/cursor/quick_checklist.md.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/empty_test.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/empty_test.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/script_counter.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/script_counter.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/script_get_piggybank_balance.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/script_get_piggybank_balance.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/script_get_usdf_mock_balance.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/script_get_usdf_mock_balance.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/script_get_usdf_mock_info.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/script_get_usdf_mock_info.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/script_get_user_usdf_balance.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/script_get_user_usdf_balance.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/script_init.cdc.tmpl: -------------------------------------------------------------------------------- 1 | access(all) 2 | fun main() { 3 | // Script details here 4 | } -------------------------------------------------------------------------------- /internal/super/generator/templates/test_incrementfi_swap_on_fork.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/test_incrementfi_swap_on_fork.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/transaction_counter.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/transaction_counter.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/transaction_deposit_to_piggybank.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/transaction_deposit_to_piggybank.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/transaction_deposit_via_sink.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/transaction_deposit_via_sink.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/transaction_incrementfi_swap.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/transaction_incrementfi_swap.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/transaction_init.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/transaction_init.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/transaction_init_counter_transaction_handler.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/transaction_init_counter_transaction_handler.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/transaction_init_schedule_manager.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/transaction_init_schedule_manager.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/transaction_mint_usdf_mock.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/transaction_mint_usdf_mock.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/transaction_schedule_increment_counter.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/transaction_schedule_increment_counter.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/transaction_setup_usdf_mock_vault.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/transaction_setup_usdf_mock_vault.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/templates/transaction_withdraw_from_piggybank.cdc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/templates/transaction_withdraw_from_piggybank.cdc.tmpl -------------------------------------------------------------------------------- /internal/super/generator/test_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/test_template.go -------------------------------------------------------------------------------- /internal/super/generator/transaction_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/generator/transaction_template.go -------------------------------------------------------------------------------- /internal/super/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/init.go -------------------------------------------------------------------------------- /internal/super/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/init_test.go -------------------------------------------------------------------------------- /internal/super/init_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/init_utils.go -------------------------------------------------------------------------------- /internal/super/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/output.go -------------------------------------------------------------------------------- /internal/super/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/project.go -------------------------------------------------------------------------------- /internal/super/projecttypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/super/projecttypes.go -------------------------------------------------------------------------------- /internal/test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/test/test.go -------------------------------------------------------------------------------- /internal/test/test_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/test/test_test.go -------------------------------------------------------------------------------- /internal/tools/flowser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/tools/flowser.go -------------------------------------------------------------------------------- /internal/tools/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/tools/wallet.go -------------------------------------------------------------------------------- /internal/transactions/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/transactions/build.go -------------------------------------------------------------------------------- /internal/transactions/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/transactions/decode.go -------------------------------------------------------------------------------- /internal/transactions/get-system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/transactions/get-system.go -------------------------------------------------------------------------------- /internal/transactions/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/transactions/get.go -------------------------------------------------------------------------------- /internal/transactions/send-signed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/transactions/send-signed.go -------------------------------------------------------------------------------- /internal/transactions/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/transactions/send.go -------------------------------------------------------------------------------- /internal/transactions/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/transactions/sign.go -------------------------------------------------------------------------------- /internal/transactions/transactions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/transactions/transactions.go -------------------------------------------------------------------------------- /internal/transactions/transactions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/transactions/transactions_test.go -------------------------------------------------------------------------------- /internal/util/accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/util/accounts.go -------------------------------------------------------------------------------- /internal/util/accounts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/util/accounts_test.go -------------------------------------------------------------------------------- /internal/util/emoji.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/util/emoji.go -------------------------------------------------------------------------------- /internal/util/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/util/files.go -------------------------------------------------------------------------------- /internal/util/stdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/util/stdlib.go -------------------------------------------------------------------------------- /internal/util/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/util/test.go -------------------------------------------------------------------------------- /internal/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/util/util.go -------------------------------------------------------------------------------- /internal/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/util/util_test.go -------------------------------------------------------------------------------- /internal/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/internal/version/version.go -------------------------------------------------------------------------------- /testing/better/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/flow-cli/HEAD/testing/better/README.md -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | v1.18.0 2 | --------------------------------------------------------------------------------