diff --git a/docs/cadence_migration_guide/staging-guide.mdx b/docs/cadence_migration_guide/staging-guide.mdx index 853cb96..ab58446 100644 --- a/docs/cadence_migration_guide/staging-guide.mdx +++ b/docs/cadence_migration_guide/staging-guide.mdx @@ -17,10 +17,20 @@ This guide aims to simplify the migration process to Cadence 1.0, making it acce ## Staging a contract + + In order to migrate your updated smart contract to Cadence 1.0, it's crucial to stage it on the Testnet network. This preliminary step not only verifies the contract's compatibility and syntactical correctness but also ensures a seamless transition to the new environment. ```bash -flow migrate stage-contract HelloWorld --network=testnet +flow-c1 migrate stage-contract HelloWorld --network=testnet ``` Ensure that HelloWorld accurately reflects the name of your contract as specified in your flow.json configuration file. @@ -30,7 +40,7 @@ Ensure that HelloWorld accurately reflects the name of your contract as specifie To confirm that your contract is ready for migration and has been successfully staged, execute the following command: ```bash -flow migrate is-staged HelloWorld --network=testnet +flow-c1 migrate is-staged HelloWorld --network=testnet ``` A response of true indicates that your contract has been approved by the Flow Blockchain Testnet network and is ready for the migration process.